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. 737
      pages/enterprise.vue
  5. 883
      pages/index.vue
  6. 13
      pages/owner.vue
  7. 4
      pages/task.vue
  8. 3
      sub/chat/index.vue
  9. 2
      sub/enterprise/detail.vue
  10. 115
      sub/enterprise/edit.vue
  11. 309
      sub/invite/addEnterprise.vue
  12. 168
      sub/invite/enterpriseTags.vue
  13. 46
      sub/invite/index.vue
  14. 43
      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"
}
}

737
pages/enterprise.vue

@ -1,398 +1,357 @@
<template> <template>
<cs-page <cs-page :selected="3" title="企业档案" isTab>
:selected="3" <view class="page-container" id="page">
title="企业档案" <van-search
isTab :value="queryParams.enterprisesName"
> placeholder="输入企业名称或类型查询"
<view @sreach="handleSearch"
class="page-container" @clear="resetQuery('enterpriseName')"
id="page" id="sreach"
> />
<van-search <van-dropdown-menu safe-area-tab-bar active-color="#17C653">
:value="queryParams.enterprisesName" <van-dropdown-item
placeholder="输入企业名称或类型查询" :value="queryParams.qy"
@sreach="handleSearch" :options="getDropdownOption('qy')"
@clear="resetQuery('enterpriseName')" @change="
id="sreach" v => {
/> querySelect(v, 'qy')
<van-dropdown-menu }
safe-area-tab-bar "
active-color="#17C653" />
> <van-dropdown-item
<van-dropdown-item :value="queryParams.hy"
:value="queryParams.qy" :options="getDropdownOption('hy')"
:options="getDropdownOption('enterprises_area')" @change="
@change=" v => {
v => { querySelect(v, 'hy')
querySelect(v, 'region') }
} "
" />
/> <van-dropdown-item
<van-dropdown-item :value="queryParams.st"
:value="queryParams.hy" :options="getDropdownOption('st')"
:options="getDropdownOption('hy')" @change="
@change=" v => {
v => { querySelect(v, 'st')
querySelect(v, 'hy') }
} "
" />
/> <van-dropdown-item
<van-dropdown-item :value="queryParams.wr"
:value="queryParams.st" :options="getDropdownOption('wr')"
:options="getDropdownOption('st')" @change="
@change=" v => {
v => { querySelect(v, 'wr')
querySelect(v, 'st') }
} "
" />
/> </van-dropdown-menu>
<van-dropdown-item <scroll-view
:value="queryParams.wr" scroll-y="true"
:options="getDropdownOption('wr')" :refresher-enabled="true"
@change=" @refresherrefresh="refresherrefresh"
v => { :refresher-triggered="refresherTriggered"
querySelect(v, 'wr') @refresherpulling="refresherpulling"
} @scrolltolower="loadMore"
" class="list"
/> :style="{ height: `${listHeight - sreachHeight}px` }"
</van-dropdown-menu> >
<scroll-view <view
scroll-y="true" v-for="enterprise in list"
:refresher-enabled="true" :key="enterprise.id"
@refresherrefresh="refresherrefresh" class="wd-flex wd-items-center enterprise"
:refresher-triggered="refresherTriggered" @click="goDetail(enterprise.id)"
@refresherpulling="refresherpulling" >
@scrolltolower="loadMore" <u-avatar
class="list" :src="enterprise.files[0].url"
:style="{ maxHeight: `${listHeight - sreachHeight}px` }" shape="square"
> size="64"
<view ></u-avatar>
v-for="enterprise in list" <view class="wd-flex wd-flex-col" style="gap: 4px">
:key="enterprise.id" <text class="wd-font-800 wd-text-15">
class="wd-flex wd-items-center enterprise" {{ enterprise.enterprisesName }}
@click="goDetail(enterprise.id)" </text>
> <view class="wd-flex wd-pb-8px">
<u-avatar <u-icon name="map" size="14" color="#17C653"></u-icon>
:src="enterprise.files[0].url" <text class="address wd-text-12" style="margin-left: 4px">
shape="square" {{ enterprise.address }}
size="64" </text>
></u-avatar> </view>
<view <view class="tagList">
class="wd-flex wd-flex-col" <view class="tag">
style="gap: 4px" {{
> $dict.echoDicValue(
<text class="wd-font-800 wd-text-15"> dictMap.enterprises_type,
{{ enterprise.enterprisesName }} enterprise.type
</text> )
<view class="wd-flex wd-pb-8px"> }}
<u-icon </view>
name="map" <view class="tag">
size="14" {{
color="#17C653" $dict.echoDicValue(
></u-icon> dictMap.enterprises_area,
<text enterprise.region
class="address wd-text-12" )
style="margin-left: 4px" }}
> </view>
{{ enterprise.address }} <view
</text> class="tag"
</view> v-for="(tag, index) in enterprise.tagList"
<view class="tagList"> :key="index"
<view class="tag"> >
{{ {{ tag }}
$dict.echoDicValue( </view>
dictMap.enterprises_type, </view>
enterprise.type </view>
) <view
}} class="audit"
</view> v-if="!enterprise.isAudit"
<view class="tag"> style="color: #f6b100; background-color: #fff8dd"
{{ >
$dict.echoDicValue( 待审核
dictMap.enterprises_area, </view>
enterprise.region </view>
) <u-loadmore :status="load" marginTop="12" marginBottom="12" />
}} </scroll-view>
</view> </view>
<view </cs-page>
class="tag"
v-for="(tag, index) in enterprise.tagList"
:key="index"
>
{{ tag }}
</view>
</view>
</view>
<view
class="audit"
v-if="!enterprise.isAudit"
style="color: #f6b100; background-color: #fff8dd"
>
待审核
</view>
</view>
<u-loadmore
:status="load"
marginTop="12"
marginBottom="12"
/>
</scroll-view>
</view>
</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: {
pageSize: 10, pageSize: 10,
pageNo: 1, pageNo: 1,
qy: '', qy: '',
hy: '', hy: '',
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() {
await this.getDict() await this.getDict()
}, },
onShow() { onShow() {
this.queryEnterprise() this.queryEnterprise()
}, },
onReady() { onReady() {
this.getPageHeight() this.getPageHeight()
}, },
methods: { methods: {
getPageHeight() { getPageHeight() {
const query = uni.createSelectorQuery().in(this) const query = uni.createSelectorQuery().in(this)
query query
.select('#sreach') .select('#sreach')
.boundingClientRect(data => { .boundingClientRect(data => {
this.sreachHeight = data.height this.sreachHeight = data.height
}) })
.exec() .exec()
query query
.select('#page') .select('#page')
.boundingClientRect(data => { .boundingClientRect(data => {
this.listHeight = data.height - 35 this.listHeight = data.height - 35 - 25
}) })
.exec() .exec()
}, },
async getList() { async getList() {
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)
this.list.push(...res.data.list) this.list.push(...res.data.list)
this.load = 'loadmore' this.load = 'loadmore'
if (this.list.length == res.data.total) { if (this.list.length == res.data.total) {
this.load = 'nomore' this.load = 'nomore'
} }
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({
) type: [
const dict = await getDictBatchByType({ 'user_audit_type',
type: [ 'enterprises_type',
'user_audit_type', 'enterprises_area'
'enterprises_type', ].join(',')
'enterprises_area', })
].join(','), let tagMap = {}
}) tags.data.forEach(t => {
let tagMap = {} tagMap[t.tagCode] = t.children
tags.data.forEach(t => { })
tagMap[t.tagCode] = t.children this.dictMap = {
}) ...tagMap,
console.log(tagMap) ...dict.data
this.dictMap = { }
...tagMap, },
...dict.data, getDropdownOption(key) {
} if (!this.dictMap[key]) return []
}, const keyMap = {
getDropdownOption(key) { qy: '区域',
if (!this.dictMap[key]) return [] hy: '行业',
const keyMap = { st: '生态',
enterprises_area: '区域', wr: '污染'
hy: '行业', }
st: '生态', const data = this.dictMap[key].map(d => {
wr: '污染', return {
} value: d.id,
if (['enterprises_area'].includes(key)) { text: d.tagName
const data = this.dictMap[key].map(d => { }
return { })
value: d.value, data.push({
text: d.label, value: '',
} text: keyMap[key]
}) })
data.push({ return data
value: '', },
text: keyMap[key], querySelect(v, key) {
}) this.queryParams[key] = v.detail
return data this.queryEnterprise()
} },
const data = this.dictMap[key].map(d => { handleSearch(e) {
return { this.queryParams.pageNum = 1 //
value: d.id, this.queryParams.name = e.detail //
text: d.tagName, this.getPolicyList()
} },
}) queryEnterprise() {
data.push({ this.queryParams.pageNo = 1
value: '', this.load = 'loadmore'
text: keyMap[key], this.list = []
}) this.queryParams.tagList = [
this.queryParams.qy,
return data this.queryParams.hy,
}, this.queryParams.st,
querySelect(v, key) { this.queryParams.wr
this.queryParams[key] = v.detail ]
this.queryEnterprise() .filter(i => i != '')
}, .join()
handleSearch(e) { this.getList()
this.queryParams.pageNum = 1 // },
this.queryParams.name = e.detail // loadMore() {
this.getPolicyList() if (this.load == 'nomore') {
}, uni.showToast({
queryEnterprise() { title: '没有更多了',
this.queryParams.pageNo = 1 icon: 'none'
this.load = 'loadmore' })
this.list = [] return
this.queryParams.tagList = [ }
this.queryParams.qy, this.queryParams.pageNo++
this.queryParams.hy, this.getList()
this.queryParams.st, },
this.queryParams.wr, refresherpulling() {
] const that = this
.filter(i => i != '') if (!this.refresherTriggered) {
.join() this.refresherTriggered = true
this.getList() setTimeout(() => {
}, that.refresherTriggered = false
loadMore() { }, 1000)
if (this.load == 'nomore') { }
uni.showToast({ },
title: '没有更多了', refresherrefresh() {
icon: 'none', this.resetQuery()
}) },
return async resetQuery() {
} this.queryParams = {
this.queryParams.pageNo++ pageSize: 10,
this.getList() pageNo: 1,
}, qy: '',
refresherpulling() { hy: '',
const that = this st: '',
if (!this.refresherTriggered) { wr: '',
this.refresherTriggered = true enterprisesName: '',
setTimeout(() => { tagList: ''
that.refresherTriggered = false }
}, 1000) await this.queryEnterprise()
} },
}, goDetail(id) {
refresherrefresh() { uni.navigateTo({
this.resetQuery() url: `/sub/enterprise/detail?id=${id}`
}, })
async resetQuery() { }
this.queryParams = { }
pageSize: 10, }
pageNo: 1,
qy: '',
hy: '',
st: '',
wr: '',
enterprisesName: '',
tagList: '',
}
await this.queryEnterprise()
},
goDetail(id) {
uni.navigateTo({
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;
gap: 12px; gap: 12px;
margin-top: 12px; margin-top: 12px;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
font-size: 12px; font-size: 12px;
.address { .address {
color: $uni-text-color-grey; color: $uni-text-color-grey;
} }
&:active { &:active {
background-color: $cs-color-touch; background-color: $cs-color-touch;
} }
.tagList { .tagList {
margin-top: 8px; margin-top: 8px;
display: flex; display: flex;
gap: 4px; gap: 4px;
color: $uni-text-color-grey; color: $uni-text-color-grey;
display: flex; display: flex;
.tag { .tag {
font-size: 12px; font-size: 12px;
display: flex; display: flex;
padding: 2px 6px; padding: 2px 6px;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
border-radius: 2px; border-radius: 2px;
background: #f9f9f9; background: #f9f9f9;
} }
} }
.audit { .audit {
position: absolute; position: absolute;
right: -19px; right: -19px;
top: 6px; top: 6px;
transform: rotateZ(45deg); transform: rotateZ(45deg);
transform-origin: 50% 50%; transform-origin: 50% 50%;
padding: 4px 20px; padding: 4px 20px;
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>

883
pages/index.vue

@ -1,438 +1,461 @@
<template> <template>
<cs-page :selected="0" title="智慧生态" isTab> <cs-page
<view class="view-container"> :selected="0"
<van-dropdown-menu safe-area-tab-bar active-color="#17C653"> title="智慧生态"
<van-dropdown-item isTab
:value="queryParams.deptId" >
:options="getDropdownOption('dept')" <view class="view-container">
@change=" <van-dropdown-menu
v => { safe-area-tab-bar
querySelect(v, 'deptId') active-color="#17C653"
} >
" <van-dropdown-item
/> :value="queryParams.deptId"
<van-dropdown-item :options="dropOption.dept"
:value="queryParams.selectWeek" use-before-toggle
:options="getDropdownOption('select_week')" @before-toggle="dorpToggle"
@change=" @change="
v => { v => {
querySelect(v, 'selectWeek') querySelect(v, 'deptId')
} }
" "
/> />
</van-dropdown-menu> <van-dropdown-item
<scroll-view :value="queryParams.selectWeek"
:scroll-y="true" :options="dropOption.select_week"
:style="{ maxHeight: `${viewHeigth}px` }" @change="
class="view" v => {
:refresher-enabled="true" querySelect(v, 'selectWeek')
@refresherrefresh="refresherrefresh" }
:refresher-triggered="refresherTriggered" "
@refresherpulling="refresherpulling" />
> </van-dropdown-menu>
<view class="box row-1"> <scroll-view
<view class="wd-flex" style="justify-content: space-around"> :scroll-y="true"
<view :style="{ maxHeight: `${viewHeigth}px` }"
class="wd-flex wd-flex-col wd-flex-center" class="view"
style="gap: 4px" :refresher-enabled="true"
> @refresherrefresh="refresherrefresh"
<u-count-to :refresher-triggered="refresherTriggered"
:start-val="0" @refresherpulling="refresherpulling"
:end-val="detail.taskCount" >
bold <view class="box row-1">
font-size="24" <view
color="#071437" class="wd-flex"
></u-count-to> style="justify-content: space-around"
<view class="">任务数量</view> >
</view> <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" >
> <u-count-to
<u-count-to :start-val="0"
:start-val="0" :end-val="detail.taskCount"
:end-val="detail.inspectionsCount" bold
bold font-size="24"
font-size="24" color="#071437"
color="#071437" ></u-count-to>
></u-count-to> <view class="">任务数量</view>
<view class="">执法记录</view> </view>
</view> <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" >
> <u-count-to
<u-count-to :start-val="0"
:start-val="0" :end-val="detail.inspectionsCount"
:end-val="detail.enterpriseCount" bold
bold font-size="24"
font-size="24" color="#071437"
color="#071437" ></u-count-to>
></u-count-to> <view class="">执法记录</view>
<view class="">企业数量</view> </view>
</view> <view
</view> class="wd-flex wd-flex-col wd-flex-center"
<qiun-data-charts style="gap: 4px"
type="ring" >
:opts="opts" <u-count-to
:chartData="chartData" :start-val="0"
:canvas2d="true" :end-val="detail.enterpriseCount"
style="height: 144px" bold
></qiun-data-charts> font-size="24"
<view class="wd-flex" style="gap: 12px; flex-wrap: wrap"> color="#071437"
<view ></u-count-to>
class="wd-flex wd-flex-col wd-flex-center" <view class="">企业数量</view>
v-for="item in detail.legendData" </view>
:key="item" </view>
style=" <qiun-data-charts
border: 1px solid #f9f9f9; type="ring"
width: calc(100% / 3 - 8px); :opts="opts"
padding: 12px; :chartData="chartData"
gap: 4px; :canvas2d="true"
border-radius: 4px; style="height: 144px"
" ></qiun-data-charts>
> <view
<view class="wd-flex wd-flex-col" style="gap: 4px"> class="wd-flex"
<view style="gap: 12px; flex-wrap: wrap"
class="wd-flex" >
style="align-items: center; gap: 4px" <view
> class="wd-flex wd-flex-col wd-flex-center"
<view v-for="item in detail.legendData"
:style="{ :key="item"
width: '8px', style="
height: '4px', border: 1px solid #f9f9f9;
borderRadius: '4px', width: calc(100% / 3 - 8px);
backgroundColor: item.color padding: 12px;
}" gap: 4px;
></view> border-radius: 4px;
<view class="">{{ item.name }}</view> "
</view> >
<view class="wd-flex wd-flex-center"> <view
<u-count-to class="wd-flex wd-flex-col"
:start-val="0" style="gap: 4px"
:end-val="Number(item.value)" >
bold <view
font-size="16" class="wd-flex"
color="#071437" style="align-items: center; gap: 4px"
></u-count-to> >
% <view
</view> :style="{
</view> width: '8px',
</view> height: '4px',
</view> borderRadius: '4px',
</view> backgroundColor: item.color,
<view class="box row-1"> }"
<view ></view>
class="wd-flex" <view class="">{{ item.name }}</view>
style="margin-top: 12px; justify-content: center" </view>
> <view class="wd-flex wd-flex-center">
<view <u-count-to
style=" :start-val="0"
background-color: #f9f9f9; :end-val="Number(item.value)"
display: inline-flex; bold
padding: 4px; font-size="16"
" color="#071437"
> ></u-count-to>
<view %
class="tab" </view>
v-for="(item, index) in tabs" </view>
:key="index" </view>
:style="{ </view>
'--index': tabs.findIndex( </view>
i => i.type == queryParams.type <view class="box row-1">
) <view
}" class="wd-flex"
@tap="changeTab(item.type)" style="margin-top: 12px; justify-content: center"
> >
<view <view
class="name" style="
:style="{ background-color: #f9f9f9;
color: display: inline-flex;
queryParams.type == item.type ? '#071437' : '#78829d' padding: 4px;
}" "
> >
{{ item.name }} <view
</view> class="tab"
</view> v-for="(item, index) in tabs"
</view> :key="index"
</view> :style="{
<view class=""> '--index': tabs.findIndex(i => i.type == queryParams.type),
<view }"
v-for="(item, index) in list" @tap="changeTab(item.type)"
:key="index" >
class="wd-flex" <view
style="justify-content: space-between; padding: 12px" class="name"
> :style="{
<view class="wd-font-800">{{ item.name }}</view> color:
<view class="wd-font-800" style="color: #ff6f1e"> queryParams.type == item.type ? '#071437' : '#78829d',
<view> }"
<u-count-to >
:start-val="0" {{ item.name }}
:end-val="item.count" </view>
bold </view>
font-size="14" </view>
color="#FF6F1E" </view>
></u-count-to> <view style="min-height: 220px">
<text>{{ queryParams.type == 1 ? '天' : '次' }}</text> <view
</view> v-for="(item, index) in list"
</view> :key="index"
</view> class="wd-flex"
</view> style="justify-content: space-between; padding: 12px"
</view> >
</scroll-view> <view class="wd-font-800">{{ item.name }}</view>
</view> <view
</cs-page> class="wd-font-800"
style="color: #ff6f1e"
>
<view>
<u-count-to
:start-val="0"
:end-val="item.count"
bold
font-size="14"
color="#FF6F1E"
></u-count-to>
<text>{{ queryParams.type == 1 ? '天' : '次' }}</text>
</view>
</view>
</view>
</view>
</view>
</scroll-view>
</view>
</cs-page>
</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: {},
chartData: {}, chartData: {},
viewHeigth: 0, viewHeigth: 0,
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 () { },
await uni.hideTabBar() onLoad: async function () {
uni.hideTabBar({ await uni.hideTabBar()
animation: false uni.hideTabBar({
}) animation: false,
this.getDict() })
this.init() this.getDict()
}, if (!this.$roles.checkRole(['director'])) {
onReady() { this.queryParams.deptId = this.$store.getters.deptId
this.$nextTick(() => { }
this.getPageHeight() this.init()
}) },
}, onReady() {
onShow() { this.$nextTick(() => {
this.init() this.getPageHeight()
}, })
methods: { },
getPageHeight() { onShow() {
const query = uni.createSelectorQuery().in(this) this.init()
query },
.select('.view-container') methods: {
.boundingClientRect(data => { getPageHeight() {
this.viewHeigth = data.height - 35 - 25 const query = uni.createSelectorQuery().in(this)
}) query
.exec() .select('.view-container')
}, .boundingClientRect(data => {
async getDict() { this.viewHeigth = data.height - 35 - 25
const dict = await getDictBatchByType({ })
type: ['select_week'].join(',') .exec()
}) },
const dept = await getDeptTree() async getDict() {
this.dictMap = { const dict = await getDictBatchByType({
...dict.data, type: ['select_week'].join(','),
dept: dept.data })
} const dept = await getDeptTree()
}, this.dropOption.dept = [
getDropdownOption(key) { ...dept.data.map(i => {
if (!this.dictMap[key]) return [] return {
const keyMap = { value: i.id,
select_week: '周期', text: i.name,
dept: '部门' }
} }),
if (key == 'dept') { {
const data = [ value: '',
...this.dictMap[key].map(d => { text: '全部',
return { },
value: d.id, ]
text: d.name this.dropOption.select_week = [
} ...dict.data.select_week.map(i => {
}) return {
] value: i.value,
if (!this.$roles.checkRole(['director'])) { text: i.label,
this.queryParams.deptId = this.$store.getters.deptId }
return [...data] }),
} {
return [...data, { value: '', text: keyMap[key] }] value: '',
} text: '全部',
return [ },
...this.dictMap[key].map(d => { ]
return { },
value: d.value, async init() {
text: d.label // if (!this.$roles.checkRole(['director'])) {
} // this.queryParams.deptId = this.$store.getters.deptId
}), // }
{ value: '', text: keyMap[key] } const res = await HomeApi.getPieData(this.queryParams)
] this.detail = res.data
}, let curIndex = 0
async init() { const data = this.detail.completionRate.map((item, index) => {
if (!this.$roles.checkRole(['director'])) { const res = { ...item, color: this.color[curIndex] }
this.queryParams.deptId = this.$store.getters.deptId curIndex > this.color.length ? 0 : curIndex++
} return res
const res = await HomeApi.getPieData(this.queryParams) })
this.detail = res.data this.detail.legendData = data
let curIndex = 0 this.setPieData(data, this.detail.taskCompletionRate)
const data = this.detail.completionRate.map((item, index) => { this.getList()
const res = { ...item, color: this.color[curIndex] } },
curIndex > this.color.length ? 0 : curIndex++ async getList() {
return res const res = await HomeApi.getListData(this.queryParams)
}) this.list = res.data
this.detail.legendData = data },
this.setPieData(data, this.detail.taskCompletionRate) setPieData(data, max) {
this.getList() const pieData = data.map(i => {
}, return {
async getList() { name: i.name,
const res = await HomeApi.getListData(this.queryParams) value: Number(i.pieValue),
this.list = res.data }
}, })
setPieData(data, max) { if (Number(max) < 100) {
const pieData = data.map(i => { pieData.push({
return { name: '',
name: i.name, value: 100 - Number(max),
value: Number(i.pieValue) color: '#fff',
} })
}) }
if (Number(max) < 100) { this.opts = {
pieData.push({ legend: {
name: '', show: false,
value: 100 - Number(max), },
color: '#fff' color: this.color,
}) rotate: false,
} rotateLock: false,
this.opts = { padding: [0, 0, 0, 0],
legend: { dataLabel: false,
show: false enableScroll: false,
}, title: {
color: this.color, name: `${max}%`,
rotate: false, fontSize: 24,
rotateLock: false, color: '#071437',
padding: [0, 0, 0, 0], fontWeight: 'bold',
dataLabel: false, },
enableScroll: false, subtitle: {
title: { name: '完成率',
name: `${max}%`, fontSize: 14,
fontSize: 24, color: '#78829D',
color: '#071437', },
fontWeight: 'bold' extra: {
}, ring: {
subtitle: { ringWidth: 15,
name: '完成率', activeOpacity: 0.5,
fontSize: 14, offsetAngle: 90,
color: '#78829D' labelWidth: 15,
}, border: false,
extra: { borderColor: '#FFFFFF',
ring: { linearType: 'none',
ringWidth: 15, },
activeOpacity: 0.5, },
offsetAngle: 90, }
labelWidth: 15, this.chartData = {
border: false, series: [
borderColor: '#FFFFFF', {
linearType: 'none' data: pieData,
} },
} ],
} }
this.chartData = { },
series: [ sectionChange(index) {
{ this.queryParams.enterprise = index
data: pieData },
} querySelect(v, key) {
] this.queryParams[key] = v.detail
} this.init()
}, },
sectionChange(index) { changeTab(type) {
this.queryParams.enterprise = index this.queryParams.type = type
}, this.getList()
querySelect(v, key) { },
this.queryParams[key] = v.detail refresherpulling() {
this.init() const that = this
}, if (!this.refresherTriggered) {
changeTab(type) { this.refresherTriggered = true
this.queryParams.type = type setTimeout(() => {
this.getList() that.refresherTriggered = false
}, }, 1000)
refresherpulling() { }
const that = this },
if (!this.refresherTriggered) { refresherrefresh() {
this.refresherTriggered = true this.init()
setTimeout(() => { },
that.refresherTriggered = false dorpToggle(e) {
}, 1000) if (!this.$roles.checkRole(['director'])) {
} uni.showToast({
}, icon: 'none',
refresherrefresh() { title: '暂无权限',
this.init() })
} 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;
gap: 12px; gap: 12px;
flex-flow: column nowrap; flex-flow: column nowrap;
.box { .box {
padding: 12px; padding: 12px;
background-color: #fff; background-color: #fff;
border: 1px solid #f9f9f9; border: 1px solid #f9f9f9;
border-radius: 12px; border-radius: 12px;
margin-top: 12px; margin-top: 12px;
&:last-child { &:last-child {
margin-bottom: 12px; margin-bottom: 12px;
} }
} }
.row-1 { .row-1 {
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
gap: 12px; gap: 12px;
} }
.tab { .tab {
position: relative; position: relative;
padding: 4px 16px; padding: 4px 16px;
.name { .name {
z-index: 2; z-index: 2;
position: inherit; position: inherit;
font-weight: bold; font-weight: bold;
} }
&:first-child::before { &:first-child::before {
content: ''; content: '';
position: absolute; position: absolute;
inset: 0; inset: 0;
background-color: #fff; background-color: #fff;
border-radius: 2px; border-radius: 2px;
transform: translateX(calc(var(--index) * 100%)); transform: translateX(calc(var(--index) * 100%));
transition: 0.2s all; transition: 0.2s all;
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>

13
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"
@ -163,7 +166,7 @@ export default {
pageNum: 1, pageNum: 1,
pageSize: 10 pageSize: 10
}).then(res => { }).then(res => {
this.policyTotal = res.data.total this.policyTotal = res.data.total
}) })
}, },
openSubMessage() { openSubMessage() {

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">

115
sub/enterprise/edit.vue

@ -188,22 +188,22 @@
<text class="placeholder" v-else>请选择到期日期</text> <text class="placeholder" v-else>请选择到期日期</text>
<u-icon slot="right" name="arrow-right"></u-icon> <u-icon slot="right" name="arrow-right"></u-icon>
</u-form-item> </u-form-item>
<!-- 企业照片 --> <!-- 企业照片 -->
<u-form-item <u-form-item
label="资质照片" label="资质照片"
prop="photo" prop="photo"
borderBottom borderBottom
labelPosition="top" labelPosition="top"
labelWidth="80" labelWidth="80"
> >
<u-upload <u-upload
:fileList="prove.form.photo" :fileList="prove.form.photo"
@afterRead="addEnterpriseProvePhoto" @afterRead="addEnterpriseProvePhoto"
@delete="delEnterpriseProvePhoto" @delete="delEnterpriseProvePhoto"
multiple multiple
:maxCount="3" :maxCount="3"
></u-upload> ></u-upload>
</u-form-item> </u-form-item>
<u-form-item <u-form-item
label="描述" label="描述"
prop="qualificationDescription" prop="qualificationDescription"
@ -386,21 +386,21 @@ export default {
qualificationDescription: '', qualificationDescription: '',
handleDate: '', handleDate: '',
enterpriseAuth: '', enterpriseAuth: '',
photo: [] photo: []
} }
} }
} }
}, },
onLoad(res) { onLoad(res) {
if (res.invateId) { if (res.invateId) {
console.log(res) console.log(res)
this.invateId = res.invateId this.invateId = res.invateId
} }
this.getDict() this.getDict()
}, },
onReady() { onReady() {
this.step.active == 0 && this.step.active == 0 &&
this.$refs.infoFormRef.setRules(this.info.rules) this.$refs.infoFormRef.setRules(this.info.rules)
this.initProveList() this.initProveList()
}, },
methods: { methods: {
@ -450,44 +450,43 @@ export default {
delEnterpriseProvePhoto(e) { delEnterpriseProvePhoto(e) {
this.prove.form.photo.splice(e.index, 1) this.prove.form.photo.splice(e.index, 1)
}, },
/**
/** * 选择图片并上传
* 选择图片并上传 * @param {Object} e
* @param {Object} e */
*/ async addEnterprisePhoto(e) {
async addEnterprisePhoto(e) { this.info.form.photo = e.file.map(p => {
this.info.form.photo = e.file.map(p => { console.log(p.url)
console.log(p.url) return {
return { ...p,
...p, status: 'uploading',
status: 'uploading', message: '上传中'
message: '上传中' }
} })
}) // 使promise.all()
// 使promise.all() await Promise.all(
await Promise.all( this.info.form.photo.map(async (p, i) => {
this.info.form.photo.map(async (p, i) => { const res = await uploadFile({ name: `file`, filePath: p.url })
const res = await uploadFile({ name: `file`, filePath: p.url }) return {
return { ...res.data,
...res.data, status: 'success',
status: 'success', message: ''
message: '' }
} })
}) ).then(res => {
).then(res => { this.info.form.photo = res
this.info.form.photo = res console.log('pthoto3', this.info.form.photo)
console.log('pthoto3', this.info.form.photo) })
}) },
}, /**
/** * 删除图片
* 删除图片 * @param {Object} e
* @param {Object} e */
*/ delEnterprisePhoto(e) {
delEnterprisePhoto(e) { this.info.form.photo.splice(e.index, 1)
this.info.form.photo.splice(e.index, 1) },
},
/** /**
* 弹出选择器 * 弹出选择器
* @param {String} type 字典类型 * @param {String} type 字典类型
@ -629,7 +628,7 @@ export default {
let prove let prove
let data = this.prove.form let data = this.prove.form
data.enterpriseId = this.info.form.id data.enterpriseId = this.info.form.id
data.files = this.prove.form.photo.map(p => p.id) data.files = this.prove.form.photo.map(p => p.id)
if (data.id) { if (data.id) {
prove = await updateProve(data) prove = await updateProve(data)
} else { } else {

309
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>
class="wd-flex" <view
style="justify-content: space-between" class="prove"
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 >
src="@/static/images/enterprise/zz.png" <image
style="width: 90px; height: 70px" :src="p.photo[0].url"
mode="widthFix" style="width: 90px; height: 70px"
></image> mode="widthFix"
<view ></image>
style="flex: 1; justify-content: space-between" <view class="info">
class="wd-flex wd-flex-col" <view class="wd-flex" style="gap: 8px; align-items: center">
> <text class="label">资质名称</text>
<view class="wd-flex" style="gap: 8px; align-items: center"> <view class="wd-font-800">
<text class="label">资质名称</text> {{
<view> $dict.echoDicValue(
{{ dictMap.enterprise_qua,
$dict.echoDicValue( p.qualificationName.toString()
dictMap.enterprise_qua, )
prove.qualificationName.toString() }}
)
}}
</view>
</view> </view>
<view class="wd-flex" style="gap: 8px; align-items: center"> </view>
<text class="label">资质编号</text> <view class="wd-flex" style="gap: 8px; align-items: center">
<view> <text class="label">资质编号</text>
{{ prove.enterpriseAuth }} <view class="wd-font-800">
</view> {{ p.enterpriseAuth }}
</view> </view>
<view class="wd-flex" style="gap: 8px; align-items: center"> </view>
<text class="label">资质到期</text> <view class="wd-flex" style="gap: 8px; align-items: center">
<view> <text class="label">资质到期</text>
{{ $util.formatDate(prove.expiryDate, 'YYYY/M/D') }} <view class="wd-font-800">
</view> {{ $util.formatDate(p.expiryDate, 'YYYY/M/D') }}
</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;

168
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) {
console.log(this.data) uni.showToast({
title: '获取数据失败',
icon: 'none'
})
}
}, },
/** /**
* 选择器确认回调 * 选择器确认回调
* @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;

43
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({
this.prove.photo.push({ title: '正在上传...'
...p,
status: 'uploading',
message: '上传中'
})
}) })
// 使promise.all() this.prove.photo.push({
await Promise.all( ...e.file,
this.prove.photo.map(async (p, i) => { status: 'uploading',
if (p.status == 'uploading') { message: '上传中'
const res = await uploadFile({ name: `file`, filePath: p.url }) })
return { uploadFile({ name: `file`, filePath: e.file.url }).then(res => {
...res.data, this.prove.photo = []
status: 'success', this.prove.photo.push({
message: '' ...res.data,
} status: 'success',
} 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