Browse Source

Merge remote-tracking branch 'origin/master'

# Conflicts:
#	pages/enterprise.vue
master
DX 1 month ago
parent
commit
118de3fec3
  1. 11
      api/enterprise/index.js
  2. 51
      api/taglibrary/index.js
  3. 5
      package.json
  4. 127
      pages/enterprise.vue
  5. 169
      pages/index.vue
  6. 11
      pages/owner.vue
  7. 4
      pages/task.vue
  8. 3
      sub/chat/index.vue
  9. 2
      sub/enterprise/detail.vue
  10. 1
      sub/enterprise/edit.vue
  11. 265
      sub/invite/addEnterprise.vue
  12. 166
      sub/invite/enterpriseTags.vue
  13. 46
      sub/invite/index.vue
  14. 31
      sub/invite/prove.vue
  15. 4
      sub/owner/policy-detail.vue
  16. 2
      sub/task/enforce.vue
  17. 2
      uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue

11
api/enterprise/index.js

@ -23,7 +23,16 @@ export function getEnterPriseList(params) {
params params
}) })
} }
/**
* 校验企业名
*/
export function vertifyName(params) {
return request({
url: `/system/enterprise/page`,
method: 'GET',
params
})
}
/** /**
* 获取企业详情 * 获取企业详情
* @param {Object} id * @param {Object} id

51
api/taglibrary/index.js

@ -0,0 +1,51 @@
import request from '@/utils/request'
// 企业标签 API
export const TagLibraryApi = {
// 查询企业标签分页
getTagLibraryPage(params) {
return request({
method: 'get',
url: '/system/tag-library/page',
params: params
})
},
// 查询企业标签详情
getTagLibrary(id) {
return request({
method: 'get',
url: '/system/tag-library/get?id=' + id
})
},
// 新增企业标签
createTagLibrary(data) {
return request({
method: 'post',
url: '/system/tag-library/create',
data: data
})
},
// 修改企业标签
updateTagLibrary(data) {
return request({
method: 'put',
url: '/system/tag-library/update',
data: data
})
},
// 删除企业标签
deleteTagLibrary(id) {
return request({
method: 'delete',
url: '/system/tag-library/delete?id=' + id
})
},
}

5
package.json

@ -0,0 +1,5 @@
{
"dependencies": {
"crypto-js": "^4.0.0"
}
}

127
pages/enterprise.vue

@ -1,13 +1,6 @@
<template> <template>
<cs-page <cs-page :selected="3" title="企业档案" isTab>
:selected="3" <view class="page-container" id="page">
title="企业档案"
isTab
>
<view
class="page-container"
id="page"
>
<van-search <van-search
:value="queryParams.enterprisesName" :value="queryParams.enterprisesName"
placeholder="输入企业名称或类型查询" placeholder="输入企业名称或类型查询"
@ -15,16 +8,13 @@
@clear="resetQuery('enterpriseName')" @clear="resetQuery('enterpriseName')"
id="sreach" id="sreach"
/> />
<van-dropdown-menu <van-dropdown-menu safe-area-tab-bar active-color="#17C653">
safe-area-tab-bar
active-color="#17C653"
>
<van-dropdown-item <van-dropdown-item
:value="queryParams.qy" :value="queryParams.qy"
:options="getDropdownOption('enterprises_area')" :options="getDropdownOption('qy')"
@change=" @change="
v => { v => {
querySelect(v, 'region') querySelect(v, 'qy')
} }
" "
/> />
@ -64,7 +54,7 @@
@refresherpulling="refresherpulling" @refresherpulling="refresherpulling"
@scrolltolower="loadMore" @scrolltolower="loadMore"
class="list" class="list"
:style="{ maxHeight: `${listHeight - sreachHeight}px` }" :style="{ height: `${listHeight - sreachHeight}px` }"
> >
<view <view
v-for="enterprise in list" v-for="enterprise in list"
@ -77,23 +67,13 @@
shape="square" shape="square"
size="64" size="64"
></u-avatar> ></u-avatar>
<view <view class="wd-flex wd-flex-col" style="gap: 4px">
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 <u-icon name="map" size="14" color="#17C653"></u-icon>
name="map" <text class="address wd-text-12" style="margin-left: 4px">
size="14"
color="#17C653"
></u-icon>
<text
class="address wd-text-12"
style="margin-left: 4px"
>
{{ enterprise.address }} {{ enterprise.address }}
</text> </text>
</view> </view>
@ -131,24 +111,20 @@
待审核 待审核
</view> </view>
</view> </view>
<u-loadmore <u-loadmore :status="load" marginTop="12" marginBottom="12" />
:status="load"
marginTop="12"
marginBottom="12"
/>
</scroll-view> </scroll-view>
</view> </view>
</cs-page> </cs-page>
</template> </template>
<script> <script>
import { getEnterPriseList } from '@/api/enterprise/index.js' 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() {
return { return {
queryParams: { queryParams: {
@ -159,14 +135,14 @@
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() {
@ -190,7 +166,7 @@
query query
.select('#page') .select('#page')
.boundingClientRect(data => { .boundingClientRect(data => {
this.listHeight = data.height - 35 this.listHeight = data.height - 35 - 25
}) })
.exec() .exec()
}, },
@ -198,7 +174,7 @@
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)
@ -210,58 +186,41 @@
uni.hideToast() uni.hideToast()
}, },
async getDict() { async getDict() {
const tags = await getTagData( const tags = await getTagData(['qy', ' hy', 'st', 'wr'].join(','))
['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 = {
enterprises_area: '区域', qy: '区域',
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) {
@ -281,7 +240,7 @@
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()
@ -291,7 +250,7 @@
if (this.load == 'nomore') { if (this.load == 'nomore') {
uni.showToast({ uni.showToast({
title: '没有更多了', title: '没有更多了',
icon: 'none', icon: 'none'
}) })
return return
} }
@ -319,31 +278,31 @@
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>
<style lang="scss" scoped> <style lang="scss" scoped>
.page-container { .page-container {
height: 100%; height: 100%;
overflow: hidden; overflow: hidden;
} }
.list { .list {
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
gap: 12px; gap: 12px;
padding: 0 12px; padding: 0 12px;
} }
.enterprise { .enterprise {
padding: 12px; padding: 12px;
background-color: #fff; background-color: #fff;
border-radius: $cs-border-radius; border-radius: $cs-border-radius;
@ -384,15 +343,15 @@
font-size: 12px; font-size: 12px;
text-align: center; text-align: center;
} }
} }
::v-deep .van-dropdown-menu { ::v-deep .van-dropdown-menu {
box-shadow: none; box-shadow: none;
height: 35px; height: 35px;
font-size: 13px; font-size: 13px;
border-bottom: 1px solid #f1f1f4; border-bottom: 1px solid #f1f1f4;
} }
::v-deep .u-list { ::v-deep .u-list {
padding: 12px; padding: 12px;
} }
</style> </style>

169
pages/index.vue

@ -1,10 +1,19 @@
<template> <template>
<cs-page :selected="0" title="智慧生态" isTab> <cs-page
:selected="0"
title="智慧生态"
isTab
>
<view class="view-container"> <view class="view-container">
<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.deptId" :value="queryParams.deptId"
:options="getDropdownOption('dept')" :options="dropOption.dept"
use-before-toggle
@before-toggle="dorpToggle"
@change=" @change="
v => { v => {
querySelect(v, 'deptId') querySelect(v, 'deptId')
@ -13,7 +22,7 @@
/> />
<van-dropdown-item <van-dropdown-item
:value="queryParams.selectWeek" :value="queryParams.selectWeek"
:options="getDropdownOption('select_week')" :options="dropOption.select_week"
@change=" @change="
v => { v => {
querySelect(v, 'selectWeek') querySelect(v, 'selectWeek')
@ -31,7 +40,10 @@
@refresherpulling="refresherpulling" @refresherpulling="refresherpulling"
> >
<view class="box row-1"> <view class="box row-1">
<view class="wd-flex" style="justify-content: space-around"> <view
class="wd-flex"
style="justify-content: space-around"
>
<view <view
class="wd-flex wd-flex-col wd-flex-center" class="wd-flex wd-flex-col wd-flex-center"
style="gap: 4px" style="gap: 4px"
@ -79,7 +91,10 @@
:canvas2d="true" :canvas2d="true"
style="height: 144px" style="height: 144px"
></qiun-data-charts> ></qiun-data-charts>
<view class="wd-flex" style="gap: 12px; flex-wrap: wrap"> <view
class="wd-flex"
style="gap: 12px; flex-wrap: wrap"
>
<view <view
class="wd-flex wd-flex-col wd-flex-center" class="wd-flex wd-flex-col wd-flex-center"
v-for="item in detail.legendData" v-for="item in detail.legendData"
@ -92,7 +107,10 @@
border-radius: 4px; border-radius: 4px;
" "
> >
<view class="wd-flex wd-flex-col" style="gap: 4px"> <view
class="wd-flex wd-flex-col"
style="gap: 4px"
>
<view <view
class="wd-flex" class="wd-flex"
style="align-items: center; gap: 4px" style="align-items: center; gap: 4px"
@ -102,7 +120,7 @@
width: '8px', width: '8px',
height: '4px', height: '4px',
borderRadius: '4px', borderRadius: '4px',
backgroundColor: item.color backgroundColor: item.color,
}" }"
></view> ></view>
<view class="">{{ item.name }}</view> <view class="">{{ item.name }}</view>
@ -138,9 +156,7 @@
v-for="(item, index) in tabs" v-for="(item, index) in tabs"
:key="index" :key="index"
:style="{ :style="{
'--index': tabs.findIndex( '--index': tabs.findIndex(i => i.type == queryParams.type),
i => i.type == queryParams.type
)
}" }"
@tap="changeTab(item.type)" @tap="changeTab(item.type)"
> >
@ -148,7 +164,7 @@
class="name" class="name"
:style="{ :style="{
color: color:
queryParams.type == item.type ? '#071437' : '#78829d' queryParams.type == item.type ? '#071437' : '#78829d',
}" }"
> >
{{ item.name }} {{ item.name }}
@ -156,7 +172,7 @@
</view> </view>
</view> </view>
</view> </view>
<view class=""> <view style="min-height: 220px">
<view <view
v-for="(item, index) in list" v-for="(item, index) in list"
:key="index" :key="index"
@ -164,7 +180,10 @@
style="justify-content: space-between; padding: 12px" style="justify-content: space-between; padding: 12px"
> >
<view class="wd-font-800">{{ item.name }}</view> <view class="wd-font-800">{{ item.name }}</view>
<view class="wd-font-800" style="color: #ff6f1e"> <view
class="wd-font-800"
style="color: #ff6f1e"
>
<view> <view>
<u-count-to <u-count-to
:start-val="0" :start-val="0"
@ -185,16 +204,16 @@
</template> </template>
<script> <script>
import { getDictBatchByType, getDeptTree } from '@/api/system/dict.js' import { getDictBatchByType, getDeptTree } from '@/api/system/dict.js'
import { HomeApi } from '@/api/common/home.js' import { HomeApi } from '@/api/common/home.js'
export default { export default {
data() { data() {
return { return {
dictMap: {}, dictMap: {},
queryParams: { queryParams: {
selectWeek: '', selectWeek: '',
deptId: '', deptId: '',
type: 1 type: 1,
}, },
detail: {}, detail: {},
opts: {}, opts: {},
@ -203,24 +222,28 @@ export default {
tabs: [ tabs: [
{ {
name: '资质逾期', name: '资质逾期',
type: 1 type: 1,
}, },
{ {
name: '整改次数', name: '整改次数',
type: 2 type: 2,
} },
], ],
refresherTriggered: false, refresherTriggered: false,
list: [], list: [],
color: ['#1B84FF', '#7239EA', '#F6B100', '#F8285A', '#17C653'] dropOption: {},
color: ['#1B84FF', '#7239EA', '#F6B100', '#F8285A', '#17C653'],
} }
}, },
onLoad: async function () { onLoad: async function () {
await uni.hideTabBar() await uni.hideTabBar()
uni.hideTabBar({ uni.hideTabBar({
animation: false animation: false,
}) })
this.getDict() this.getDict()
if (!this.$roles.checkRole(['director'])) {
this.queryParams.deptId = this.$store.getters.deptId
}
this.init() this.init()
}, },
onReady() { onReady() {
@ -243,49 +266,38 @@ export default {
}, },
async getDict() { async getDict() {
const dict = await getDictBatchByType({ const dict = await getDictBatchByType({
type: ['select_week'].join(',') type: ['select_week'].join(','),
}) })
const dept = await getDeptTree() const dept = await getDeptTree()
this.dictMap = { this.dropOption.dept = [
...dict.data, ...dept.data.map(i => {
dept: dept.data
}
},
getDropdownOption(key) {
if (!this.dictMap[key]) return []
const keyMap = {
select_week: '周期',
dept: '部门'
}
if (key == 'dept') {
const data = [
...this.dictMap[key].map(d => {
return { return {
value: d.id, value: i.id,
text: d.name text: i.name,
} }
}) }),
{
value: '',
text: '全部',
},
] ]
if (!this.$roles.checkRole(['director'])) { this.dropOption.select_week = [
this.queryParams.deptId = this.$store.getters.deptId ...dict.data.select_week.map(i => {
return [...data]
}
return [...data, { value: '', text: keyMap[key] }]
}
return [
...this.dictMap[key].map(d => {
return { return {
value: d.value, value: i.value,
text: d.label text: i.label,
} }
}), }),
{ value: '', text: keyMap[key] } {
value: '',
text: '全部',
},
] ]
}, },
async init() { async init() {
if (!this.$roles.checkRole(['director'])) { // if (!this.$roles.checkRole(['director'])) {
this.queryParams.deptId = this.$store.getters.deptId // this.queryParams.deptId = this.$store.getters.deptId
} // }
const res = await HomeApi.getPieData(this.queryParams) const res = await HomeApi.getPieData(this.queryParams)
this.detail = res.data this.detail = res.data
let curIndex = 0 let curIndex = 0
@ -306,19 +318,19 @@ export default {
const pieData = data.map(i => { const pieData = data.map(i => {
return { return {
name: i.name, name: i.name,
value: Number(i.pieValue) value: Number(i.pieValue),
} }
}) })
if (Number(max) < 100) { if (Number(max) < 100) {
pieData.push({ pieData.push({
name: '', name: '',
value: 100 - Number(max), value: 100 - Number(max),
color: '#fff' color: '#fff',
}) })
} }
this.opts = { this.opts = {
legend: { legend: {
show: false show: false,
}, },
color: this.color, color: this.color,
rotate: false, rotate: false,
@ -330,12 +342,12 @@ export default {
name: `${max}%`, name: `${max}%`,
fontSize: 24, fontSize: 24,
color: '#071437', color: '#071437',
fontWeight: 'bold' fontWeight: 'bold',
}, },
subtitle: { subtitle: {
name: '完成率', name: '完成率',
fontSize: 14, fontSize: 14,
color: '#78829D' color: '#78829D',
}, },
extra: { extra: {
ring: { ring: {
@ -345,16 +357,16 @@ export default {
labelWidth: 15, labelWidth: 15,
border: false, border: false,
borderColor: '#FFFFFF', borderColor: '#FFFFFF',
linearType: 'none' linearType: 'none',
} },
} },
} }
this.chartData = { this.chartData = {
series: [ series: [
{ {
data: pieData data: pieData,
} },
] ],
} }
}, },
sectionChange(index) { sectionChange(index) {
@ -379,16 +391,27 @@ export default {
}, },
refresherrefresh() { refresherrefresh() {
this.init() this.init()
},
dorpToggle(e) {
if (!this.$roles.checkRole(['director'])) {
uni.showToast({
icon: 'none',
title: '暂无权限',
})
e.detail.callback(false)
} else {
e.detail.callback(true)
} }
},
},
} }
}
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.view-container { .view-container {
height: 100%; height: 100%;
} }
.view { .view {
padding: 0 12px; padding: 0 12px;
padding-bottom: 12px; padding-bottom: 12px;
display: flex; display: flex;
@ -428,11 +451,11 @@ export default {
z-index: 1; z-index: 1;
} }
} }
} }
::v-deep .van-dropdown-menu { ::v-deep .van-dropdown-menu {
box-shadow: none; box-shadow: none;
height: 35px !important; height: 35px !important;
font-size: 13px; font-size: 13px;
border-bottom: 1px solid #f1f1f4; border-bottom: 1px solid #f1f1f4;
} }
</style> </style>

11
pages/owner.vue

@ -54,7 +54,7 @@
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
</view> </view>
<view class="section wd-flex wd-flex-row wd-justify-between"> <!-- <view class="section wd-flex wd-flex-row wd-justify-between">
<view class="wd-flex wd-flex-row" style="gap: 8px"> <view class="wd-flex wd-flex-row" style="gap: 8px">
<u--image <u--image
src="/static/images/owner/edit.png" src="/static/images/owner/edit.png"
@ -73,8 +73,11 @@
></u-count-to> ></u-count-to>
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
</view> </view> -->
<view class="section wd-flex wd-flex-row wd-justify-between"> <view
class="section wd-flex wd-flex-row wd-justify-between"
@click="btnPolicy"
>
<view class="wd-flex wd-flex-row" style="gap: 8px"> <view class="wd-flex wd-flex-row" style="gap: 8px">
<u--image <u--image
src="/static/images/owner/list.png" src="/static/images/owner/list.png"
@ -84,7 +87,7 @@
></u--image> ></u--image>
<text class="wd-font-800">政策法规</text> <text class="wd-font-800">政策法规</text>
</view> </view>
<view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px" @click="btnPolicy"> <view class="wd-flex wd-flex-row wd-items-center" style="gap: 8px">
<u-count-to <u-count-to
:startVal="0" :startVal="0"
:endVal="policyTotal" :endVal="policyTotal"

4
pages/task.vue

@ -48,7 +48,7 @@
@scrolltolower="loadMore" @scrolltolower="loadMore"
class="list" class="list"
:enable-flex="true" :enable-flex="true"
:style="{ maxHeight: `${listHeight}px` }" :style="{ height: `${listHeight}px` }"
> >
<view <view
v-for="task in list" v-for="task in list"
@ -169,7 +169,7 @@ export default {
query query
.select('.page') .select('.page')
.boundingClientRect(data => { .boundingClientRect(data => {
this.listHeight = data.height - 55 this.listHeight = data.height - 55 - 25
}) })
.exec() .exec()
}, },

3
sub/chat/index.vue

@ -1,5 +1,6 @@
<template> <template>
<web-view src="https://mb.jzce.com/chat/f07644a8e53c750a"></web-view> <!-- <web-view src="https://mb.jzce.com/chat/f07644a8e53c750a"></web-view> -->
<web-view src="https://chat.deepseek.com/"></web-view>
</template> </template>
<script> <script>

2
sub/enterprise/detail.vue

@ -30,7 +30,7 @@
<view class="wd-flex" style="align-items: center"> <view class="wd-flex" style="align-items: center">
<text class="address" style="margin-right: 8px">环保负责人</text> <text class="address" style="margin-right: 8px">环保负责人</text>
<text style="margin-right: 16px"> <text style="margin-right: 16px">
{{ detail.enterprisesName }} {{ detail.contactName }}
</text> </text>
<text class="address" style="margin-right: 8px">联系方式</text> <text class="address" style="margin-right: 8px">联系方式</text>
<text style="text-decoration: underline"> <text style="text-decoration: underline">

1
sub/enterprise/edit.vue

@ -451,7 +451,6 @@ export default {
this.prove.form.photo.splice(e.index, 1) this.prove.form.photo.splice(e.index, 1)
}, },
/** /**
* 选择图片并上传 * 选择图片并上传
* @param {Object} e * @param {Object} e

265
sub/invite/addEnterprise.vue

@ -6,14 +6,17 @@
企业名称 企业名称
</view> </view>
<view class="value"> <view class="value">
<input <uni-easyinput
class="input-value"
type="text" type="text"
placeholder-class="txt"
placeholder="请输入企业名称" placeholder="请输入企业名称"
v-model="form.enterpriseName" :inputBorder="false"
style="text-align: center"
:value="form.enterprisesName"
@blur="proofName" @blur="proofName"
/> :clearable="false"
:autoHeight="true"
ref="nameRef"
></uni-easyinput>
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
</view> </view>
@ -42,8 +45,8 @@
企业介绍 企业介绍
</view> </view>
<view class="value" @tap="goIntruduce"> <view class="value" @tap="goIntruduce">
<view class="input-textarea" v-if="form.introduce"> <view class="input-textarea" v-if="form.introduction">
{{ form.introduce }} {{ form.introduction }}
</view> </view>
<view class="input-textarea" style="color: #808080" v-else> <view class="input-textarea" style="color: #808080" v-else>
请输入企业介绍 请输入企业介绍
@ -84,8 +87,12 @@
企业标签 企业标签
</view> </view>
<view class="value" @tap="goTags"> <view class="value" @tap="goTags">
<view class="input-textarea" v-if="form.introduce"> <view class="input-textarea" v-if="Object.keys(form.tags).length">
{{ form.tags }} {{
Object.values(form.tags)
.map(tag => tag.name)
.join('、')
}}
</view> </view>
<view class="input-textarea" style="color: #808080" v-else> <view class="input-textarea" style="color: #808080" v-else>
请选择企业标签 请选择企业标签
@ -100,13 +107,14 @@
企业负责人 企业负责人
</view> </view>
<view class="value"> <view class="value">
<input <uni-easyinput
class="input-value"
type="text" type="text"
placeholder-class="txt"
placeholder="请输入企业负责人" placeholder="请输入企业负责人"
:inputBorder="false"
v-model="form.contactName" v-model="form.contactName"
/> :clearable="false"
:autoHeight="true"
></uni-easyinput>
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
</view> </view>
@ -117,14 +125,16 @@
负责人电话 负责人电话
</view> </view>
<view class="value"> <view class="value">
<input <uni-easyinput
class="input-value"
type="text" type="text"
placeholder-class="txt"
placeholder="请输入负责人电话" placeholder="请输入负责人电话"
v-model="form.environmentalContactPhone" :inputBorder="false"
@blur="proofName" style="text-align: center"
/> :value="form.environmentalContactPhone"
@blur="proofphone"
:clearable="false"
:autoHeight="true"
></uni-easyinput>
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
</view> </view>
@ -150,44 +160,41 @@
<u-icon name="plus-circle" color="#17C653" size="14"></u-icon> <u-icon name="plus-circle" color="#17C653" size="14"></u-icon>
<text style="line-height: 1rem">新增资质</text> <text style="line-height: 1rem">新增资质</text>
</view> </view>
</view>
<view <view
class="wd-flex" class="prove"
style="justify-content: space-between"
v-for="(p, index) in prove" v-for="(p, index) in prove"
:key="index" :key="index"
v-if="prove.length > 0" v-if="prove.length > 0"
@tap="editProve(p)"
> >
<image <image
src="@/static/images/enterprise/zz.png" :src="p.photo[0].url"
style="width: 90px; height: 70px" style="width: 90px; height: 70px"
mode="widthFix" mode="widthFix"
></image> ></image>
<view <view class="info">
style="flex: 1; justify-content: space-between"
class="wd-flex wd-flex-col"
>
<view class="wd-flex" style="gap: 8px; align-items: center"> <view class="wd-flex" style="gap: 8px; align-items: center">
<text class="label">资质名称</text> <text class="label">资质名称</text>
<view> <view class="wd-font-800">
{{ {{
$dict.echoDicValue( $dict.echoDicValue(
dictMap.enterprise_qua, dictMap.enterprise_qua,
prove.qualificationName.toString() p.qualificationName.toString()
) )
}} }}
</view> </view>
</view> </view>
<view class="wd-flex" style="gap: 8px; align-items: center"> <view class="wd-flex" style="gap: 8px; align-items: center">
<text class="label">资质编号</text> <text class="label">资质编号</text>
<view> <view class="wd-font-800">
{{ prove.enterpriseAuth }} {{ p.enterpriseAuth }}
</view> </view>
</view> </view>
<view class="wd-flex" style="gap: 8px; align-items: center"> <view class="wd-flex" style="gap: 8px; align-items: center">
<text class="label">资质到期</text> <text class="label">资质到期</text>
<view> <view class="wd-font-800">
{{ $util.formatDate(prove.expiryDate, 'YYYY/M/D') }} {{ $util.formatDate(p.expiryDate, 'YYYY/M/D') }}
</view>
</view> </view>
</view> </view>
</view> </view>
@ -196,7 +203,7 @@
<cs-bottom-wrapper> <cs-bottom-wrapper>
<view class="operation"> <view class="operation">
<button class="btn green">提交审核</button> <button class="btn green" @tap="submit">提交审核</button>
</view> </view>
</cs-bottom-wrapper> </cs-bottom-wrapper>
</view> </view>
@ -205,20 +212,28 @@
<script> <script>
import { uploadFile } from '@/api/system/file.js' import { uploadFile } from '@/api/system/file.js'
import { getDictBatchByType } from '@/api/system/dict.js' import { getDictBatchByType } from '@/api/system/dict.js'
import {
createEnterPrise,
vertifyName,
c
} from '@/api/enterprise/index.js'
export default { export default {
data() { data() {
return { return {
form: { form: {
enterpiseName: undefined, enterprisesName: '',
address: undefined, address: '',
gpsLocation: undefined, gpsLocation: '',
introduce: '', introduction: '',
photo: [], photo: [],
tags: {} tags: {},
environmentalContactPhone: '',
contactName: '',
id: ''
}, },
dictMap: {}, dictMap: {},
prove: [], prove: [],
inviteId: undefined inviteId: ''
} }
}, },
onLoad(res) { onLoad(res) {
@ -227,7 +242,7 @@ export default {
}, },
onShow() { onShow() {
uni.$on('enterpriseIntroduce', data => { uni.$on('enterpriseIntroduce', data => {
this.form.introduce = data.introduce this.form.introduction = data.introduce
}) })
uni.$on('enterpriseTag', data => { uni.$on('enterpriseTag', data => {
this.form.tags = data this.form.tags = data
@ -238,7 +253,39 @@ export default {
}, },
methods: { methods: {
proofName(v) { proofName(v) {
console.log(v.detail.value) if (v.detail.value == '') return
uni.showLoading({
title: '加载中'
})
vertifyName({
pageSize: -1,
pageNo: 1,
onlyEnterprisesName: v.detail.value
}).then(res => {
if (res.data.total > 0) {
uni.showToast({
title: '企业名已存在',
icon: 'none'
})
this.form.enterprisesName = ''
} else {
this.form.enterprisesName = v.detail.value
}
uni.hideLoading()
})
},
proofphone(v) {
//
const mobilePattern = /^1[3-9]\d{9}$/ //
if (!mobilePattern.test(v.detail.value)) {
uni.showToast({
title: '请输入有效的手机号',
icon: 'none'
})
this.form.environmentalContactPhone = ''
} else {
this.form.environmentalContactPhone = v.detail.value
}
}, },
/** /**
* 获取字典 * 获取字典
@ -261,12 +308,14 @@ export default {
}, },
goIntruduce() { goIntruduce() {
uni.navigateTo({ uni.navigateTo({
url: `/sub/invite/enterpriseIntroduce?introduce=${this.form.introduce}` url: `/sub/invite/enterpriseIntroduce?introduce=${this.form.introduction}`
}) })
}, },
goTags() { goTags() {
uni.navigateTo({ uni.navigateTo({
url: `/sub/invite/enterpriseTags?tags=${this.form.tags}` url: `/sub/invite/enterpriseTags?tags=${JSON.stringify(
this.form.tags
)}`
}) })
}, },
/** /**
@ -274,6 +323,9 @@ export default {
* @param {Object} e * @param {Object} e
*/ */
async addEnterprisePhoto(e) { async addEnterprisePhoto(e) {
uni.showLoading({
title: '上传中...'
})
e.file.forEach(p => { e.file.forEach(p => {
this.form.photo.push({ this.form.photo.push({
...p, ...p,
@ -296,6 +348,7 @@ export default {
}) })
).then(res => { ).then(res => {
this.form.photo = res this.form.photo = res
uni.hideLoading()
}) })
}, },
/** /**
@ -309,6 +362,73 @@ export default {
uni.navigateTo({ uni.navigateTo({
url: '/sub/invite/prove' url: '/sub/invite/prove'
}) })
},
editProve(prove) {
uni.navigateTo({
url: `/sub/invite/prove?prove=${JSON.stringify(prove)}`
})
},
async submit() {
const valide = await this.verifyForm()
if (!valide) return
const data = { ...this.form }
data.region = data.tags.qy.id
// data.type = data.tags.qy.id
data.tagIds = [data.tags.hy.id, data.tags.st.id, data.tags.wr.id]
data.fileIds = data.photo.map(i => i.id)
// data.userId = this.inviteId
data.userId = 162
data.qualis = this.prove.map(i => {
return {
...i,
expiryDate: new Date(i.expiryDate).getTime(),
files: i.photo.map(f => f.id)
}
})
if (this.form.id) {
} else {
console.log(data)
createEnterPrise(data).then(res => {
uni.showToast({
icon: 'none',
title: '操作成功'
})
uni.navigateBack()
})
}
},
async verifyForm() {
const msgMap = {
enterprisesName: '请输入企业名',
address: '请选择企业地址',
gpsLocation: '请选择企业地址',
introduction: '请填写企业介绍',
photo: '最少上传一张企业照片',
tags: '请选择企业标签',
prove: '请填写企业资质',
environmentalContactPhone: '请输入企业负责人',
contactName: '请输入负责人电话'
}
const msg = []
Object.keys(this.form).forEach(i => {
if (!this.form[i] && i != 'id') {
msg.push(msgMap[i])
}
if (typeof this.form[i] == 'Object' && this.form[i].length == 0) {
msg.push(msgMap[i])
}
})
if (this.prove.length == 0) {
msg.push(msgMap.prove)
}
if (msg.length > 0) {
uni.showToast({
icon: 'none',
title: msg.join('\n')
})
return false
}
return true
} }
} }
} }
@ -345,6 +465,12 @@ export default {
text-align: right; text-align: right;
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
cursor: auto;
display: block;
font-family: UICTFontTextStyleBody;
height: 1.4rem;
min-height: 1.4rem;
overflow: hidden;
} }
.input-textarea { .input-textarea {
flex: 1; flex: 1;
@ -352,15 +478,38 @@ export default {
overflow: hidden; overflow: hidden;
text-align: right; text-align: right;
max-height: 3rem; max-height: 3rem;
line-height: 1rem;
text-overflow: ellipsis; text-overflow: ellipsis;
-webkit-line-clamp: 3; -webkit-line-clamp: 3;
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
word-break: break-all; word-break: break-all;
cursor: auto;
display: block;
font-family: UICTFontTextStyleBody;
height: 1.4rem;
min-height: 1.4rem;
overflow: hidden;
} }
} }
} }
.prove {
border-radius: var(--Number-12px, 12px);
border: 1px solid var(--LightMode-Grey-Grey-100, #f9f9f9);
background: var(--LightMode-Light-Light, #fff);
display: flex;
padding: var(--Number-12px, 12px);
align-items: center;
gap: var(--Number-12px, 12px);
font-size: 28rpx;
flex-flow: row nowrap;
.info {
height: 72px;
display: flex;
flex-flow: column nowrap;
justify-content: space-between;
}
}
.upload-wrapper { .upload-wrapper {
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
@ -370,6 +519,32 @@ export default {
gap: 12px; gap: 12px;
} }
::v-deep .uni-easyinput__content-input {
flex: 1;
text-align: right;
white-space: nowrap;
text-overflow: ellipsis;
cursor: auto;
display: block;
font-family: UICTFontTextStyleBody;
height: 1.4rem;
min-height: 1.4rem;
overflow: hidden;
padding-right: 0;
}
::v-deep .uni-easyinput__placeholder-class {
flex: 1;
text-align: right;
white-space: nowrap;
text-overflow: ellipsis;
cursor: auto;
display: block;
font-family: UICTFontTextStyleBody;
height: 1.4rem;
min-height: 1.4rem;
font-size: 14px;
overflow: hidden;
}
.operation { .operation {
padding: 12px; padding: 12px;
display: flex; display: flex;

166
sub/invite/enterpriseTags.vue

@ -1,20 +1,72 @@
<template> <template>
<view class="view"> <view class="view">
<view class="block" v-for="(tag, index) in data" :key="index"> <view class="block">
<view style=""> <view>
<text style="color: #f8285a; margin-right: 4px">*</text> <text style="color: #f8285a; margin-right: 4px">*</text>
{{ tag.name }} 所在区域
</view> </view>
<view class="value" @click="showPicker(tag)"> <view class="value" @click="showPicker('qy')">
<view class="input-value" v-if="form[tag.name]"> <view class="input-value" v-if="form.qy">
{{ form[tag.name].name }} {{ form.qy.name }}
</view> </view>
<view class="input-value" style="color: #808080" v-else> <view class="input-value" style="color: #808080" v-else>
{{ `请选择${tag.name}` }} 请选择所在区域
</view> </view>
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
</view> </view>
<!-- 行业类型 -->
<view class="block">
<view>
<text style="color: #f8285a; margin-right: 4px">*</text>
行业类型
</view>
<view class="value" @click="showPicker('hy')">
<view class="input-value" v-if="form.hy">
{{ form.hy.name }}
</view>
<view class="input-value" style="color: #808080" v-else>
请选择行业类型
</view>
<u-icon name="arrow-right"></u-icon>
</view>
</view>
<!-- 省厅类型 -->
<view class="block">
<view>
<text style="color: #f8285a; margin-right: 4px">*</text>
所属生态
</view>
<view class="value" @click="showPicker('st')">
<view class="input-value" v-if="form.st">
{{ form.st.name }}
</view>
<view class="input-value" style="color: #808080" v-else>
请选择所属生态
</view>
<u-icon name="arrow-right"></u-icon>
</view>
</view>
<!-- 污染类型 -->
<view class="block">
<view>
<text style="color: #f8285a; margin-right: 4px">*</text>
污染类型
</view>
<view class="value" @click="showPicker('wr')">
<view class="input-value" v-if="form.wr">
{{ form.wr.name }}
</view>
<view class="input-value" style="color: #808080" v-else>
请选择污染类型
</view>
<u-icon name="arrow-right"></u-icon>
</view>
</view>
<u-picker <u-picker
:show="picker.show" :show="picker.show"
:columns="picker.data" :columns="picker.data"
@ -27,18 +79,25 @@
></u-picker> ></u-picker>
<cs-bottom-wrapper> <cs-bottom-wrapper>
<view class="operation"> <view class="operation">
<button class="btn green" @tap="submit">提交审核</button> <button class="btn green" @tap="submit">保存</button>
</view> </view>
</cs-bottom-wrapper> </cs-bottom-wrapper>
</view> </view>
</template> </template>
<script> <script>
import { getTagData, getDictBatchByType } from '@/api/system/dict.js'
export default { export default {
data() { data() {
return { return {
data: [], data: [],
form: {}, form: {
qy: '',
hy: '',
st: '',
wr: ''
},
dictMap: {},
// //
picker: { picker: {
show: false, show: false,
@ -49,35 +108,58 @@ export default {
} }
}, },
onLoad(res) { onLoad(res) {
this.getData() if (res.tags) {
this.form = JSON.parse(res.tags)
}
this.getDict()
}, },
methods: { methods: {
getData() { async getDict() {
this.data = new Array(5).fill(1).map((i, index) => { try {
this.form[`Tag${index + 1}`] = '' const tags = await getTagData(['qy', 'hy', 'st', 'wr'].join(','))
return { const dict = await getDictBatchByType({
name: `Tag${index + 1}`, type: ['enterprises_area'].join(',')
label: `标签${index + 1}`, })
value: index, if (tags.code === 0 && tags.data) {
children: new Array(10).fill(1).map((c, cIndex) => { let tagMap = {}
tags.data.forEach(t => {
//
const children = t.children.map(child => ({
name: child.tagName,
value: child.id
}))
tagMap[t.tagCode] = children
})
tagMap.qy = dict.data.enterprises_area.map(i => {
return { return {
name: `subTag${cIndex + 1}`, name: i.label,
value: cIndex * 10 value: i.value
} }
}) })
this.dictMap = tagMap
} }
} catch (error) {
uni.showToast({
title: '获取数据失败',
icon: 'none'
}) })
console.log(this.data) }
}, },
/** /**
* 选择器确认回调 * 选择器确认回调
* @param {Object} e * @param {Object} e
*/ */
confirmPicker(e) { confirmPicker(e) {
const { value } = e const { value } = e
this.form[this.picker.key] = value[0].value //
this.form[this.picker.key] = {
name: value[0].name,
id: value[0].value
}
this.closePicker() this.closePicker()
}, },
/** /**
* 关闭选择器 * 关闭选择器
*/ */
@ -88,26 +170,40 @@ export default {
data: [] data: []
} }
}, },
showPicker(tag) { showPicker(type) {
this.picker.data.push(tag.children) this.picker.data = [this.dictMap[type] || []]
this.picker.key = tag.name this.picker.key = type
this.picker.show = true this.picker.show = true
}, },
submit() { submit() {
const msg = Object.keys(this.form).filter(k => { //
if (this.form[k] == '') { if (
return this.data.find(d => d.name == k).label !this.form.qy ||
} !this.form.hy ||
}) !this.form.st ||
if (msg.length > 0) { !this.form.wr
) {
const emptyFields = []
if (!this.form.qy) emptyFields.push('所在区域')
if (!this.form.hy) emptyFields.push('行业类型')
if (!this.form.st) emptyFields.push('所属生态')
if (!this.form.wr) emptyFields.push('污染类型')
uni.showToast({ uni.showToast({
icon: 'none', title: `请选择${emptyFields.join('、')}`,
title: `${msg.join('\n')}不能为空` icon: 'none'
}) })
return return
} }
uni.$emit('enterpriseTag', this.form)
console.log(this.form) //
const submitData = {
qy: this.form.qy,
hy: this.form.hy,
st: this.form.st,
wr: this.form.wr
}
uni.$emit('enterpriseTag', submitData)
uni.navigateBack() uni.navigateBack()
} }
} }

