|
@@ -667,7 +667,8 @@ export default {
|
|
|
this.getList()
|
|
|
},
|
|
|
|
|
|
- handleGoDetail(id) {
|
|
|
+ async handleGoDetail(id) {
|
|
|
+ await this.checkUserIsBind()
|
|
|
uni.navigateTo({
|
|
|
url: '/pages-activity/detail?id=' + id
|
|
|
});
|
|
@@ -694,7 +695,8 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
|
|
|
- handleRemind(e,index){
|
|
|
+ async handleRemind(e,index){
|
|
|
+ await this.checkUserIsBind()
|
|
|
if(e.hasRemind===0){
|
|
|
this.handleAddRemind(e,index)
|
|
|
}else{
|
|
@@ -770,7 +772,8 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
|
|
|
- handleRegister(e,index){
|
|
|
+ async handleRegister(e,index){
|
|
|
+ await this.checkUserIsBind()
|
|
|
if(e.registerState===0){
|
|
|
this.handleAddRegister(e,index)
|
|
|
}else{
|
|
@@ -850,6 +853,7 @@ export default {
|
|
|
|
|
|
// 点击立即申请
|
|
|
async handleApply(){
|
|
|
+ await this.checkUserIsBind()
|
|
|
if(this.pupData.customer_info.has_apply){//已经申请过
|
|
|
this.pupData.content=`<p>您已提交过申请,请耐心等待</p>`
|
|
|
this.pupData.type=''
|