修改秒杀拼团页面bug

This commit is contained in:
xuwenbo
2020-09-08 22:58:34 +08:00
parent 908143320e
commit 85bc5d7c21
2 changed files with 6 additions and 10 deletions

View File

@ -384,7 +384,6 @@ export default {
handler(val,oldVal){
this.getInfoChooseGood (val.cform.id)
},
deep:true//对象内部的属性监听,也叫深度监听
},
},
mounted () {
@ -419,7 +418,7 @@ export default {
},
// 立即生成
generate (data) {
isFormatAttrForActivity(data===null?this.formValidate.id:data, { attrs: this.attrs }).then(res => {
isFormatAttrForActivity(data===null?this.formValidate.productId:data, { attrs: this.attrs }).then(res => {
this.manyFormValidate = res.value;
let headerdel = {
title: '操作',
@ -506,13 +505,10 @@ export default {
getInfo(id).then(async res => {
let data = res.productInfo;
if(data){
let cate_id = parseInt(data.cate_id) || 0;
that.attrs = data.items || [];
that.formValidate = data;
that.id = that.combinationId
that.formValidate.id = 0;
that.formValidate.productId = data.id
that.formValidate.cate_id = cate_id;
that.formValidate.id = 0;
that.formValidate.productId = id
that.formValidate.title = data.store_name
that.formValidate.info = data.store_info
that.formValidate.unitName = data.unit_name

View File

@ -385,7 +385,6 @@ export default {
handler(val,oldVal){
this.getInfoChooseGood (val.cform.id)
},
deep:true//对象内部的属性监听,也叫深度监听
},
},
mounted () {
@ -423,7 +422,7 @@ export default {
},
// 立即生成
generate (data) {
isFormatAttrForActivity(data===null?this.formValidate.id:data, { attrs: this.attrs }).then(res => {
isFormatAttrForActivity(data===null?this.formValidate.productId:data, { attrs: this.attrs }).then(res => {
this.manyFormValidate = res.value;
let headerdel = {
title: '操作',
@ -514,7 +513,8 @@ export default {
let cate_id = parseInt(data.cate_id) || 0;
that.attrs = data.items || [];
that.formValidate = data;
that.formValidate.id = 0;
that.formValidate.id = 0;
that.formValidate.productId = id
that.formValidate.productId = data.id
that.formValidate.cate_id = cate_id;
that.oneFormValidate = [data.attr];