完善功能

This commit is contained in:
wangxiaowei
2026-05-04 16:54:47 +08:00
parent dcbba2c79d
commit 97759cdbad
9 changed files with 390 additions and 143 deletions

View File

@ -202,7 +202,7 @@
</view>
<!-- 茶艺师订单 -->
<view class="bg-white rounded-16rpx mx-30rpx mt-28rpx pb-34rpx">
<view class="bg-white rounded-16rpx mx-30rpx mt-28rpx pb-34rpx" v-if="setting.status == 1">
<view class="px-30rpx pt-30rpx py-24rpx">茶艺师订单</view>
<view class="flex relative px-30rpx">
<view v-for="(item, index) in teaReserveMenuList" :key="index">
@ -270,6 +270,7 @@
import { useUserStore } from '@/store'
import { getUserInfo, getMyCoupon, claimMyCoupon, getUserMember, getConfig } from '@/api/user'
import type { IUserResult } from '@/api/types/user'
import { getSetting } from '@/api/tea-specialist'
const OSS = inject('OSS')
const navbarHeight = inject('navbarHeight')
@ -337,6 +338,9 @@
// 过期时间
const expireTime = ref<string>('')
// 获取设置
const setting = ref<any>({})
onShow(() => {
const userStore = useUserStore()
isLogin.value = userStore.isLoggedIn
@ -402,6 +406,10 @@
sheetMenu.value = [{ name: serviceMobile }]
}
})
getSetting().then(res => {
setting.value = res
})
},
/**