Browse Source

【前端pc】需求更改

dev_pc_agv
安虹睿 3 months ago
parent
commit
89a4e90378
  1. 15
      fe/PC/src/components/StepsCountPlanForm/index.vue
  2. 2
      fe/PC/src/utils/index.js
  3. 2
      fe/PC/src/utils/tableColumns/index.js

15
fe/PC/src/components/StepsCountPlanForm/index.vue

@ -441,6 +441,21 @@ export default {
this.$forceUpdate()
})
}
else if(item.column == "areaCode"){
this.filterActionOptions=[{
value: '==',
label: '等于'
}, {
value: '!=',
label: '不等于'
},{
value: 'Like',
label: '包含'
}]
this.$nextTick(()=>{
this.$forceUpdate()
})
}
if(item.action == "Like"){item.action = '=='}
},
// pda线

2
fe/PC/src/utils/index.js

@ -589,6 +589,8 @@ export function initInterfaceType(res){
_item.interfaceType = '【TYRP】-【线边仓调拨单 / 领料单】'
} else if (item.transType == 16) {
_item.interfaceType = '【TYRP】-【线边仓退料单】'
} else if (item.transType == 31 && item.transSubType == 1510) {
_item.interfaceType = '【TYRP】-【线边仓调拨单】'
} else if (item.transType == 31 && item.transSubType == 3102) {
_item.interfaceType = '【TYRP】-【储位、线边仓调拨单 和 客户储位调拨单】'
} else if (item.transType == 31 && item.transSubType == 3104) {

2
fe/PC/src/utils/tableColumns/index.js

@ -2941,7 +2941,7 @@ export const CountPlanByAddLocation = [
prop: "code"
},
{ label: "库位名称", prop: "name", showProp:true },
{ label: "区域代码", prop: "areaCode", showProp:true },
{ label: "区域代码", prop: "areaCode" },
{ label: "库位组代码", prop: "locationGroupCode", showProp:true },
{ label: "工作组代码", prop: "workGroupCode", showProp:true },
{ label: "库位类型", prop: "type", type: "filter", filters: "locationType" },

Loading…
Cancel
Save