|
@@ -6,7 +6,7 @@
|
|
|
<a-row :gutter="24">
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
<a-form-item label="委托单位名称">
|
|
|
- <j-search-select-tag placeholder="请选择委托单位名称" :dictOptions="weituoClientList"
|
|
|
+ <j-search-select-tag placeholder="请选择委托单位名称" :dictOptions="weituoClientList" ref="woCo"
|
|
|
@change="handlewcChange" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
@@ -14,14 +14,14 @@
|
|
|
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
<a-form-item label="委托编号">
|
|
|
- <j-search-select-tag placeholder="请选择委托编号" :dictOptions="weituoNoList" @change="handlewnChange" />
|
|
|
+ <j-search-select-tag placeholder="请选择委托编号" ref="woNo" :dictOptions="weituoNoList" @change="handlewnChange" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
|
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
<a-form-item label="工单号">
|
|
|
- <j-search-select-tag placeholder="工单号" v-model="queryParam.woId" :dictOptions="gongdanList" />
|
|
|
+ <j-search-select-tag ref="woId" placeholder="工单号" v-model="queryParam.woId" :dictOptions="gongdanList" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
@@ -29,7 +29,7 @@
|
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
|
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
|
|
|
- <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
|
|
|
+ <a-button type="primary" @click="searchReset1" icon="reload" style="margin-left: 8px">重置</a-button>
|
|
|
|
|
|
</span>
|
|
|
</a-col>
|
|
@@ -231,6 +231,14 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ searchReset1(){
|
|
|
+ this.$refs.woCo.handleChange('')
|
|
|
+ this.$refs.woNo.handleChange('')
|
|
|
+
|
|
|
+ this.$refs.woId.handleChange(null)
|
|
|
+
|
|
|
+
|
|
|
+ },
|
|
|
init() {
|
|
|
|
|
|
getAction('/weituo/itdmWeituoInfo/distinctClientList', {}).then((res) => {
|