diff --git a/.env.development b/.env.development index 495ffb9..4ae565e 100644 --- a/.env.development +++ b/.env.development @@ -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 diff --git a/src/views/system/audit/index.vue b/src/views/system/audit/index.vue index 8929bb4..308cccb 100644 --- a/src/views/system/audit/index.vue +++ b/src/views/system/audit/index.vue @@ -359,7 +359,7 @@ import { updateWithdraw } from '@/api/system/withdraw' import { MessageBox } from 'element-ui' import { listDept2 } from '@/api/system/dept' - + export default { name: "Order", @@ -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(); diff --git a/src/views/system/flow/index.vue b/src/views/system/flow/index.vue index 6db9da8..274d889 100644 --- a/src/views/system/flow/index.vue +++ b/src/views/system/flow/index.vue @@ -316,7 +316,9 @@ export default { this.getList(); this.getAreaList(); this.getModelList(); - this.getDeptList() + if(this.userName === 'admin'){ + this.getDeptList(); + } }, methods: { getDeptList() { diff --git a/src/views/system/partner/index.vue b/src/views/system/partner/index.vue index edd27ca..3ab1f72 100644 --- a/src/views/system/partner/index.vue +++ b/src/views/system/partner/index.vue @@ -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; }); diff --git a/src/views/system/recharge/index.vue b/src/views/system/recharge/index.vue index 2074415..87e6a5f 100644 --- a/src/views/system/recharge/index.vue +++ b/src/views/system/recharge/index.vue @@ -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() { diff --git a/src/views/system/refund/index.vue b/src/views/system/refund/index.vue index cf9ac06..6df5e33 100644 --- a/src/views/system/refund/index.vue +++ b/src/views/system/refund/index.vue @@ -185,10 +185,12 @@ 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(); - + }, methods: { getDeptList() { diff --git a/src/views/system/withdrawAudit/index.vue b/src/views/system/withdrawAudit/index.vue index bc219f0..0da94b9 100644 --- a/src/views/system/withdrawAudit/index.vue +++ b/src/views/system/withdrawAudit/index.vue @@ -285,12 +285,11 @@ export default { return `${actual} `; } }, - + data() { 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;