|
|
@@ -169,9 +169,9 @@
|
|
|
<template v-slot:angle="{ row }">
|
|
|
<DictSelection dictName="角度" clearable v-model="row.angle">
|
|
|
</DictSelection>
|
|
|
- </template>
|
|
|
- </ele-pro-table>
|
|
|
- </el-col>
|
|
|
+ </template>
|
|
|
+ </ele-pro-table>
|
|
|
+ </el-col>
|
|
|
</el-row>
|
|
|
|
|
|
<div slot="footer" class="footer">
|
|
|
@@ -228,7 +228,7 @@
|
|
|
},
|
|
|
{
|
|
|
label: `${this.catogaryName}分类`,
|
|
|
- prop: 'categoryLevelGroupName'
|
|
|
+ prop: 'categoryLevelPath'
|
|
|
},
|
|
|
{
|
|
|
label: `${this.catogaryName}编码`,
|
|
|
@@ -252,7 +252,7 @@
|
|
|
},
|
|
|
{
|
|
|
label: `${this.catogaryName}分类`,
|
|
|
- prop: 'categoryLevelGroupName',
|
|
|
+ prop: 'categoryLevelPath',
|
|
|
width: 110
|
|
|
},
|
|
|
{
|
|
|
@@ -274,7 +274,7 @@
|
|
|
{
|
|
|
label: '槽数',
|
|
|
prop: 'slotNum',
|
|
|
- formatter:(_row, _column, cellValue) => {
|
|
|
+ formatter: (_row, _column, cellValue) => {
|
|
|
return _row.extendInfo.slotNum;
|
|
|
}
|
|
|
},
|
|
|
@@ -367,9 +367,7 @@
|
|
|
this.datasourceShow = this.datasource.filter((item) => {
|
|
|
return (
|
|
|
(!this.where.categoryId ||
|
|
|
- item.parentId.includes(
|
|
|
- this.where.categoryId
|
|
|
- )) &&
|
|
|
+ item.parentId.includes(this.where.categoryId)) &&
|
|
|
(!this.where.code || item.code.includes(this.where.code)) &&
|
|
|
(!this.where.name || item.name.includes(this.where.name)) &&
|
|
|
(!this.where.modelType ||
|
|
|
@@ -381,9 +379,7 @@
|
|
|
this.datasourceRightShow = this.datasourceRight.filter((item) => {
|
|
|
return (
|
|
|
(!this.whereRight.categoryId ||
|
|
|
- item.parentId.includes(
|
|
|
- this.whereRight.categoryId
|
|
|
- )) &&
|
|
|
+ item.parentId.includes(this.whereRight.categoryId)) &&
|
|
|
(!this.whereRight.code ||
|
|
|
item.code.includes(this.whereRight.code)) &&
|
|
|
(!this.whereRight.name ||
|