|
@@ -365,6 +365,7 @@ export default {
|
|
|
this.activeItems = res.data.items
|
|
|
getActiveDetail({ id: res.data.promotionQuestionnaireId }).then(res => {
|
|
|
this.activeDetailData = res.data
|
|
|
+ console.log(this.activeDetailData)
|
|
|
this.formData.activeDate = [res.data.startTime, res.data.endTime]
|
|
|
})
|
|
|
// this.getActiveDetail(res.data.promotionQuestionnaireId,res.data.items)
|
|
@@ -377,6 +378,8 @@ export default {
|
|
|
},
|
|
|
getActiveDetail(id, items) {
|
|
|
getActiveDetail({ id }).then(res => {
|
|
|
+ this.activeDetailData = res.data
|
|
|
+ console.log(this.activeDetailData)
|
|
|
this.formData.activeDate = [res.data.startTime, res.data.endTime]
|
|
|
this.websitList = res.data.promotionQuestionnaireQrcodes
|
|
|
res.data.promotionQuestionnaireItems.forEach((item, index) => {
|