Browse Source

常用应用

dev
0.0 2 years ago
parent
commit
46fffa857a
  1. 2
      src/permission.js
  2. 11
      src/views/dashboard/HomePage.vue

2
src/permission.js

@ -14,8 +14,6 @@ const whiteList = ['/test/cesium','/user/login', '/user/register', '/user/regist
router.beforeEach((to, from, next) => {
NProgress.start() // start progress bar
console.log("to>>>>>>>>>",to)
console.log("from>>>>>>>>>",from)
cachePage(from.name);
if (Vue.ls.get(ACCESS_TOKEN)) {
/* has token */

11
src/views/dashboard/HomePage.vue

@ -478,10 +478,10 @@ export default {
}
}
this.keyChildren = [];
if(this.KeyApplicationsChildren.length > 0){
// if(this.KeyApplicationsChildren.length > 0){
// console.log("=====")
let i = 0;
this.KeyApplicationsChildren.forEach( item =>{
// let i = 0;
// this.KeyApplicationsChildren.forEach( item =>{
// for (let i = 0; i < childrenMean.length; i++) {
// if(item.permissionId == childrenMean[i].id){
// i += 1;
@ -489,6 +489,7 @@ export default {
// this.keyChildren.push(childrenMean[i]);
// }
// }
childrenMean.forEach(it =>{
if(JSON.parse(localStorage.getItem(it.name))){
it.sum = JSON.parse(localStorage.getItem(it.name)).sum
@ -499,8 +500,8 @@ export default {
this.keyChildren.sort((a, b) => {
return b.sum - a.sum
})
})
}
// })
// }
this.userChildren = childrenMean
for (let i in this.userChildren){

Loading…
Cancel
Save