diff --git a/common/http.interceptor.js b/common/http.interceptor.js index fd300f9..60214bd 100644 --- a/common/http.interceptor.js +++ b/common/http.interceptor.js @@ -20,7 +20,7 @@ const install = (Vue, vm) => { // }, // }); Vue.prototype.$u.http.setConfig({ - baseUrl: 'http://192.168.2.157:3302', + baseUrl: 'http://192.168.2.223:3302', // baseUrl: 'https://kang.chuangtewl.com/prod-api', loadingText: '努力加载中~', loadingTime: 800, diff --git a/page_user/orderdetail.vue b/page_user/orderdetail.vue index 95cef00..a34f9c6 100644 --- a/page_user/orderdetail.vue +++ b/page_user/orderdetail.vue @@ -121,9 +121,11 @@ userflag:false, maskflag:false, inptext:'', + userid:'' } }, onLoad(option) { + this.userid = uni.getStorageSync('userType').userId this.billId = option.billId this.getxq() }, @@ -148,7 +150,7 @@ this.$u.get(`/app/bill/arrival/${this.billId}`).then(res => { if(res.code == 200){ this.obj = res.data - if(res.data.status == 2){ + if(this.userid == res.data.agentId && res.data.status == 2){ this.userflag = true }else{ this.userflag = false diff --git a/pages/index/index.vue b/pages/index/index.vue index 8c3112d..638aaaa 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -297,7 +297,7 @@ storeId: this.storeId, userId: this.userId } - this.$u.put(`/app/shareCode/use`, data).then((res) => { + this.$u.put(`/app/shareCode/use`, data).then((res) => { if (res.code == 200) { uni.showToast({ title: res.msg,