|
@@ -16,7 +16,7 @@
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
<a-form-item label="委托编号">
|
|
<a-form-item label="委托编号">
|
|
- <j-search-select-tag placeholder="请选择委托编号" v-model="queryParam.weituo_no" :dictOptions="weituoNoOptions"/>
|
|
|
|
|
|
+ <j-search-select-tag placeholder="请选择委托编号" v-model="queryParam.weituoNo" :dictOptions="weituoNoOptions"/>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
@@ -257,8 +257,13 @@ export default {
|
|
}
|
|
}
|
|
})
|
|
})
|
|
},
|
|
},
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+ // 重置
|
|
|
|
+ searchReset() {
|
|
|
|
+ this.queryParam = {}
|
|
|
|
+ console.log(11111)
|
|
|
|
+ this.weituoNoOptions = []
|
|
|
|
+ this.loadData(1);
|
|
|
|
+ },
|
|
initDictConfig(){
|
|
initDictConfig(){
|
|
ajaxGetDictItems('weituo.bgyz').then((res) => {
|
|
ajaxGetDictItems('weituo.bgyz').then((res) => {
|
|
if (res.success) {
|
|
if (res.success) {
|
|
@@ -289,7 +294,6 @@ export default {
|
|
},
|
|
},
|
|
// 监听选中委托单位,获取该单位的委托编号
|
|
// 监听选中委托单位,获取该单位的委托编号
|
|
handlewcChange(data){
|
|
handlewcChange(data){
|
|
- console.log(data)
|
|
|
|
this.weituoNoOptions = []
|
|
this.weituoNoOptions = []
|
|
this.queryParam.weituoNo = undefined
|
|
this.queryParam.weituoNo = undefined
|
|
getWeituoInfoListByClient(this.queryParam).then((res) =>{
|
|
getWeituoInfoListByClient(this.queryParam).then((res) =>{
|