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>
<view class="">
<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=""
:checkedToday="checkedToday"
:checkedWaitTask="checkedWaitTask"
@ -256,7 +256,7 @@
if(fromAreaCode){
//
filters.push({
column: "from_area_code",
column: "fromAreaCode",
action: "==",
value: fromAreaCode
})
@ -264,7 +264,7 @@
if(toAreaCode){
//
filters.push({
column: "to_area_code",
column: "toAreaCode",
action: "==",
value: toAreaCode
})
@ -380,7 +380,7 @@
//
this.fromAreaCode = params.fromAreaCode
filters.push({
column: "from_area_code",
column: "fromAreaCode",
action: "==",
value: params.fromAreaCode
})
@ -391,7 +391,7 @@
//
this.toAreaCode = params.toAreaCode
filters.push({
column: "to_area_code",
column: "toAreaCode",
action: "==",
value: params.toAreaCode
})

Loading…
Cancel
Save