bug: 标准入库流程--圈住的字段应该是支持多选的

This commit is contained in:
fanlin
2021-07-27 10:41:37 +08:00
parent c796c9f67c
commit 00a374ff9d
2 changed files with 17 additions and 3 deletions
@@ -6,6 +6,7 @@
:size="width"
:append-to-body=true
:before-close="cancelUserInfo"
:show-checkbox="showCheckBox"
>
<el-tree class="common-tree" :style="style" ref="tree" :data="data" :props="defaultProps"
:load="loadNode"
@@ -111,6 +112,12 @@
return '';
}
},
showCheckBox:{
type: Boolean,
default () {
return true;
}
},
// 配置是否展开
modalShowFlag: {
type: Boolean,
@@ -511,9 +511,11 @@
width = "800"
:key="key1"
:lazy=true
:multiple=false
:multiple=true
:check-Strictly="false"
:modalShowFlag="modalShowFlag2"
:drawerTitle="drawerTitle"
:show-checkBox="showCheckBox"
:url="url"
:urlChild="urlChild"
:defaultProps="defaultCodeProps" :checkedKeys="defaultCheckedKeys1"
@@ -525,9 +527,11 @@
width = "800"
:key="key2"
:lazy=true
:multiple=false
:multiple=true
:check-Strictly="false"
:modalShowFlag="modalShowFlag3"
:drawerTitle="drawerTitle"
:show-checkBox="showCheckBox"
:url="url"
:urlChild="urlChild"
:defaultProps="defaultCodeProps" :checkedKeys="defaultCheckedKeys2"
@@ -539,10 +543,12 @@
width = "800"
:key="key3"
:lazy=true
:multiple=false
:multiple=true
:check-Strictly="false"
:modalShowFlag="modalShowFlag4"
:drawerTitle="drawerTitle"
:url="url"
:show-checkBox="showCheckBox"
:urlChild="urlChild"
:defaultProps="defaultModelProps" :checkedKeys="defaultCheckedKeys3"
:nodeKey="nodeKeyModel" @popoverHide="popoverHideModel"></tree-select-new>
@@ -1235,6 +1241,7 @@
url:'',
urlChild:'',
drawerTitle: '', //drawer标题
showCheckBox: true, // 树形控件是否展示多选框
nodeKey: 'id',
defaultCheckedKeys: [],
nodeKeyCode: 'code',