Browse Source

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

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

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

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

Loading…
Cancel
Save