|
|
@ -14,6 +14,12 @@ |
|
|
|
clearable |
|
|
|
v-model="form.artid"> |
|
|
|
</el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item> |
|
|
|
<el-input placeholder="产线ID" |
|
|
|
clearable |
|
|
|
v-model="form.planresourceid"> |
|
|
|
</el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item> |
|
|
|
<el-button type="primary" icon="el-icon-search" @click="searchList">搜索</el-button> |
|
|
@ -84,6 +90,7 @@ export default { |
|
|
|
form: { |
|
|
|
demandid: undefined, |
|
|
|
artid: undefined, |
|
|
|
planresourceid: undefined, |
|
|
|
pageNumber: 1, |
|
|
|
pageSize: 10, |
|
|
|
}, |
|
|
@ -93,6 +100,7 @@ export default { |
|
|
|
'LOG_ArtDemandLstCache-DemandId', |
|
|
|
'LOG_ArtDemandLstCache-ArtId', |
|
|
|
'LOG_ArtDemandLstCache-DemandCtrlPara3', |
|
|
|
'LOG_ArtDemandLstCache-PlanResourceId', |
|
|
|
'LOG_ArtDemandLstCache-DemandDate', |
|
|
|
'LOG_ArtDemandLstCache-DemandQty', |
|
|
|
'LOG_ArtDemandLstCache-OrderType', |
|
|
@ -122,6 +130,7 @@ export default { |
|
|
|
searchList() { |
|
|
|
if (this.form.artid === '') this.form.artid = undefined |
|
|
|
if (this.form.demandid === '') this.form.demandid = undefined |
|
|
|
if (this.form.planresourceid === '') this.form.planresourceid = undefined |
|
|
|
this.form.pageNumber = 1 |
|
|
|
this.getList() |
|
|
|
}, |
|
|
@ -129,6 +138,7 @@ export default { |
|
|
|
resetQuery() { |
|
|
|
this.form = { |
|
|
|
artid: undefined, |
|
|
|
planresourceid: undefined, |
|
|
|
pageNumber: 1, |
|
|
|
pageSize: 10, |
|
|
|
} |
|
|
|