Commit 3d611a20 authored by 吴春's avatar 吴春

机损核实

parent 5d182c00
...@@ -243,6 +243,19 @@ ...@@ -243,6 +243,19 @@
</el-option> </el-option>
</el-select> </el-select>
</span> </span>
</li>
<li>
<span><em>{{ $t("fnc.ryxuanze") }}</em></span>
<el-select class="w200" v-model="msg.CreateBy" filterable :placeholder="$t('pub.pleaseSel')">
<el-option :label="$t('pub.unlimitedSel')" value="-1"></el-option>
<el-option v-for="item in employeeList" :key="item.empId" :label="item.name" :value="item.empId">
<span style="float: left">{{ item.name }}
<template v-if="item.isLeave == 1">
<span style="color: red">(已离职)</span>
</template>
</span>
</el-option>
</el-select>
</li> </li>
<li> <li>
<span><em>{{ $t("advmanager.v_line") }}</em> <span><em>{{ $t("advmanager.v_line") }}</em>
...@@ -341,6 +354,7 @@ ...@@ -341,6 +354,7 @@
pageSize: 10, pageSize: 10,
LineId: "-1", LineId: "-1",
LineTeamId: "-1", LineTeamId: "-1",
CreateBy:'-1',
TCID: "", TCID: "",
TCIDList: "", TCIDList: "",
StartTime: "", StartTime: "",
...@@ -359,6 +373,13 @@ ...@@ -359,6 +373,13 @@
TCIDList: null, TCIDList: null,
userInfo: {}, userInfo: {},
crmOrderObj: null, crmOrderObj: null,
employeeList: [],
employeeMsg: {
RB_Group_id: "0",
RB_Branch_id: "1245",
departmentId: "0",
IsLeave: "-1",
},
}; };
}, },
components: { components: {
...@@ -398,6 +419,18 @@ ...@@ -398,6 +419,18 @@
}, },
(err) => {} (err) => {}
); );
},
getEmployee() {
this.apipost(
"app_get_employeeInfo_v2",
this.employeeMsg,
(res) => {
if (res.data.resultCode == 1) {
this.employeeList = res.data.data;
}
},
(err) => {}
);
}, },
// 线路 // 线路
getLineList() { getLineList() {
...@@ -547,6 +580,7 @@ ...@@ -547,6 +580,7 @@
this.getCompanyList();//公司 this.getCompanyList();//公司
this.getList();//产品列表 this.getList();//产品列表
this.getLineList();//线路 this.getLineList();//线路
this.getEmployee();//人员
//this.getAirlineList();//获取航空公司 //this.getAirlineList();//获取航空公司
// this.getStartList();//出发城市 // this.getStartList();//出发城市
// this.getStartList1();//目的地 // this.getStartList1();//目的地
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment