Commit 5d55432c authored by zhengke's avatar zhengke

修改提成

parent 85e45263
...@@ -42,7 +42,8 @@ ...@@ -42,7 +42,8 @@
<tr> <tr>
<th>公司名称</th> <th>公司名称</th>
<th style="width:20%">线路名称</th> <th style="width:20%">线路名称</th>
<th>目的</th> <th>目的地</th>
<th>系列</th>
<th>线控</th> <th>线控</th>
<th>助理</th> <th>助理</th>
<th>分负责OP</th> <th>分负责OP</th>
...@@ -60,6 +61,7 @@ ...@@ -60,6 +61,7 @@
<tr v-for="(item,i) in dataList" :key="i"> <tr v-for="(item,i) in dataList" :key="i">
<td>{{item.BranchName}}</td> <td>{{item.BranchName}}</td>
<td>{{item.LineName}}</td> <td>{{item.LineName}}</td>
<td>{{item.PlaceName}}</td>
<td>{{item.LtName}}</td> <td>{{item.LtName}}</td>
<td>{{item.XKEmployeeName}}</td> <td>{{item.XKEmployeeName}}</td>
<td>{{item.ZLEmployeeName}}</td> <td>{{item.ZLEmployeeName}}</td>
...@@ -108,16 +110,19 @@ ...@@ -108,16 +110,19 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="目的地" prop="LineIdList"> <el-form-item label="目的地" prop="LineIdList">
<el-select class="multiple_input" filterable multiple collapse-tags v-model="form.LtIdList"> <el-select class="multiple_input" filterable multiple collapse-tags v-model="form.PlaceIdList">
<el-option v-for="item in PlaceList" :label='item.PlaceName' :value='item.PlaceID' :key='item.PlaceID'></el-option> <el-option v-for="item in PlaceList" :label='item.PlaceName' :value='item.PlaceID' :key='item.PlaceID'></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<!-- <el-form-item label="系列" v-show="form.LineIdList.length==1 && form.LineIdList[0]!=-1"> <el-form-item label="系列">
<el-select class="multiple_input" filterable multiple collapse-tags v-model="form.LtIdList" > <el-select class="multiple_input" filterable multiple collapse-tags v-model="form.LtIdList" >
<el-option v-for="item in LineTeamList" :label='item.LtName' :value='item.LtID' :key='item.LtID'></el-option> <el-option v-for="item in LineTeamList" :label='item.LtName' :value='item.LtID' :key='item.LtID'></el-option>
</el-select> </el-select>
</el-form-item> --> </el-form-item>
<el-form-item label="描述">
<el-input class="w220" v-model="form.Description"></el-input>
</el-form-item>
<el-form-item label="线控" prop="XKEmployeeIdList"> <el-form-item label="线控" prop="XKEmployeeIdList">
<el-select class="multiple_input" filterable multiple collapse-tags v-model="form.XKEmployeeIdList" > <el-select class="multiple_input" filterable multiple collapse-tags v-model="form.XKEmployeeIdList" >
<el-option v-for="item in EmployeeList" :label="item.EmName" <el-option v-for="item in EmployeeList" :label="item.EmName"
...@@ -156,9 +161,6 @@ ...@@ -156,9 +161,6 @@
<el-form-item v-show="stateShow" label="分助理金额"> <el-form-item v-show="stateShow" label="分助理金额">
<el-input class="w220" @keyup.native="checkInteger(form,'FInternMoney')" v-model="form.FInternMoney"></el-input> <el-input class="w220" @keyup.native="checkInteger(form,'FInternMoney')" v-model="form.FInternMoney"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="描述">
<el-input class="w220" v-model="form.Description"></el-input>
</el-form-item>
</el-form> </el-form>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
...@@ -192,6 +194,7 @@ export default { ...@@ -192,6 +194,7 @@ export default {
Description:"", Description:"",
EmployeeIdList:[], EmployeeIdList:[],
LineIdList:[], LineIdList:[],
PlaceIdList:[],
LtIdList:[], LtIdList:[],
InternMoney:'', InternMoney:'',
...@@ -381,13 +384,16 @@ export default { ...@@ -381,13 +384,16 @@ export default {
//获取系列列表 //获取系列列表
getLineTeamList() { getLineTeamList() {
this.PlaceList =[]; this.PlaceList =[];
this.LineTeamList=[];
if(this.form.LineIdList.indexOf(-1)!=-1){ if(this.form.LineIdList.indexOf(-1)!=-1){
this.form.LineIdList=[-1]; this.form.LineIdList=[-1];
this.form.LtIdList = []; this.form.PlaceIdList = [];
this.form.LtIdList=[];
return; return;
} }
if(this.form.LineIdList.length>1){ if(this.form.LineIdList.length>1){
this.form.LtIdList = []; this.form.PlaceList = [];
this.form.LtIdList=[];
return; return;
} }
if(this.form.LineIdList.indexOf(-1)==-1 && this.form.LineIdList.length==1){ if(this.form.LineIdList.indexOf(-1)==-1 && this.form.LineIdList.length==1){
...@@ -406,7 +412,7 @@ export default { ...@@ -406,7 +412,7 @@ export default {
//获取目的地 //获取目的地
getLinePlaceList(id) { getLinePlaceList(id) {
if(!this.PlaceShow){ if(!this.PlaceShow){
this.form.LtIdList=[]; this.form.PlaceList=[];
} }
let msg = { let msg = {
lineID: id, lineID: id,
......
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