This commit is contained in:
邱贞招 2024-11-12 16:42:53 +08:00
parent 6ae2be2f19
commit e592878ab6
7 changed files with 20 additions and 13 deletions

View File

@ -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

View File

@ -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();

View File

@ -316,7 +316,9 @@ export default {
this.getList();
this.getAreaList();
this.getModelList();
this.getDeptList()
if(this.userName === 'admin'){
this.getDeptList();
}
},
methods: {
getDeptList() {

View File

@ -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;
});

View File

@ -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() {

View File

@ -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();

View File

@ -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;