Browse Source

企业

master
parent
commit
b380fde2bc
  1. 140
      pages/index.vue

140
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 }}
@ -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"
@ -194,7 +213,7 @@ export default {
queryParams: { queryParams: {
selectWeek: '', selectWeek: '',
deptId: '', deptId: '',
type: 1 type: 1,
}, },
detail: {}, detail: {},
opts: {}, opts: {},
@ -203,22 +222,23 @@ 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'])) { if (!this.$roles.checkRole(['director'])) {
@ -246,43 +266,32 @@ 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() {
@ -309,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,
@ -333,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: {
@ -348,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) {
@ -382,8 +391,19 @@ 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>

Loading…
Cancel
Save