46
sub/invite/index.vue

@ -1,6 +1,14 @@
<template> <template>
<view> <view class="view">
<scroll-view direction="vertical"></scroll-view> <view class="emty">
<image
src="/static/images/emty.png"
style="width: 79px; height: 79px"
mode="widthFix"
></image>
<text>暂无数据</text>
</view>
<cs-bottom-wrapper> <cs-bottom-wrapper>
<view class="operation"> <view class="operation">
<button class="btn green" @tap="addEnterprise">新增企业</button> <button class="btn green" @tap="addEnterprise">新增企业</button>
@ -10,19 +18,28 @@
</template> </template>
<script> <script>
import { vertifyName } from '@/api/enterprise/index.js'
export default { export default {
data() { data() {
return { return {
inviteId: '' inviteId: '',
list: []
} }
}, },
onLoad(res) { onLoad(res) {
console.log(res)
if (res.inviteId) { if (res.inviteId) {
this.inviteId = res.inviteId this.inviteId = res.inviteId
} }
this.getList()
}, },
methods: { methods: {
getList() {
vertifyName({ enterpriseUserId: this.$store.getters.userId }).then(
res => {
this.list = res.list
}
)
},
addEnterprise() { addEnterprise() {
uni.navigateTo({ uni.navigateTo({
url: `/sub/invite/addEnterprise?inviteId=${this.inviteId}` url: `/sub/invite/addEnterprise?inviteId=${this.inviteId}`
@ -33,6 +50,27 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.view {
padding: 12px;
display: flex;
flex-flow: column nowrap;
gap: 12px;
overflow: hidden;
overflow-y: scroll;
max-height: 100vh;
padding-bottom: 12vh;
}
.emty {
border-radius: 8px;
height: 550rpx;
display: flex;
flex-flow: column nowrap;
justify-content: center;
align-items: center;
background-color: #fff;
gap: 12px;
color: #99a1b7;
}
.operation { .operation {
padding: 12px; padding: 12px;
display: flex; display: flex;

31
sub/invite/prove.vue

@ -18,7 +18,7 @@
}} }}
</view> </view>
<view class="input-textarea" style="color: #808080" v-else> <view class="input-textarea" style="color: #808080" v-else>
输入资质名称 选择资质名称
</view> </view>
<u-icon name="arrow-right"></u-icon> <u-icon name="arrow-right"></u-icon>
</view> </view>
@ -151,8 +151,11 @@ export default {
}, },
onLoad(res) { onLoad(res) {
uni.setNavigationBarTitle({ uni.setNavigationBarTitle({
title: !res ? '编辑资质' : '新增资质' title: res.prove ? '编辑资质' : '新增资质'
}) })
if (res.prove) {
this.prove = JSON.parse(res.prove)
}
this.getDict() this.getDict()
}, },
onShow() {}, onShow() {},
@ -173,28 +176,22 @@ export default {
* @param {Object} e * @param {Object} e
*/ */
async addPhoto(e) { async addPhoto(e) {
e.file.forEach(p => { uni.showLoading({
title: '正在上传...'
})
this.prove.photo.push({ this.prove.photo.push({
...p, ...e.file,
status: 'uploading', status: 'uploading',
message: '上传中' message: '上传中'
}) })
}) uploadFile({ name: `file`, filePath: e.file.url }).then(res => {
// 使promise.all() this.prove.photo = []
await Promise.all( this.prove.photo.push({
this.prove.photo.map(async (p, i) => {
if (p.status == 'uploading') {
const res = await uploadFile({ name: `file`, filePath: p.url })
return {
...res.data, ...res.data,
status: 'success', status: 'success',
message: '' message: ''
}
}
return p
}) })
).then(res => { uni.hideLoading()
this.prove.photo = res
}) })
}, },
/** /**
@ -202,7 +199,7 @@ export default {
* @param {Object} e * @param {Object} e
*/ */
delPhoto(e) { delPhoto(e) {
this.prove.photo.splice(e.index, 1) this.prove.photo = []
}, },
/** /**
* 选择器确认回调 * 选择器确认回调

4
sub/owner/policy-detail.vue

@ -77,9 +77,9 @@ export default {
<style lang="scss"> <style lang="scss">
.policy-detail { .policy-detail {
min-height: 100vh; height: 100vh;
background: #fff; background: #fff;
overflow-y: auto;
.nav-bar { .nav-bar {
position: fixed; position: fixed;

2
sub/task/enforce.vue

@ -106,7 +106,7 @@ export default {
state: undefined, state: undefined,
inspectionsId: undefined, inspectionsId: undefined,
advice: undefined, advice: undefined,
photo: undefined, photo: [],
date: '' date: ''
}, },
showModel: false showModel: false

2
uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue

@ -419,7 +419,7 @@ export default {
const paddingRight = const paddingRight =
this.type === 'password' || this.clearable || this.prefixIcon this.type === 'password' || this.clearable || this.prefixIcon
? '' ? ''
: '10px' : '0px'
return obj2strStyle({ return obj2strStyle({
'padding-right': paddingRight, 'padding-right': paddingRight,
'padding-left': this.prefixIcon ? '' : '10px' 'padding-left': this.prefixIcon ? '' : '10px'

Loading…
Cancel
Save