✨ 个人中心:引导绑定逻辑
parent
cbaf3a2512
commit
d4bbe55126
|
@ -23,18 +23,17 @@
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- TODO @芋艿:用户接入 -->
|
|
||||||
<!-- 提示绑定手机号 先隐藏 yudao 需要再修改 -->
|
<!-- 提示绑定手机号 先隐藏 yudao 需要再修改 -->
|
||||||
<!-- <view
|
<view
|
||||||
class="bind-mobile-box ss-flex ss-row-between ss-col-center"
|
class="bind-mobile-box ss-flex ss-row-between ss-col-center"
|
||||||
v-if="isLogin && !userInfo.verification?.mobile"
|
v-if="isLogin && !userInfo.mobile"
|
||||||
>
|
>
|
||||||
<view class="ss-flex">
|
<view class="ss-flex">
|
||||||
<text class="cicon-mobile-o"></text>
|
<text class="cicon-mobile-o" />
|
||||||
<view class="mobile-title ss-m-l-20"> 点击绑定手机号确保账户安全 </view>
|
<view class="mobile-title ss-m-l-20"> 点击绑定手机号确保账户安全 </view>
|
||||||
</view>
|
</view>
|
||||||
<button class="ss-reset-button bind-btn" @tap="onBind">去绑定</button>
|
<button class="ss-reset-button bind-btn" @tap="onBind">去绑定</button>
|
||||||
</view> -->
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -27,8 +27,6 @@ const defaultUserInfo = {
|
||||||
gender: 0, // 性别
|
gender: 0, // 性别
|
||||||
mobile: '', // 手机号
|
mobile: '', // 手机号
|
||||||
point: 0, // 积分
|
point: 0, // 积分
|
||||||
money: 0, // 余额
|
|
||||||
verification: {}, // 认证字段
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// 默认钱包信息
|
// 默认钱包信息
|
||||||
|
@ -103,7 +101,7 @@ const user = defineStore({
|
||||||
},
|
},
|
||||||
|
|
||||||
// 设置 token
|
// 设置 token
|
||||||
// TODO 芋艿:整理下;
|
// TODO 芋艿:后续要支持访问令牌的刷新!!!
|
||||||
setToken(token = '') {
|
setToken(token = '') {
|
||||||
if (token === '') {
|
if (token === '') {
|
||||||
this.isLogin = false;
|
this.isLogin = false;
|
||||||
|
@ -159,9 +157,9 @@ const user = defineStore({
|
||||||
$share.getShareInfo();
|
$share.getShareInfo();
|
||||||
|
|
||||||
// 提醒绑定手机号
|
// 提醒绑定手机号
|
||||||
// if (app().platform.bind_mobile && !this.userInfo.verification?.mobile) {
|
if (app().platform.bind_mobile && !this.userInfo.mobile) {
|
||||||
// showAuthModal('changeMobile');
|
showAuthModal('changeMobile');
|
||||||
// }
|
}
|
||||||
|
|
||||||
// 添加分享记录
|
// 添加分享记录
|
||||||
// TODO 芋艿:整理下;
|
// TODO 芋艿:整理下;
|
||||||
|
|
Loading…
Reference in New Issue