This commit is contained in:
wpf 2024-03-15 14:46:39 +08:00
commit 0470d887d0

View File

@ -24,7 +24,7 @@
<view class="table" v-if="list.length > 0">
<view class="table-title">
<view class="table-title-cell" style="width: 100rpx;">序号</view>
<view class="table-title-cell" style="width: 100rpx;">序号</view>
<view class="table-title-cell">用户名称</view>
<view class="table-title-cell">用户ID</view>
<view class="table-title-cell">状态</view>
@ -36,7 +36,7 @@
<view class="scrollView-wrap">
<block v-for="(item,index) in list" :key="index">
<view class="table-con">
<view class="table-con-cell" style="width: 100rpx;">{{index+1}}</view>
<view class="table-con-cell" style="width: 100rpx;">{{index+1}}</view>
<view class="table-con-cell">{{item.real_name || '-'}}</view>
<view class="table-con-cell">{{item.uid}}</view>
<view class="table-con-cell">{{item.status == 0?'未入驻':'已入驻'}}</view>
@ -99,7 +99,17 @@
//
getQrcode() {
qrcode().then(res => {
this.qrcodeUrl = res.data.url;
if (res.status == 200) {
this.qrcodeUrl = res.data.url;
} else {
uni.showModal({
content: '暂未开通邀请码,需开通邀请码请联系管理员',
showCancel: false,
success: (res) => {
uni.navigateBack();
}
})
}
}).catch(err => {
uni.showModal({
content: '暂未开通邀请码,需开通邀请码请联系管理员',