调整
This commit is contained in:
parent
6ae2be2f19
commit
e592878ab6
|
@ -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
|
||||||
|
|
|
@ -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();
|
||||||
|
|
|
@ -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() {
|
||||||
|
|
|
@ -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;
|
||||||
});
|
});
|
||||||
|
|
|
@ -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() {
|
||||||
|
|
|
@ -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() {
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user