调整
This commit is contained in:
parent
6ae2be2f19
commit
e592878ab6
|
@ -5,10 +5,10 @@ VUE_APP_TITLE = 共享电动车管理系统
|
|||
ENV = 'development'
|
||||
|
||||
# 共享电动车管理系统/开发环境
|
||||
VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api'
|
||||
# VUE_APP_BASE_API = 'https://dche.ccttiot.com/prod-api'
|
||||
# VUE_APP_BASE_API = 'https://che.chuangtewl.com/prod-api'
|
||||
|
||||
# VUE_APP_BASE_API = 'http://localhost:8088'
|
||||
VUE_APP_BASE_API = 'http://localhost:8088'
|
||||
|
||||
# 路由懒加载
|
||||
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
||||
|
|
|
@ -495,7 +495,9 @@ export default {
|
|||
console.log("当前用户信息:",this.$store.state.user.name)
|
||||
this.userName = this.$store.state.user.name;
|
||||
this.queryParams.statusList = '7';
|
||||
this.getDeptList()
|
||||
if(this.userName === 'admin'){
|
||||
this.getDeptList();
|
||||
}
|
||||
this.reset();
|
||||
this.reset2();
|
||||
this.getList();
|
||||
|
|
|
@ -316,7 +316,9 @@ export default {
|
|||
this.getList();
|
||||
this.getAreaList();
|
||||
this.getModelList();
|
||||
this.getDeptList()
|
||||
if(this.userName === 'admin'){
|
||||
this.getDeptList();
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getDeptList() {
|
||||
|
|
|
@ -402,7 +402,9 @@ export default {
|
|||
this.userName = this.$store.state.user.name;
|
||||
this.getList();
|
||||
this.getDeptTree();
|
||||
this.getDeptList()
|
||||
if(this.userName === 'admin'){
|
||||
this.getDeptList();
|
||||
}
|
||||
this.getConfigKey("sys.user.initPassword").then(response => {
|
||||
this.initPassword = response.msg;
|
||||
});
|
||||
|
|
|
@ -176,7 +176,9 @@ export default {
|
|||
created() {
|
||||
this.getList();
|
||||
this.userName = this.$store.state.user.name;
|
||||
this.getDeptList()
|
||||
if(this.userName === 'admin'){
|
||||
this.getDeptList();
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getDeptList() {
|
||||
|
|
|
@ -185,7 +185,9 @@ export default {
|
|||
created() {
|
||||
console.log("当前用户信息:",this.$store.state.user.name)
|
||||
this.userName = this.$store.state.user.name;
|
||||
this.getDeptList()
|
||||
if(this.userName === 'admin'){
|
||||
this.getDeptList();
|
||||
}
|
||||
this.getList();
|
||||
this.getAreaList();
|
||||
|
||||
|
|
|
@ -290,7 +290,6 @@ export default {
|
|||
return {
|
||||
// 遮罩层
|
||||
loading: true,
|
||||
deptOptions: [],
|
||||
// 选中数组
|
||||
ids: [],
|
||||
// 非单个禁用
|
||||
|
@ -376,8 +375,6 @@ export default {
|
|||
this.userName = this.$store.state.user.name;
|
||||
this.getList();
|
||||
this.getAreaList();
|
||||
this.getDeptList()
|
||||
|
||||
if(this.userName === 'admin'){
|
||||
listDept2({status: '0',pageNum:1,pageSize:999 }).then(response => {
|
||||
this.deptOptions = response.rows;
|
||||
|
|
Loading…
Reference in New Issue
Block a user