|
@@ -1,7 +1,7 @@
|
|
|
<!--
|
|
|
* @Author: your name
|
|
|
* @Date: 2021-10-14 17:17:53
|
|
|
- * @LastEditTime: 2022-02-28 21:42:44
|
|
|
+ * @LastEditTime: 2022-03-01 10:19:50
|
|
|
* @LastEditors: Please set LastEditors
|
|
|
* @Description: In User Settings Edit
|
|
|
* @FilePath: \Foshan4A\src\views\dashboard\index.vue
|
|
@@ -9,14 +9,14 @@
|
|
|
<template>
|
|
|
<div class="dashboard">
|
|
|
<!--分类信息-->
|
|
|
- <div class="flex-wrap tu-fl">
|
|
|
+ <!-- <div class="flex-wrap tu-fl">
|
|
|
<router-link v-for="(item,index) in flList" :key="index" class="flex fl-list" :to="item.appUrl ? item.appUrl:'/'">
|
|
|
<div class="fl-list-img">
|
|
|
<img :src="item.logo">
|
|
|
</div>
|
|
|
<div class="fl-list-title flex1">{{item.appName}}</div>
|
|
|
</router-link>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
<!--切换和搜索-->
|
|
|
<div class="dashboard-tab flex">
|
|
|
<div class="tab">
|
|
@@ -126,9 +126,9 @@ export default {
|
|
|
return datas
|
|
|
}
|
|
|
},
|
|
|
- created () {
|
|
|
+ mounted () {
|
|
|
this.isPower()
|
|
|
- this.getOthSystem()
|
|
|
+ //this.getOthSystem()
|
|
|
},
|
|
|
methods: {
|
|
|
//搜索-跳转
|
|
@@ -157,25 +157,25 @@ export default {
|
|
|
const obj = typeof (this.systemSet) === 'string' ? JSON.parse(this.systemSet) : this.systemSet
|
|
|
const { OpenGroup, OpenRole, UserOfficerMulti } = obj
|
|
|
if (!OpenGroup) {
|
|
|
- this.selectArr.forEach((item, index) => {
|
|
|
- if (item.id === 2) {
|
|
|
- this.selectArr.splice(index, 1)
|
|
|
+ this.routes.forEach((item, index) => {
|
|
|
+ if (item.path === '/accountGroup') {
|
|
|
+ this.routes.splice(index, 1)
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
if (!OpenRole) {
|
|
|
- this.selectArr.forEach((item, index) => {
|
|
|
- if (item.id === 4) {
|
|
|
+ this.routes.forEach((item, index) => {
|
|
|
+ if (item.path === '/role') {
|
|
|
this.roleFlag = false
|
|
|
- this.selectArr.splice(index, 1)
|
|
|
+ this.routes.splice(index, 1)
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
if (!UserOfficerMulti) {
|
|
|
- this.selectArr.forEach((item, index) => {
|
|
|
- if (item.id === 1) {
|
|
|
+ this.routes.forEach((item, index) => {
|
|
|
+ if (item.path === '/account') {
|
|
|
this.roleFlag = false
|
|
|
- this.selectArr.splice(index, 1)
|
|
|
+ this.routes.splice(index, 1)
|
|
|
}
|
|
|
})
|
|
|
}
|