|
@@ -196,7 +196,7 @@
|
|
|
switch (this.selectedDime) {
|
|
switch (this.selectedDime) {
|
|
|
// 物品维度
|
|
// 物品维度
|
|
|
case '1':
|
|
case '1':
|
|
|
- let arr = [
|
|
|
|
|
|
|
+ arr = [
|
|
|
{
|
|
{
|
|
|
columnKey: 'index',
|
|
columnKey: 'index',
|
|
|
type: 'index',
|
|
type: 'index',
|
|
@@ -286,12 +286,6 @@
|
|
|
showOverflowTooltip: true,
|
|
showOverflowTooltip: true,
|
|
|
width: 100
|
|
width: 100
|
|
|
},
|
|
},
|
|
|
- {
|
|
|
|
|
- prop: 'paths',
|
|
|
|
|
- width: 230,
|
|
|
|
|
- label: '仓库',
|
|
|
|
|
- showOverflowTooltip: true
|
|
|
|
|
- },
|
|
|
|
|
{
|
|
{
|
|
|
columnKey: 'action',
|
|
columnKey: 'action',
|
|
|
label: '操作',
|
|
label: '操作',
|
|
@@ -433,6 +427,12 @@
|
|
|
showOverflowTooltip: true,
|
|
showOverflowTooltip: true,
|
|
|
width: 100
|
|
width: 100
|
|
|
},
|
|
},
|
|
|
|
|
+ {
|
|
|
|
|
+ prop: 'paths',
|
|
|
|
|
+ label: '仓库',
|
|
|
|
|
+ width: 230,
|
|
|
|
|
+ showOverflowTooltip: true
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
columnKey: 'action',
|
|
columnKey: 'action',
|
|
|
label: '操作',
|
|
label: '操作',
|
|
@@ -829,7 +829,6 @@
|
|
|
let item = res.list.map((item) => {
|
|
let item = res.list.map((item) => {
|
|
|
return {
|
|
return {
|
|
|
...item,
|
|
...item,
|
|
|
- paths: item.pathName.split(',')[0],
|
|
|
|
|
qualityResult:
|
|
qualityResult:
|
|
|
typeof item.qualityResult != 'number'
|
|
typeof item.qualityResult != 'number'
|
|
|
? 3
|
|
? 3
|
|
@@ -842,7 +841,7 @@
|
|
|
});
|
|
});
|
|
|
return result;
|
|
return result;
|
|
|
} else if (this.selectedDime == 2) {
|
|
} else if (this.selectedDime == 2) {
|
|
|
- // 物品维度
|
|
|
|
|
|
|
+ // 批次维度
|
|
|
const params = {
|
|
const params = {
|
|
|
categoryLevelId: treeId,
|
|
categoryLevelId: treeId,
|
|
|
...where,
|
|
...where,
|
|
@@ -859,6 +858,7 @@
|
|
|
let item = res.list.map((item) => {
|
|
let item = res.list.map((item) => {
|
|
|
return {
|
|
return {
|
|
|
...item,
|
|
...item,
|
|
|
|
|
+ paths: item.pathName.split(',')[0],
|
|
|
minUnit: item.packingUnit,
|
|
minUnit: item.packingUnit,
|
|
|
qualityResult:
|
|
qualityResult:
|
|
|
typeof item.qualityResult != 'number'
|
|
typeof item.qualityResult != 'number'
|