Browse Source

库位查询

lijuncheng0816
wangyufei 1 month ago
parent
commit
06f67bc481
  1. 10
      src/pages/issue/job/issueJob.vue

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

@ -1,7 +1,7 @@
<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="false" :isShowToAreaCode="false" :isShowProductionLineCode="true" :productionline="productionlineList" <job-filter :isShowFromLocationCode="true" :isShowFromAreaCode="true" :isShowToAreaCode="true" :isShowProductionLineCode="true" :productionline="productionlineList"
ref="filter" otherTitle="" ref="filter" otherTitle=""
:checkedToday="checkedToday" :checkedToday="checkedToday"
:checkedWaitTask="checkedWaitTask" :checkedWaitTask="checkedWaitTask"
@ -256,7 +256,7 @@
if(fromAreaCode){ if(fromAreaCode){
// //
filters.push({ filters.push({
column: "from_area_code", column: "fromAreaCode",
action: "==", action: "==",
value: fromAreaCode value: fromAreaCode
}) })
@ -264,7 +264,7 @@
if(toAreaCode){ if(toAreaCode){
// //
filters.push({ filters.push({
column: "to_area_code", column: "toAreaCode",
action: "==", action: "==",
value: toAreaCode value: toAreaCode
}) })
@ -380,7 +380,7 @@
// //
this.fromAreaCode = params.fromAreaCode this.fromAreaCode = params.fromAreaCode
filters.push({ filters.push({
column: "from_area_code", column: "fromAreaCode",
action: "==", action: "==",
value: params.fromAreaCode value: params.fromAreaCode
}) })
@ -391,7 +391,7 @@
// //
this.toAreaCode = params.toAreaCode this.toAreaCode = params.toAreaCode
filters.push({ filters.push({
column: "to_area_code", column: "toAreaCode",
action: "==", action: "==",
value: params.toAreaCode value: params.toAreaCode
}) })

Loading…
Cancel
Save