切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
朱兆平
about a year ago
提交
34b563346ecdc8e6c25cfd4272e0ddaec655057c
1 个父辈
25e7d381
bug-fix:
1. 修复车辆分配组织机构BUG
显示空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
3 行增加
和
3 行删除
src/views/dispatch/Dispatch.vue
src/views/dispatch/Dispatch.vue
查看文件 @
34b5633
...
...
@@ -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;
get
UserList(para
).then((res) => {
get
CRMList({"roleName":"","orgtype":"","departmentid":""},1,10000
).then((res) => {
this.usernames = res.data.data.list;
}).catch((error) => {
this.$message.error(error.toString());
...
...
请
注册
或
登录
后发表评论