🐛 修复字典级联查询的bug

dev
smallchill 6 years ago
parent 4b807e1dda
commit dc9ffffc1e
  1. 4
      src/const/system/dict.js
  2. 4
      src/const/system/dictbiz.js
  3. 1
      src/views/system/dict.vue
  4. 1
      src/views/system/dictbiz.vue

@ -3,7 +3,7 @@ export const optionParent = {
calcHeight: 95,
tip: false,
searchShow: true,
searchMenuSpan: 8,
searchMenuSpan: 10,
tree: true,
border: true,
index: true,
@ -93,7 +93,7 @@ export const optionChild = {
calcHeight: 95,
tip: false,
searchShow: true,
searchMenuSpan: 6,
searchMenuSpan: 10,
tree: true,
border: true,
index: true,

@ -3,7 +3,7 @@ export const optionParent = {
calcHeight: 95,
tip: false,
searchShow: true,
searchMenuSpan: 8,
searchMenuSpan: 10,
tree: true,
border: true,
index: true,
@ -93,7 +93,7 @@ export const optionChild = {
calcHeight: 95,
tip: false,
searchShow: true,
searchMenuSpan: 6,
searchMenuSpan: 10,
tree: true,
border: true,
index: true,

@ -211,6 +211,7 @@
});
},
handleRowClick(row) {
this.query = {};
this.parentId = row.id;
this.dictValue = row.dictValue;
this.$refs.crudChild.value.code = row.code;

@ -211,6 +211,7 @@
});
},
handleRowClick(row) {
this.query = {};
this.parentId = row.id;
this.dictValue = row.dictValue;
this.$refs.crudChild.value.code = row.code;

Loading…
Cancel
Save