|
@@ -17,6 +17,7 @@
|
|
|
</a-select>
|
|
|
<j-dict-select-tag style='width:76%;margin-top: 3%' v-if="this.queryList.includes('sf')" type='list'
|
|
|
v-model='keyword' dictCode='sfgyz' placeholder='' />
|
|
|
+ <!--闲置低效-->
|
|
|
<a-select v-else-if="this.queryList.includes('tdsyxz')" @pressEnter='handleSearch' v-model='keyword'
|
|
|
style='width:76%;margin-top: 3%'>
|
|
|
<a-select-option value='闲置低效土地'>
|
|
@@ -29,6 +30,13 @@
|
|
|
<!-- 正常使用-->
|
|
|
<!-- </a-select-option>-->
|
|
|
</a-select>
|
|
|
+ <!--一级企业-->
|
|
|
+ <a-select v-else-if="this.queryList.includes('xfzx_id')" @pressEnter='handleSearch' v-model='keyword'
|
|
|
+ style='width:76%;margin-top: 3%'>
|
|
|
+ <a-select-option v-for="(name, index) in orgName" :key="index" :value='name'>
|
|
|
+ {{ name }}
|
|
|
+ </a-select-option>
|
|
|
+ </a-select>
|
|
|
<JAreaSelect v-else-if="this.queryList.includes('xz')" style='width:76%;margin-top: 3%' ref='JArea'
|
|
|
@Area='SelectArea'></JAreaSelect>
|
|
|
<!-- <j-area-linkage v-else-if="this.queryList.includes('XZ')" style='width:76%;margin-top: 3%' type="cascader" v-model="keyword" placeholder="请输入省市区"/>-->
|
|
@@ -38,7 +46,7 @@
|
|
|
@pressEnter='handleSearch' />
|
|
|
|
|
|
<a-tooltip placement='bottom'
|
|
|
- v-if="this.queryList.includes('sf')||this.queryList.includes('tdsyxz')||this.queryList.includes('xz')||this.queryList.includes('sf')">
|
|
|
+ v-if="this.queryList.includes('sf')||this.queryList.includes('tdsyxz')||this.queryList.includes('xzqh')||this.queryList.includes('xfzx_id')">
|
|
|
<template slot='title'>
|
|
|
<span>搜索</span>
|
|
|
</template>
|
|
@@ -144,7 +152,38 @@ export default {
|
|
|
size: 'small',
|
|
|
current: 1
|
|
|
},
|
|
|
- infoShow: false
|
|
|
+ infoShow: false,
|
|
|
+ orgName:[
|
|
|
+ '山东颐养健康产业发展集团有限公司',
|
|
|
+ '山东省商业集团有限公司',
|
|
|
+ '山东省港口集团有限公司',
|
|
|
+ '水发集团有限公司',
|
|
|
+ '山东山科控股集团有限公司',
|
|
|
+ '山东省水利勘测设计院有限公司',
|
|
|
+ '山东高速集团有限公司',
|
|
|
+ '山东文旅集团有限公司',
|
|
|
+ '山东重工集团有限公司',
|
|
|
+ '泰山财产保险股份有限公司',
|
|
|
+ '山东世界贸易中心',
|
|
|
+ '山东海洋集团有限公司',
|
|
|
+ '山东能源集团有限公司',
|
|
|
+ '山东鲁粮集团有限公司',
|
|
|
+ '山东铁路投资控股集团有限公司',
|
|
|
+ '华鲁控股集团有限公司',
|
|
|
+ '山东种业集团有限公司',
|
|
|
+ '山东省国有资产投资控股有限公司',
|
|
|
+ '山东国惠投资控股集团有限公司',
|
|
|
+ '山东产权交易集团有限公司',
|
|
|
+ '山东黄金集团有限公司',
|
|
|
+ '中泰证券股份有限公司',
|
|
|
+ '浪潮集团有限公司',
|
|
|
+ '山东省机场管理集团有限公司',
|
|
|
+ '山东发展投资控股集团有限公司',
|
|
|
+ '山东南郊集团有限公司',
|
|
|
+ '山东省土地发展集团有限公司',
|
|
|
+ '山东人才发展集团有限公司',
|
|
|
+ '山东钢铁集团有限公司'
|
|
|
+ ]
|
|
|
}
|
|
|
},
|
|
|
props: {
|
|
@@ -251,6 +290,7 @@ export default {
|
|
|
} else {
|
|
|
this.$message.warn('请输入查询关键字!')
|
|
|
}
|
|
|
+ //this.keyword=''
|
|
|
},
|
|
|
selectChange(val) {
|
|
|
let temp = []
|
|
@@ -262,7 +302,7 @@ export default {
|
|
|
// this.placeholder = temp[0].inputTip;
|
|
|
this.returntree = temp[0].returntree == 'true' ? true : false
|
|
|
this.queryLists = temp[0].queryList
|
|
|
-
|
|
|
+ this.keyword=''
|
|
|
},
|
|
|
handleCoord(item) {
|
|
|
|