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' 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 = '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 VUE_CLI_BABEL_TRANSPILE_MODULES = true

View File

@ -359,7 +359,7 @@
import { updateWithdraw } from '@/api/system/withdraw' import { updateWithdraw } from '@/api/system/withdraw'
import { MessageBox } from 'element-ui' import { MessageBox } from 'element-ui'
import { listDept2 } from '@/api/system/dept' import { listDept2 } from '@/api/system/dept'
export default { export default {
name: "Order", name: "Order",
@ -495,7 +495,9 @@ export default {
console.log("当前用户信息:",this.$store.state.user.name) console.log("当前用户信息:",this.$store.state.user.name)
this.userName = this.$store.state.user.name; this.userName = this.$store.state.user.name;
this.queryParams.statusList = '7'; this.queryParams.statusList = '7';
this.getDeptList() if(this.userName === 'admin'){
this.getDeptList();
}
this.reset(); this.reset();
this.reset2(); this.reset2();
this.getList(); this.getList();

View File

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

View File

@ -402,7 +402,9 @@ export default {
this.userName = this.$store.state.user.name; this.userName = this.$store.state.user.name;
this.getList(); this.getList();
this.getDeptTree(); this.getDeptTree();
this.getDeptList() if(this.userName === 'admin'){
this.getDeptList();
}
this.getConfigKey("sys.user.initPassword").then(response => { this.getConfigKey("sys.user.initPassword").then(response => {
this.initPassword = response.msg; this.initPassword = response.msg;
}); });

View File

@ -176,7 +176,9 @@ export default {
created() { created() {
this.getList(); this.getList();
this.userName = this.$store.state.user.name; this.userName = this.$store.state.user.name;
this.getDeptList() if(this.userName === 'admin'){
this.getDeptList();
}
}, },
methods: { methods: {
getDeptList() { getDeptList() {

View File

@ -185,10 +185,12 @@ export default {
created() { created() {
console.log("当前用户信息:",this.$store.state.user.name) console.log("当前用户信息:",this.$store.state.user.name)
this.userName = this.$store.state.user.name; this.userName = this.$store.state.user.name;
this.getDeptList() if(this.userName === 'admin'){
this.getDeptList();
}
this.getList(); this.getList();
this.getAreaList(); this.getAreaList();
}, },
methods: { methods: {
getDeptList() { getDeptList() {

View File

@ -285,12 +285,11 @@ export default {
return `${actual} `; return `${actual} `;
} }
}, },
data() { data() {
return { return {
// //
loading: true, loading: true,
deptOptions: [],
// //
ids: [], ids: [],
// //
@ -376,8 +375,6 @@ export default {
this.userName = this.$store.state.user.name; this.userName = this.$store.state.user.name;
this.getList(); this.getList();
this.getAreaList(); this.getAreaList();
this.getDeptList()
if(this.userName === 'admin'){ if(this.userName === 'admin'){
listDept2({status: '0',pageNum:1,pageSize:999 }).then(response => { listDept2({status: '0',pageNum:1,pageSize:999 }).then(response => {
this.deptOptions = response.rows; this.deptOptions = response.rows;