...
|
...
|
@@ -307,7 +307,7 @@ |
|
|
<el-option
|
|
|
v-for="item in usernames"
|
|
|
:key="item.departmentid"
|
|
|
:label="item.departmentid"
|
|
|
:label="item.roleName"
|
|
|
:value="item.departmentid"
|
|
|
:disabled="item.disabled">
|
|
|
</el-option>
|
...
|
...
|
@@ -339,6 +339,7 @@ |
|
|
import {isAdmin, loginedUserInfo} from "../../api/user";
|
|
|
//获取关锁列表
|
|
|
// import {list as lockList} from "../../api/lock_info/lock_info";
|
|
|
import { getList as getCRMList } from '@/api/crm_api';
|
|
|
import { getUserList } from '../../api/user';
|
|
|
import {selectVehicle, insertSelective, selectHistroy} from '../../api/consigner/vehicle';
|
|
|
|
...
|
...
|
@@ -514,9 +515,8 @@ |
|
|
},
|
|
|
//获取用户名
|
|
|
getUsers:function() {
|
|
|
let para = {pageSize:1,pageNum:10000};
|
|
|
this.listLoading = true;
|
|
|
getUserList(para).then((res) => {
|
|
|
getCRMList({"roleName":"","orgtype":"","departmentid":""},1,10000).then((res) => {
|
|
|
this.usernames = res.data.data.list;
|
|
|
}).catch((error) => {
|
|
|
this.$message.error(error.toString());
|
...
|
...
|
|