Browse Source

企业查询

master
DX 1 month ago
parent
commit
054151ff72
  1. 95
      pages/enterprise.vue

95
pages/enterprise.vue

@ -1,6 +1,13 @@
<template> <template>
<cs-page :selected="3" title="企业档案" isTab> <cs-page
<view class="page-container" id="page"> :selected="3"
title="企业档案"
isTab
>
<view
class="page-container"
id="page"
>
<van-search <van-search
:value="queryParams.enterprisesName" :value="queryParams.enterprisesName"
placeholder="输入企业名称或类型查询" placeholder="输入企业名称或类型查询"
@ -8,13 +15,16 @@
@clear="resetQuery('enterpriseName')" @clear="resetQuery('enterpriseName')"
id="sreach" id="sreach"
/> />
<van-dropdown-menu safe-area-tab-bar active-color="#17C653"> <van-dropdown-menu
safe-area-tab-bar
active-color="#17C653"
>
<van-dropdown-item <van-dropdown-item
:value="queryParams.qy" :value="queryParams.qy"
:options="getDropdownOption('qy')" :options="getDropdownOption('enterprises_area')"
@change=" @change="
v => { v => {
querySelect(v, 'qy') querySelect(v, 'region')
} }
" "
/> />
@ -67,13 +77,23 @@
shape="square" shape="square"
size="64" size="64"
></u-avatar> ></u-avatar>
<view class="wd-flex wd-flex-col" style="gap: 4px"> <view
class="wd-flex wd-flex-col"
style="gap: 4px"
>
<text class="wd-font-800 wd-text-15"> <text class="wd-font-800 wd-text-15">
{{ enterprise.enterprisesName }} {{ enterprise.enterprisesName }}
</text> </text>
<view class="wd-flex wd-pb-8px"> <view class="wd-flex wd-pb-8px">
<u-icon name="map" size="14" color="#17C653"></u-icon> <u-icon
<text class="address wd-text-12" style="margin-left: 4px"> name="map"
size="14"
color="#17C653"
></u-icon>
<text
class="address wd-text-12"
style="margin-left: 4px"
>
{{ enterprise.address }} {{ enterprise.address }}
</text> </text>
</view> </view>
@ -111,7 +131,11 @@
待审核 待审核
</view> </view>
</view> </view>
<u-loadmore :status="load" marginTop="12" marginBottom="12" /> <u-loadmore
:status="load"
marginTop="12"
marginBottom="12"
/>
</scroll-view> </scroll-view>
</view> </view>
</cs-page> </cs-page>
@ -122,7 +146,7 @@ import { getEnterPriseList } from '@/api/enterprise/index.js'
import { import {
getDictBatchByType, getDictBatchByType,
getDeptTree, getDeptTree,
getTagData getTagData,
} from '@/api/system/dict.js' } from '@/api/system/dict.js'
export default { export default {
data() { data() {
@ -135,14 +159,14 @@ export default {
st: '', st: '',
wr: '', wr: '',
enterprisesName: '', enterprisesName: '',
tagList: '' tagList: '',
}, },
listHeight: 0, listHeight: 0,
sreachHeight: 0, sreachHeight: 0,
refresherTriggered: false, refresherTriggered: false,
list: [], list: [],
load: 'loadmore', load: 'loadmore',
dictMap: {} dictMap: {},
} }
}, },
async onLoad() { async onLoad() {
@ -174,7 +198,7 @@ export default {
uni.showToast({ uni.showToast({
title: '加载中', title: '加载中',
mask: true, mask: true,
icon: 'loading' icon: 'loading',
}) })
this.load = 'loading' this.load = 'loading'
const res = await getEnterPriseList(this.queryParams) const res = await getEnterPriseList(this.queryParams)
@ -186,41 +210,58 @@ export default {
uni.hideToast() uni.hideToast()
}, },
async getDict() { async getDict() {
const tags = await getTagData(['qy', ' hy', 'st', 'wr'].join(',')) const tags = await getTagData(
['qy', ' hy', 'st', 'wr'].join(',')
)
const dict = await getDictBatchByType({ const dict = await getDictBatchByType({
type: [ type: [
'user_audit_type', 'user_audit_type',
'enterprises_type', 'enterprises_type',
'enterprises_area' 'enterprises_area',
].join(',') ].join(','),
}) })
let tagMap = {} let tagMap = {}
tags.data.forEach(t => { tags.data.forEach(t => {
tagMap[t.tagCode] = t.children tagMap[t.tagCode] = t.children
}) })
console.log(tagMap)
this.dictMap = { this.dictMap = {
...tagMap, ...tagMap,
...dict.data ...dict.data,
} }
}, },
getDropdownOption(key) { getDropdownOption(key) {
if (!this.dictMap[key]) return [] if (!this.dictMap[key]) return []
const keyMap = { const keyMap = {
qy: '区域', enterprises_area: '区域',
hy: '行业', hy: '行业',
st: '生态', st: '生态',
wr: '污染' wr: '污染',
}
if (['enterprises_area'].includes(key)) {
const data = this.dictMap[key].map(d => {
return {
value: d.value,
text: d.label,
}
})
data.push({
value: '',
text: keyMap[key],
})
return data
} }
const data = this.dictMap[key].map(d => { const data = this.dictMap[key].map(d => {
return { return {
value: d.id, value: d.id,
text: d.tagName text: d.tagName,
} }
}) })
data.push({ data.push({
value: '', value: '',
text: keyMap[key] text: keyMap[key],
}) })
return data return data
}, },
querySelect(v, key) { querySelect(v, key) {
@ -240,7 +281,7 @@ export default {
this.queryParams.qy, this.queryParams.qy,
this.queryParams.hy, this.queryParams.hy,
this.queryParams.st, this.queryParams.st,
this.queryParams.wr this.queryParams.wr,
] ]
.filter(i => i != '') .filter(i => i != '')
.join() .join()
@ -250,7 +291,7 @@ export default {
if (this.load == 'nomore') { if (this.load == 'nomore') {
uni.showToast({ uni.showToast({
title: '没有更多了', title: '没有更多了',
icon: 'none' icon: 'none',
}) })
return return
} }
@ -278,16 +319,16 @@ export default {
st: '', st: '',
wr: '', wr: '',
enterprisesName: '', enterprisesName: '',
tagList: '' tagList: '',
} }
await this.queryEnterprise() await this.queryEnterprise()
}, },
goDetail(id) { goDetail(id) {
uni.navigateTo({ uni.navigateTo({
url: `/sub/enterprise/detail?id=${id}` url: `/sub/enterprise/detail?id=${id}`,
}) })
} },
} },
} }
</script> </script>

Loading…
Cancel
Save