|
@@ -1,7 +1,7 @@
|
|
|
<!--
|
|
|
* @Author: your name
|
|
|
* @Date: 2021-11-25 10:40:42
|
|
|
- * @LastEditTime: 2022-01-05 16:49:55
|
|
|
+ * @LastEditTime: 2022-03-02 10:37:43
|
|
|
* @LastEditors: Please set LastEditors
|
|
|
* @Description: 数据分析
|
|
|
* @FilePath: \Foshan4A2.0\src\views\dashboard\components\analysis.vue
|
|
@@ -22,7 +22,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<!--角色概览-->
|
|
|
- <div v-if="roleFlag" class="tu-user box-public-shadow l22">
|
|
|
+ <div v-if="OpenRole" class="tu-user box-public-shadow l22">
|
|
|
<div class="tu-user-content h100 flex">
|
|
|
<div class="tu-user-content-left relative">
|
|
|
<commonChartsPie :option="userOption" id="tu-user-content" />
|
|
@@ -130,17 +130,13 @@ import commonProgress from '@/layout/components/Echarts/commonProgress.vue'
|
|
|
import commonChartsNum from '@/layout/components/EchartsNum/index.vue'
|
|
|
import dateType from '@/layout/components/dateType/index.vue'
|
|
|
import { GetUserAna, GetOfficerAna, GetRoleAna, GetAuthAna } from '@/api/apiHome'
|
|
|
+import { mapGetters } from 'vuex'
|
|
|
export default {
|
|
|
name: 'Analysis',
|
|
|
- props: {
|
|
|
- roleFlag: {
|
|
|
- type: Boolean,
|
|
|
- default: true
|
|
|
- }
|
|
|
- },
|
|
|
components: { commonChartsPie, commonChartsBar, commonChartsNum, commonChartsLine, commonProgress, dateType },
|
|
|
data () {
|
|
|
return {
|
|
|
+ OpenRole: 1,
|
|
|
// 账号信息分析饼图数据
|
|
|
accountOption: {
|
|
|
color: ['#94C6E0', '#F4C23A', '#8969BE', '#E752A3'],
|
|
@@ -691,7 +687,12 @@ export default {
|
|
|
]
|
|
|
}
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ ...mapGetters(['systemSet']),
|
|
|
+ },
|
|
|
created () {
|
|
|
+ const { OpenRole } = typeof this.systemSet === "string" ? JSON.parse(this.systemSet) : this.systemSet; //1是请求角色 0是请求用户
|
|
|
+ this.OpenRole = OpenRole
|
|
|
this.pageInit()
|
|
|
},
|
|
|
methods: {
|