|
@@ -15,6 +15,18 @@
|
|
|
<a-input id="bulkWarehousingOrderList-relationNo" v-model.trim="queryParam.relationNo" allowClear placeholder="请输入关联单号"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
+ <a-form-item label="状态">
|
|
|
+ <v-select
|
|
|
+ v-model="queryParam.state"
|
|
|
+ ref="state"
|
|
|
+ id="bulkWarehousingOrderList-state"
|
|
|
+ code="SPARE_PARTS_STATE"
|
|
|
+ placeholder="请选择状态"
|
|
|
+ allowClear
|
|
|
+ ></v-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
<a-col :md="6" :sm="24">
|
|
|
<span class="table-page-search-submitButtons">
|
|
|
<a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="bulkWarehousingOrderList-refresh">查询</a-button>
|
|
@@ -105,7 +117,8 @@ export default {
|
|
|
// 查询参数
|
|
|
queryParam: {
|
|
|
productCode: '',
|
|
|
- relationNo: ''
|
|
|
+ relationNo: '',
|
|
|
+ state: undefined
|
|
|
},
|
|
|
// 表头
|
|
|
columns: [
|
|
@@ -249,6 +262,7 @@ export default {
|
|
|
resetSearchForm () {
|
|
|
this.queryParam.productCode = ''
|
|
|
this.queryParam.relationNo = ''
|
|
|
+ this.queryParam.state = undefined
|
|
|
this.$refs.table.refresh(true)
|
|
|
},
|
|
|
// 单条审核
|