From 186b3dfe41dc720aeaeab41ddca66e2b44c87795 Mon Sep 17 00:00:00 2001 From: "DESKTOP-GMUNQ1B\\k" <1154079537@qq.com> Date: Fri, 15 Mar 2024 14:39:52 +0800 Subject: [PATCH] 1 --- pages/store/settled/index.vue | 20 ++++++++++---------- pages/users/invite_code/index.vue | 16 +++++++++++++--- 2 files changed, 23 insertions(+), 13 deletions(-) diff --git a/pages/store/settled/index.vue b/pages/store/settled/index.vue index 00bf8b3..8d5ca08 100644 --- a/pages/store/settled/index.vue +++ b/pages/store/settled/index.vue @@ -684,7 +684,7 @@ this.city_id = resData.city_id; this.area_id = resData.area_id this.street_id = resData.street_id - this.mer_storeType = resData.mer_storeType + // this.mer_storeType = resData.mer_storeType this.village_id = resData.village_id; const bankInfo = resData.financial_bank ? JSON.parse(resData.financial_bank) : ''; @@ -785,16 +785,16 @@ // 获取店铺类型 getStoreType: function() { - getStoreTypeApi() - .then(res => { - - this.storeTypeArr = res.data - }) - .catch(res => { - this.$util.Tips({ - title: res - }); + getStoreTypeApi().then(res => { + this.storeTypeArr = res.data + // 初始化默认 + this.merchantData.mer_type = this.storeTypeArr[0].mer_type_id; + this.mer_storeType = this.storeTypeArr[0].type_name; + }).catch(res => { + this.$util.Tips({ + title: res }); + }); }, // 图片预览 // 获得相册 idx diff --git a/pages/users/invite_code/index.vue b/pages/users/invite_code/index.vue index 4e78644..f0d7764 100644 --- a/pages/users/invite_code/index.vue +++ b/pages/users/invite_code/index.vue @@ -24,7 +24,7 @@ - 序号 + 序号 用户名称 用户ID 状态 @@ -36,7 +36,7 @@ - {{index+1}} + {{index+1}} {{item.real_name || '-'}} {{item.uid}} {{item.status == 0?'未入驻':'已入驻'}} @@ -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: '暂未开通邀请码,需开通邀请码请联系管理员',