Commit a64fd225 authored by 吴春's avatar 吴春

1

parent ff81feb7
......@@ -59,7 +59,7 @@
<el-input v-model='msg.PayEndPrice' class='w135' type="number" ></el-input>
</span>
</li>
<li>
<!-- <li>
<span>
<em>{{$t('ground.ldleixing')}}</em>
<el-select v-model="msg.LeaderType" class="multiple_input" :placeholder="$t('pub.pleaseSel')"
......@@ -74,14 +74,14 @@
</el-option>
</el-select>
</span>
</li>
</li> -->
<li>
<span>
<em>{{$t('leader.leader_leaderGuid')}}</em>
<em>{{$t('adm.adm_staff')}}</em>
<el-select v-model="msg.QLeaderId" filterable class="multiple_input" :placeholder="$t('pub.pleaseSel')">
<el-option :label="$t('pub.unlimitedSel')" :value="0">
</el-option>
<el-option v-for="item in LeaderList" :label='item.Name' :value='item.ID' :key='item.ID'>
<el-option v-for="item in LeaderList" :label='item.EmName' :value='item.EmployeeId' :key='item.EmployeeId'>
</el-option>
</el-select>
</span>
......@@ -261,6 +261,7 @@
},
mounted() {
this.getList();
this.GetLeaderList();
},
methods: {
delInstitution(obj){
......@@ -362,9 +363,9 @@
GetLeaderList(){ //获取领队和导游
this.LeaderList = [];
this.msg.QLeaderId = 0;
let msg = { Type: this.msg.LeaderType, }
let msg = { GroupId :2,BranchId:-1,DepartmentId:0,PostId:0,IsLeave:0 }
this.apipost(
'leader_post_GetList', msg,
'admin_get_EmployeeGetList', msg,
res => {
if (res.data.resultCode == 1) {
this.LeaderList = res.data.data;
......
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