Browse Source

企业查询

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

95
pages/enterprise.vue

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

Loading…
Cancel
Save