+
+
@@ -171,7 +173,9 @@
+
+
@@ -202,6 +206,7 @@
+
@@ -212,6 +217,7 @@
+
@@ -486,6 +492,7 @@ export default {
watch: {
categoryOptionValue: {
handler(value){
+ console.log(value)
if (value !== null && value !== undefined && value.length > 0){
this.form.mianType = value[0];
this.form.parentType = value[1];
@@ -723,6 +730,11 @@ export default {
const id = row.id || this.ids
getInfo(id).then(response => {
this.form = response.data;
+ this.categoryOptionValue=[
+ this.form.mianType,
+ this.form.parent,
+ this.form.type
+ ]
this.open = true;
this.title = "修改商品信息";
});