diff --git a/manager/src/views/goods/goods-manage/spec.vue b/manager/src/views/goods/goods-manage/spec.vue index a3719fb6..73ba2c8b 100644 --- a/manager/src/views/goods/goods-manage/spec.vue +++ b/manager/src/views/goods/goods-manage/spec.vue @@ -29,7 +29,7 @@ @@ -149,6 +149,9 @@ export default { }; }, methods: { + handleCreate2 (v) { + console.log(v); + }, //初始化,获取数据 init () { this.getDataList(); @@ -255,7 +258,6 @@ export default { }, //弹出编辑框 edit (v) { - console.log(v); this.modalType = 1; this.modalTitle = "编辑"; // 转换null为"" @@ -265,19 +267,17 @@ export default { } } let localVal = v.specValue; - console.log(localVal.split(",")) this.form.specName = v.specName; this.form.id = v.id; - this.$nextTick(() => { - this.$set(this.form, 'specValue', localVal.split(",")) - }) - + // this.$nextTick(() => { + // this.$set(this.form, 'specValue', localVal.split(",")) + // }) + this.form.specValue = localVal.split(",") if (localVal && localVal.indexOf("," > 0)) { this.specValue = this.form.specValue; } else { this.specValue = []; } - console.log("form.specValue", this.form); this.modalVisible = true; }, // 删除规格