|
@@ -269,15 +269,18 @@ export default {
|
|
|
}).then(res => {
|
|
|
if (res.code === 0) {
|
|
|
this.qr_code = res.data.qrcode_url
|
|
|
+ if(res.data.verify_note) {
|
|
|
+ this.verify_note.company_name = res.data.verify_note.company_name
|
|
|
+ this.verify_note.verify_name = res.data.verify_note.verify_name
|
|
|
+ this.verify_note.verify_phone = res.data.verify_note.verify_phone
|
|
|
+ }
|
|
|
this.current_gift.form_id = res.data.id
|
|
|
//展示二维码
|
|
|
- this.show_qr = true
|
|
|
- this.checkGiftState(() => {
|
|
|
- if (this.current_gift.route_count === 9) {
|
|
|
- //轮询确认核销后,展示抽奖环节
|
|
|
- this.pop_up = true
|
|
|
- }
|
|
|
- })
|
|
|
+ if (this.current_gift.route_count === 9) {
|
|
|
+ //轮询确认核销后,展示抽奖环节
|
|
|
+ this.pop_up = true
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
})
|
|
|
},
|
|
@@ -360,8 +363,11 @@ export default {
|
|
|
icon: 'none'
|
|
|
})
|
|
|
this.pop_up = false
|
|
|
- this.getGiftListEvent()
|
|
|
- this.getCheckinCount()
|
|
|
+ this.show_qr = true
|
|
|
+ this.checkGiftState(() => {
|
|
|
+ this.getGiftListEvent()
|
|
|
+ this.getCheckinCount()
|
|
|
+ })
|
|
|
})
|
|
|
|
|
|
}
|