63 lines
1.6 KiB
Vue
63 lines
1.6 KiB
Vue
<script setup>
|
|
import PrivacyModal from '@/components/PrivacyModel.vue'
|
|
|
|
const tabbar = ref('index')
|
|
|
|
const menu = reactive([{ title: '首页', icon: 'home', name: 'index' }, { title: 'AI律师', icon: 'chat', name: 'ai' }, { title: '我的', icon: 'user', name: 'me' }])
|
|
|
|
function tabChange({ value }) {
|
|
uni.switchTab({
|
|
url: `/pages/${value}`,
|
|
})
|
|
}
|
|
onShow(() => {
|
|
const currentPage = getCurrentPages()[getCurrentPages().length - 1].route
|
|
const pageName = currentPage.split('/').pop()
|
|
tabbar.value = pageName
|
|
})
|
|
|
|
onMounted(() => {
|
|
uni.hideTabBar()
|
|
|
|
const currentPage = getCurrentPages()[getCurrentPages().length - 1].route
|
|
const pageName = currentPage.split('/').pop()
|
|
tabbar.value = pageName
|
|
})
|
|
|
|
function toComplaint() {
|
|
uni.navigateTo({
|
|
url: '/pages/complaint',
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<script>
|
|
export default {
|
|
options: {
|
|
styleIsolation: 'shared',
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<slot />
|
|
<view>
|
|
<wd-tabbar v-model="tabbar" custom-class="qnc-tabbar" shape="round" safe-area-inset-bottom fixed @change="tabChange">
|
|
<wd-tabbar-item v-for="(item, index) in menu" :key="index" :name="item.name" :title="item.title" :icon="item.icon" />
|
|
</wd-tabbar>
|
|
</view>
|
|
<view class="fixed bottom-24 right-4 z-1000 flex items-center rounded-3xl from-red-500 to-red-400 bg-gradient-to-b px-2 py-1 text-center text-white shadow-2xl">
|
|
<wd-icon name="warning" class="mr-1" size="18px" />
|
|
<view class="text-xs" @click="toComplaint">
|
|
投诉
|
|
</view>
|
|
</view>
|
|
<PrivacyModal />
|
|
</template>
|
|
|
|
<style scoped>
|
|
:deep(.qnc-tabbar) {
|
|
bottom: 16px !important;
|
|
}
|
|
</style>
|