|
@@ -30,6 +30,7 @@
|
|
|
value: 'ClassifyId',
|
|
|
children: 'Children',
|
|
|
emitPath: false,
|
|
|
+ checkStrictly: true
|
|
|
}"
|
|
|
clearable
|
|
|
placeholder="请选择所属目录"
|
|
@@ -115,10 +116,20 @@ export default {
|
|
|
getMenu() {
|
|
|
dataBaseInterface.menuListV3().then((res) => {
|
|
|
if (res.Ret !== 200) return
|
|
|
-
|
|
|
+ this.filterNodes(res.Data.AllNodes||[]);
|
|
|
this.classifyOption = res.Data.AllNodes || [];
|
|
|
});
|
|
|
},
|
|
|
+
|
|
|
+ filterNodes(arr) {
|
|
|
+ arr.length &&
|
|
|
+ arr.forEach((item) => {
|
|
|
+ item.Children.length && this.filterNodes(item.Children);
|
|
|
+ if (!item.Children.length) {
|
|
|
+ delete item.Children;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
|
|
|
/* 改变公式 */
|
|
|
changeFormat(type) {
|