提交 ba3a9405 编写于 作者: bo.dang's avatar bo.dang

机构导入和人员导入对内部人员和外部人员(包含高级主管理员、主管理员和管理员

上级 113c3481
...@@ -278,8 +278,15 @@ export default { ...@@ -278,8 +278,15 @@ export default {
this.showImportFlag = true; this.showImportFlag = true;
} }
else { else {
this.showImportFlag = false; let highMainManager = localStorage.getItem('highMainManager');
// this.showImportFlag = true; let mainManager = localStorage.getItem('mainManager');
let manager = localStorage.getItem('manager');
if(highMainManager == 1 || mainManager == 1 || manager == 1){
this.showImportFlag = true;
}
else {
this.showImportFlag = false;
}
} }
}, },
mounted() { mounted() {
......
...@@ -297,8 +297,15 @@ export default { ...@@ -297,8 +297,15 @@ export default {
this.showImportFlag = true; this.showImportFlag = true;
} }
else { else {
this.showImportFlag = false; let highMainManager = localStorage.getItem('highMainManager');
// this.showImportFlag = true; let mainManager = localStorage.getItem('mainManager');
let manager = localStorage.getItem('manager');
if(highMainManager == 1 || mainManager == 1 || manager == 1){
this.showImportFlag = true;
}
else {
this.showImportFlag = false;
}
} }
}, },
mounted() { mounted() {
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册