实名认证添加状态过程

This commit is contained in:
cbb
2026-01-05 17:50:18 +08:00
parent 42eba945e8
commit 24731d1949
10 changed files with 489 additions and 12 deletions

View File

@@ -2,6 +2,7 @@
import { useAuthUser } from '@/composables/useAuthUser'
import { onLoad } from '@dcloudio/uni-app'
import { navigateTo } from '@/utils/router'
import { useUI } from '@/utils/use-ui'
const bottomList = [
{
@@ -36,6 +37,8 @@
url: '/pages/my-index/set-up/index'
}
]
const { showDialog } = useUI()
const { userInfo } = useAuthUser()
onLoad(() => {
@@ -77,8 +80,16 @@
<text>{{ userInfo?.totalPoints }}</text>
</view>
<view class="right-btn">
<button>充值</button>
<button>提现</button>
<button
@click="
showDialog('提示', '联系客服或者联系上级分享人', false)
"
>
充值
</button>
<button @click="navigateTo('/pages/my-index/withdraw')">
提现
</button>
</view>
</view>
<!-- 入口列表 -->