|
|
|
@ -18,6 +18,12 @@ |
|
|
|
<el-option label="Dead" value="Dead"></el-option> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="即将失效"> |
|
|
|
<el-select v-model="searchData.isExpiring" clearable style="width: 120px"> |
|
|
|
<el-option label="是" value="Y"></el-option> |
|
|
|
<el-option label="否" value="N"></el-option> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="节点审批人"> |
|
|
|
<el-input v-model="searchData.currentApprover" clearable style="width: 120px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
@ -1648,6 +1654,7 @@ export default { |
|
|
|
referenceNo: '', |
|
|
|
status: '', |
|
|
|
rohsStatus: '', |
|
|
|
isExpiring: '', |
|
|
|
currentApprover: '', |
|
|
|
nodeId: '', |
|
|
|
ifsPartNo: '', |
|
|
|
@ -3573,6 +3580,7 @@ export default { |
|
|
|
referenceNo: this.searchData.referenceNo, |
|
|
|
status: this.searchData.status, |
|
|
|
rohsStatus: this.searchData.rohsStatus, |
|
|
|
isExpiring: this.searchData.isExpiring, |
|
|
|
currentApprover: this.searchData.currentApprover, |
|
|
|
nodeId: this.searchData.nodeId, |
|
|
|
ifsPartNo: this.searchData.ifsPartNo, |
|
|
|
|