You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
439 lines
11 KiB
439 lines
11 KiB
2 months ago
|
<template>
|
||
2 months ago
|
<cs-page :selected="0" title="智慧生态" isTab>
|
||
2 months ago
|
<view class="view-container">
|
||
2 months ago
|
<van-dropdown-menu safe-area-tab-bar active-color="#17C653">
|
||
|
<van-dropdown-item
|
||
2 months ago
|
:value="queryParams.deptId"
|
||
2 months ago
|
:options="getDropdownOption('dept')"
|
||
|
@change="
|
||
|
v => {
|
||
2 months ago
|
querySelect(v, 'deptId')
|
||
2 months ago
|
}
|
||
|
"
|
||
|
/>
|
||
|
<van-dropdown-item
|
||
2 months ago
|
:value="queryParams.selectWeek"
|
||
2 months ago
|
:options="getDropdownOption('select_week')"
|
||
|
@change="
|
||
|
v => {
|
||
2 months ago
|
querySelect(v, 'selectWeek')
|
||
2 months ago
|
}
|
||
|
"
|
||
|
/>
|
||
|
</van-dropdown-menu>
|
||
|
<scroll-view
|
||
2 months ago
|
:scroll-y="true"
|
||
2 months ago
|
:style="{ maxHeight: `${viewHeigth}px` }"
|
||
2 months ago
|
class="view"
|
||
1 month ago
|
:refresher-enabled="true"
|
||
|
@refresherrefresh="refresherrefresh"
|
||
|
:refresher-triggered="refresherTriggered"
|
||
|
@refresherpulling="refresherpulling"
|
||
2 months ago
|
>
|
||
2 months ago
|
<view class="box row-1">
|
||
|
<view class="wd-flex" style="justify-content: space-around">
|
||
|
<view
|
||
|
class="wd-flex wd-flex-col wd-flex-center"
|
||
|
style="gap: 4px"
|
||
|
>
|
||
|
<u-count-to
|
||
|
:start-val="0"
|
||
2 months ago
|
:end-val="detail.taskCount"
|
||
|
bold
|
||
|
font-size="24"
|
||
|
color="#071437"
|
||
|
></u-count-to>
|
||
|
<view class="">任务数量</view>
|
||
|
</view>
|
||
|
<view
|
||
|
class="wd-flex wd-flex-col wd-flex-center"
|
||
|
style="gap: 4px"
|
||
|
>
|
||
|
<u-count-to
|
||
|
:start-val="0"
|
||
|
:end-val="detail.inspectionsCount"
|
||
|
bold
|
||
|
font-size="24"
|
||
|
color="#071437"
|
||
|
></u-count-to>
|
||
|
<view class="">执法记录</view>
|
||
|
</view>
|
||
|
<view
|
||
|
class="wd-flex wd-flex-col wd-flex-center"
|
||
|
style="gap: 4px"
|
||
|
>
|
||
|
<u-count-to
|
||
|
:start-val="0"
|
||
|
:end-val="detail.enterpriseCount"
|
||
2 months ago
|
bold
|
||
|
font-size="24"
|
||
|
color="#071437"
|
||
|
></u-count-to>
|
||
2 months ago
|
<view class="">企业数量</view>
|
||
2 months ago
|
</view>
|
||
|
</view>
|
||
|
<qiun-data-charts
|
||
|
type="ring"
|
||
|
:opts="opts"
|
||
|
:chartData="chartData"
|
||
1 month ago
|
:canvas2d="true"
|
||
2 months ago
|
style="height: 144px"
|
||
2 months ago
|
></qiun-data-charts>
|
||
|
<view class="wd-flex" style="gap: 12px; flex-wrap: wrap">
|
||
|
<view
|
||
|
class="wd-flex wd-flex-col wd-flex-center"
|
||
2 months ago
|
v-for="item in detail.legendData"
|
||
2 months ago
|
:key="item"
|
||
|
style="
|
||
|
border: 1px solid #f9f9f9;
|
||
|
width: calc(100% / 3 - 8px);
|
||
|
padding: 12px;
|
||
|
gap: 4px;
|
||
|
border-radius: 4px;
|
||
|
"
|
||
|
>
|
||
|
<view class="wd-flex wd-flex-col" style="gap: 4px">
|
||
|
<view
|
||
|
class="wd-flex"
|
||
|
style="align-items: center; gap: 4px"
|
||
|
>
|
||
|
<view
|
||
|
:style="{
|
||
|
width: '8px',
|
||
|
height: '4px',
|
||
|
borderRadius: '4px',
|
||
2 months ago
|
backgroundColor: item.color
|
||
2 months ago
|
}"
|
||
|
></view>
|
||
2 months ago
|
<view class="">{{ item.name }}</view>
|
||
2 months ago
|
</view>
|
||
|
<view class="wd-flex wd-flex-center">
|
||
|
<u-count-to
|
||
|
:start-val="0"
|
||
2 months ago
|
:end-val="Number(item.value)"
|
||
2 months ago
|
bold
|
||
|
font-size="16"
|
||
|
color="#071437"
|
||
|
></u-count-to>
|
||
|
%
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="box row-1">
|
||
|
<view
|
||
|
class="wd-flex"
|
||
|
style="margin-top: 12px; justify-content: center"
|
||
|
>
|
||
|
<view
|
||
|
style="
|
||
|
background-color: #f9f9f9;
|
||
|
display: inline-flex;
|
||
|
padding: 4px;
|
||
|
"
|
||
|
>
|
||
|
<view
|
||
|
class="tab"
|
||
|
v-for="(item, index) in tabs"
|
||
|
:key="index"
|
||
1 month ago
|
:style="{
|
||
|
'--index': tabs.findIndex(
|
||
|
i => i.type == queryParams.type
|
||
|
)
|
||
|
}"
|
||
|
@tap="changeTab(item.type)"
|
||
2 months ago
|
>
|
||
|
<view
|
||
|
class="name"
|
||
|
:style="{
|
||
|
color:
|
||
1 month ago
|
queryParams.type == item.type ? '#071437' : '#78829d'
|
||
2 months ago
|
}"
|
||
|
>
|
||
|
{{ item.name }}
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="">
|
||
|
<view
|
||
1 month ago
|
v-for="(item, index) in list"
|
||
|
:key="index"
|
||
2 months ago
|
class="wd-flex"
|
||
|
style="justify-content: space-between; padding: 12px"
|
||
|
>
|
||
1 month ago
|
<view class="wd-font-800">{{ item.name }}</view>
|
||
2 months ago
|
<view class="wd-font-800" style="color: #ff6f1e">
|
||
|
<view>
|
||
|
<u-count-to
|
||
|
:start-val="0"
|
||
1 month ago
|
:end-val="item.count"
|
||
2 months ago
|
bold
|
||
|
font-size="14"
|
||
|
color="#FF6F1E"
|
||
|
></u-count-to>
|
||
1 month ago
|
<text>{{ queryParams.type == 1 ? '天' : '次' }}</text>
|
||
2 months ago
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
2 months ago
|
</scroll-view>
|
||
|
</view>
|
||
|
</cs-page>
|
||
2 months ago
|
</template>
|
||
|
|
||
|
<script>
|
||
2 months ago
|
import { getDictBatchByType, getDeptTree } from '@/api/system/dict.js'
|
||
2 months ago
|
import { HomeApi } from '@/api/common/home.js'
|
||
2 months ago
|
export default {
|
||
2 months ago
|
data() {
|
||
|
return {
|
||
|
dictMap: {},
|
||
|
queryParams: {
|
||
2 months ago
|
selectWeek: '',
|
||
|
deptId: '',
|
||
|
type: 1
|
||
2 months ago
|
},
|
||
2 months ago
|
detail: {},
|
||
2 months ago
|
opts: {},
|
||
|
chartData: {},
|
||
|
viewHeigth: 0,
|
||
|
tabs: [
|
||
|
{
|
||
2 months ago
|
name: '资质逾期',
|
||
|
type: 1
|
||
2 months ago
|
},
|
||
|
{
|
||
2 months ago
|
name: '整改次数',
|
||
|
type: 2
|
||
2 months ago
|
}
|
||
2 months ago
|
],
|
||
1 month ago
|
refresherTriggered: false,
|
||
1 month ago
|
list: [],
|
||
2 months ago
|
color: ['#1B84FF', '#7239EA', '#F6B100', '#F8285A', '#17C653']
|
||
2 months ago
|
}
|
||
|
},
|
||
2 months ago
|
onLoad: async function () {
|
||
|
await uni.hideTabBar()
|
||
|
uni.hideTabBar({
|
||
|
animation: false
|
||
|
})
|
||
2 months ago
|
this.getDict()
|
||
2 months ago
|
this.init()
|
||
2 months ago
|
},
|
||
|
onReady() {
|
||
2 months ago
|
this.$nextTick(() => {
|
||
|
this.getPageHeight()
|
||
|
})
|
||
2 months ago
|
},
|
||
1 month ago
|
onShow() {
|
||
|
this.init()
|
||
|
},
|
||
2 months ago
|
methods: {
|
||
|
getPageHeight() {
|
||
|
const query = uni.createSelectorQuery().in(this)
|
||
|
query
|
||
2 months ago
|
.select('.view-container')
|
||
2 months ago
|
.boundingClientRect(data => {
|
||
2 months ago
|
this.viewHeigth = data.height - 35 - 25
|
||
2 months ago
|
})
|
||
|
.exec()
|
||
|
},
|
||
|
async getDict() {
|
||
|
const dict = await getDictBatchByType({
|
||
|
type: ['select_week'].join(',')
|
||
|
})
|
||
|
const dept = await getDeptTree()
|
||
|
this.dictMap = {
|
||
|
...dict.data,
|
||
|
dept: dept.data
|
||
|
}
|
||
|
},
|
||
|
getDropdownOption(key) {
|
||
|
if (!this.dictMap[key]) return []
|
||
|
const keyMap = {
|
||
|
select_week: '周期',
|
||
|
dept: '部门'
|
||
|
}
|
||
|
if (key == 'dept') {
|
||
2 months ago
|
const data = [
|
||
2 months ago
|
...this.dictMap[key].map(d => {
|
||
|
return {
|
||
|
value: d.id,
|
||
|
text: d.name
|
||
|
}
|
||
2 months ago
|
})
|
||
2 months ago
|
]
|
||
2 months ago
|
if (!this.$roles.checkRole(['director'])) {
|
||
|
this.queryParams.deptId = this.$store.getters.deptId
|
||
|
return [...data]
|
||
|
}
|
||
|
return [...data, { value: '', text: keyMap[key] }]
|
||
2 months ago
|
}
|
||
|
return [
|
||
|
...this.dictMap[key].map(d => {
|
||
|
return {
|
||
|
value: d.value,
|
||
|
text: d.label
|
||
|
}
|
||
|
}),
|
||
|
{ value: '', text: keyMap[key] }
|
||
|
]
|
||
2 months ago
|
},
|
||
2 months ago
|
async init() {
|
||
|
if (!this.$roles.checkRole(['director'])) {
|
||
|
this.queryParams.deptId = this.$store.getters.deptId
|
||
|
}
|
||
|
const res = await HomeApi.getPieData(this.queryParams)
|
||
|
this.detail = res.data
|
||
|
let curIndex = 0
|
||
|
const data = this.detail.completionRate.map((item, index) => {
|
||
|
const res = { ...item, color: this.color[curIndex] }
|
||
|
curIndex > this.color.length ? 0 : curIndex++
|
||
|
return res
|
||
|
})
|
||
|
this.detail.legendData = data
|
||
1 month ago
|
this.setPieData(data, this.detail.taskCompletionRate)
|
||
1 month ago
|
this.getList()
|
||
|
},
|
||
|
async getList() {
|
||
|
const res = await HomeApi.getListData(this.queryParams)
|
||
|
this.list = res.data
|
||
|
},
|
||
1 month ago
|
setPieData(data, max) {
|
||
2 months ago
|
const pieData = data.map(i => {
|
||
|
return {
|
||
|
name: i.name,
|
||
|
value: Number(i.pieValue)
|
||
|
}
|
||
|
})
|
||
1 month ago
|
if (Number(max) < 100) {
|
||
2 months ago
|
pieData.push({
|
||
|
name: '',
|
||
1 month ago
|
value: 100 - Number(max),
|
||
2 months ago
|
color: '#fff'
|
||
|
})
|
||
|
}
|
||
2 months ago
|
this.opts = {
|
||
|
legend: {
|
||
|
show: false
|
||
|
},
|
||
2 months ago
|
color: this.color,
|
||
2 months ago
|
rotate: false,
|
||
|
rotateLock: false,
|
||
2 months ago
|
padding: [0, 0, 0, 0],
|
||
2 months ago
|
dataLabel: false,
|
||
|
enableScroll: false,
|
||
|
title: {
|
||
1 month ago
|
name: `${max}%`,
|
||
2 months ago
|
fontSize: 24,
|
||
|
color: '#071437',
|
||
|
fontWeight: 'bold'
|
||
|
},
|
||
|
subtitle: {
|
||
|
name: '完成率',
|
||
|
fontSize: 14,
|
||
|
color: '#78829D'
|
||
|
},
|
||
|
extra: {
|
||
|
ring: {
|
||
2 months ago
|
ringWidth: 15,
|
||
2 months ago
|
activeOpacity: 0.5,
|
||
|
offsetAngle: 90,
|
||
|
labelWidth: 15,
|
||
|
border: false,
|
||
|
borderColor: '#FFFFFF',
|
||
|
linearType: 'none'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
this.chartData = {
|
||
|
series: [
|
||
|
{
|
||
2 months ago
|
data: pieData
|
||
2 months ago
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
sectionChange(index) {
|
||
|
this.queryParams.enterprise = index
|
||
2 months ago
|
},
|
||
|
querySelect(v, key) {
|
||
|
this.queryParams[key] = v.detail
|
||
|
this.init()
|
||
1 month ago
|
},
|
||
|
changeTab(type) {
|
||
|
this.queryParams.type = type
|
||
|
this.getList()
|
||
1 month ago
|
},
|
||
|
refresherpulling() {
|
||
|
const that = this
|
||
|
if (!this.refresherTriggered) {
|
||
|
this.refresherTriggered = true
|
||
|
setTimeout(() => {
|
||
|
that.refresherTriggered = false
|
||
|
}, 1000)
|
||
|
}
|
||
|
},
|
||
|
refresherrefresh() {
|
||
|
this.init()
|
||
2 months ago
|
}
|
||
2 months ago
|
}
|
||
2 months ago
|
}
|
||
|
</script>
|
||
|
|
||
2 months ago
|
<style lang="scss" scoped>
|
||
2 months ago
|
.view-container {
|
||
|
height: 100%;
|
||
|
}
|
||
|
.view {
|
||
|
padding: 0 12px;
|
||
|
padding-bottom: 12px;
|
||
|
display: flex;
|
||
|
gap: 12px;
|
||
|
flex-flow: column nowrap;
|
||
|
.box {
|
||
|
padding: 12px;
|
||
|
background-color: #fff;
|
||
|
border: 1px solid #f9f9f9;
|
||
|
border-radius: 12px;
|
||
|
margin-top: 12px;
|
||
|
&:last-child {
|
||
|
margin-bottom: 12px;
|
||
|
}
|
||
|
}
|
||
|
.row-1 {
|
||
|
display: flex;
|
||
|
flex-flow: column nowrap;
|
||
|
gap: 12px;
|
||
|
}
|
||
|
.tab {
|
||
|
position: relative;
|
||
|
padding: 4px 16px;
|
||
|
.name {
|
||
|
z-index: 2;
|
||
|
position: inherit;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
&:first-child::before {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
inset: 0;
|
||
|
background-color: #fff;
|
||
|
border-radius: 2px;
|
||
|
transform: translateX(calc(var(--index) * 100%));
|
||
|
transition: 0.2s all;
|
||
|
z-index: 1;
|
||
|
}
|
||
|
}
|
||
2 months ago
|
}
|
||
|
::v-deep .van-dropdown-menu {
|
||
2 months ago
|
box-shadow: none;
|
||
|
height: 35px !important;
|
||
|
font-size: 13px;
|
||
|
border-bottom: 1px solid #f1f1f4;
|
||
2 months ago
|
}
|
||
|
</style>
|