feat: 页面适配审核需求

master
xjs 2025-04-25 11:01:35 +08:00
parent 1171acbd27
commit 499c1360ba
5 changed files with 14 additions and 10 deletions

View File

@ -50,8 +50,6 @@
<script lang="ts" setup>
import { useLogin } from '@/login-sub/hooks/useUserInfo'
import Overlay from './Overlay.vue'
import RadioGroup from './radio-group/RadioGroup.vue'
import Radio from './radio-group/Radio.vue'
import Checkbox from './check-group/Checkbox.vue'
import CheckboxGroup from './check-group/CheckboxGroup.vue'

View File

@ -35,7 +35,7 @@ const userStore = useUserStore()
const list = ref([])
onLoad(() => {
onShow(() => {
getMyBusReports({ CustomId: userStore.userInfo?.estimatedAchievement.wxId }).then((res) => {
if (res.code === 200) {
list.value = (res.result as { customReports: any[] }).customReports

View File

@ -18,7 +18,7 @@
<text>关于我们</text>
<view class="i-carbon-chevron-down rotate-270 text-[#BFBFBF]"></view>
</view>
<view class="flex items-center justify-between mx-[32rpx] py-[28rpx]">
<view class="flex items-center justify-between mx-[32rpx] py-[28rpx]" @click.stop="toPrivacy">
<text>用户隐私协议</text>
<view class="i-carbon-chevron-down rotate-270 text-[#BFBFBF]"></view>
</view>
@ -45,6 +45,12 @@ const toAbout = () => {
url: '/pages-sub/ucenter/setting/about',
})
}
const toPrivacy = () => {
uni.navigateTo({
url: '/login-sub/privacyPolicy',
})
}
</script>
<style scoped lang="scss">

View File

@ -69,18 +69,18 @@
</template>
<script setup lang="ts">
import zTabs from '@/pages-sub/uni_modules/z-tabs/components/z-tabs/z-tabs.vue'
// import zTabs from '@/pages-sub/uni_modules/z-tabs/components/z-tabs/z-tabs.vue'
import { addUnCollection, deleteUnCollection, getUnCollectionList } from '@/service/index/api'
import { useUserStore } from '@/store'
const userStore = useUserStore()
const tabsList = ['院校']
// const tabsList = ['']
const currentTab = ref(0)
const handleTabChange = (index: number) => {
currentTab.value = index
}
// const handleTabChange = (index: number) => {
// currentTab.value = index
// }
const starList = ref([])
const paging = ref(null)

View File

@ -56,7 +56,7 @@ const userStore = useUserStore()
const wishList = ref([])
onLoad(() => {
onShow(() => {
getWishList({ locationCode: userStore.userInfo.estimatedAchievement.provinceCode }).then(
(res) => {
if (res.code === 200) {