|
@ -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 |
|
|
}) |
|
|
}) |
|
|