Browse Source

发料任务筛选去掉来源库位

hella_online_20241030
lijuncheng 4 weeks ago
parent
commit
a399b86128
  1. 19
      src/pages/issue/job/issueJob.vue

19
src/pages/issue/job/issueJob.vue

@ -1,10 +1,11 @@
<template>
<view class="">
<com-empty-view v-if="jobList.length==0"></com-empty-view>
<job-filter :isShowFromLocationCode="true" :isShowFromAreaCode="true" :isShowToAreaCode="true"
<job-filter :isShowFromLocationCode="false" :isShowFromAreaCode="true" :isShowToAreaCode="true"
:isShowProductionLineCode="true"
:productionline="productionlineList"
ref="filter" otherTitle="" :isShowItemCode="true"
ref="filter" otherTitle=""
:isShowItemCode="true"
@onQuery="getListByFilter" :isShowQurery='true'>
</job-filter>
<view v-if="jobList.length>0">
@ -319,13 +320,13 @@
}
//
if (queryParams.fromLocationCode) {
filterParams.push({
column: "fromLocationCode",
action: "==",
value: queryParams.fromLocationCode
})
}
// if (queryParams.fromLocationCode) {
// filterParams.push({
// column: "fromLocationCode",
// action: "==",
// value: queryParams.fromLocationCode
// })
// }
//
if (queryParams.fromAreaCode) {

Loading…
Cancel
Save