|
|
@@ -386,10 +386,12 @@ export default {
|
|
|
chainCode: '',
|
|
|
jxsList: [],
|
|
|
userSummaryId: null,
|
|
|
+ qrUuid: null,
|
|
|
};
|
|
|
},
|
|
|
activated() {
|
|
|
this.userSummaryId = null;
|
|
|
+ this.qrUuid = null;
|
|
|
},
|
|
|
created() {
|
|
|
this.activaFlag = true;
|
|
|
@@ -503,11 +505,13 @@ export default {
|
|
|
customItemList: this.collectionItemList, //List<Object> 答案列表
|
|
|
...ActivityQRCodeData, //任务名称、活动日期、签到时间
|
|
|
getQrCode: callback ? true : false, //是否需要反馈二维码(是:任务名称、活动日期、签到时间必填)
|
|
|
+ qrUuid: this.qrUuid || null,
|
|
|
})
|
|
|
.then((res) => {
|
|
|
if (res.code == 200) {
|
|
|
if (callback) {
|
|
|
this.userSummaryId = res.data.userSummaryId ? res.data.userSummaryId : null;
|
|
|
+ this.qrUuid = res.data.qrUuid ? res.data.qrUuid : null;
|
|
|
// 回传二维码
|
|
|
callback(res);
|
|
|
} else {
|
|
|
@@ -554,6 +558,7 @@ export default {
|
|
|
summaryId: this.$route.query.summaryId, //Long 主管任务id
|
|
|
customItemList: this.collectionItemList, //List<Object> 答案列表
|
|
|
...ActivityQRCodeData,
|
|
|
+ qrUuid: this.qrUuid || null,
|
|
|
})
|
|
|
.then((res) => {
|
|
|
if (res.code == 200) {
|