|
@@ -6,22 +6,14 @@
|
|
<a-row :gutter="24">
|
|
<a-row :gutter="24">
|
|
<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="委托单位名称">
|
|
- <a-input placeholder="请输入委托单位名称" v-model="queryParam.weituoClient"></a-input>
|
|
|
|
- </a-form-item>
|
|
|
|
- </a-col>
|
|
|
|
- <a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
|
|
- <a-form-item label="委托单位地址">
|
|
|
|
- <a-input placeholder="请输入委托单位地址" v-model="queryParam.weituoAddress"></a-input>
|
|
|
|
|
|
+ <j-search-select-tag placeholder="请选择委托单位名称" v-model="queryParam.weituoClient" :dictOptions="weituoClientList"/>
|
|
|
|
+<!-- <a-input placeholder="请输入委托单位名称" v-model="queryParam.weituoClient"></a-input>-->
|
|
</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">
|
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
|
<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="searchQuery" icon="search">查询</a-button>
|
|
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
|
|
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
|
|
- <a @click="handleToggleSearch" style="margin-left: 8px">
|
|
|
|
- {{ toggleSearchStatus ? '收起' : '展开' }}
|
|
|
|
- <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
|
|
|
|
- </a>
|
|
|
|
</span>
|
|
</span>
|
|
</a-col>
|
|
</a-col>
|
|
</a-row>
|
|
</a-row>
|
|
@@ -121,6 +113,7 @@ import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
|
import ItdmWeituoInfoModal from './modules/ItdmWeituoInfoModal'
|
|
import ItdmWeituoInfoModal from './modules/ItdmWeituoInfoModal'
|
|
import { ajaxGetDictItems, loadCategoryData } from '@/api/api'
|
|
import { ajaxGetDictItems, loadCategoryData } from '@/api/api'
|
|
import { filterMultiDictText } from '@comp/dict/JDictSelectUtil'
|
|
import { filterMultiDictText } from '@comp/dict/JDictSelectUtil'
|
|
|
|
+import { getAction } from '@api/manage'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -132,6 +125,7 @@ export default {
|
|
},
|
|
},
|
|
data () {
|
|
data () {
|
|
return {
|
|
return {
|
|
|
|
+ weituoClientList:[],
|
|
description: '委托信息管理页面',
|
|
description: '委托信息管理页面',
|
|
// 表头
|
|
// 表头
|
|
columns: [
|
|
columns: [
|
|
@@ -216,6 +210,7 @@ export default {
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
this.getSuperFieldList();
|
|
this.getSuperFieldList();
|
|
|
|
+ this.init()
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
importExcelUrl: function(){
|
|
importExcelUrl: function(){
|
|
@@ -223,6 +218,23 @@ export default {
|
|
},
|
|
},
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+
|
|
|
|
+ init(){
|
|
|
|
+
|
|
|
|
+ getAction('/weituo/itdmWeituoInfo/distinctClientList', {}).then((res) => {
|
|
|
|
+ if (res.success) {
|
|
|
|
+ console.log(res.result)
|
|
|
|
+ this.weituoClientList = res.result.map(i=>{
|
|
|
|
+ return { value: i, text: i}
|
|
|
|
+ })
|
|
|
|
+ console.log(this.weituoClientList)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+
|
|
initDictConfig(){
|
|
initDictConfig(){
|
|
ajaxGetDictItems('weituo.bgyz').then((res) => {
|
|
ajaxGetDictItems('weituo.bgyz').then((res) => {
|
|
if (res.success) {
|
|
if (res.success) {
|