优化业务字典页面展现

dev
smallchill 6 years ago
parent 0d6031d9c0
commit be07b52975
  1. 4
      src/views/system/dictbiz.vue

@ -52,7 +52,7 @@
<basic-container>
<el-card class="box-card">
<div slot="header" class="clearfix">
<span>业务字典详情</span>
<span>[{{dictValue}}] 业务字典详情</span>
</div>
<div class="clearfix">
<avue-crud
@ -114,6 +114,7 @@
export default {
data() {
return {
dictValue: '暂无',
parentId: -1,
formParent: {},
formChild: {},
@ -212,6 +213,7 @@
},
handleRowClick(row) {
this.parentId = row.id;
this.dictValue = row.dictValue;
this.$refs.crudChild.value.code = row.code;
this.$refs.crudChild.value.parentId = row.id;
this.$refs.crudChild.option.column.filter(item => {

Loading…
Cancel
Save