Commit dd33c5b2 authored by huangyuanyuan's avatar huangyuanyuan

update

parent 6f34ef97
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
</ul> </ul>
</div> </div>
<div class="clearfix"></div> <div class="clearfix"></div>
<table class="singeRowTable" border="0" cellspacing="0" cellpadding="0"> <table class="singeRowTable" border="0" cellspacing="0" cellpadding="0" v-loading="loading">
<tr> <tr>
<th>编号</th> <th>编号</th>
...@@ -80,7 +80,7 @@ ...@@ -80,7 +80,7 @@
<th>操作时间</th> <th>操作时间</th>
<th>{{$t('system.table_operation')}}</th> <th>{{$t('system.table_operation')}}</th>
</tr> </tr>
<tr v-for="(item,index) in DataList" v-loading="loading"> <tr v-for="(item,index) in DataList">
<td>{{item.ID}}</td> <td>{{item.ID}}</td>
<td>{{item.EmpName}}</td> <td>{{item.EmpName}}</td>
<td>{{item.BranchName}}</td> <td>{{item.BranchName}}</td>
...@@ -287,6 +287,8 @@ export default { ...@@ -287,6 +287,8 @@ export default {
}); });
}, },
Edit(item){ Edit(item){
this.companyshow=false;
this.Ltshow=false;
this.dialogTitle='编辑线控管理'; this.dialogTitle='编辑线控管理';
this.getLineTeamList(item.Line_id) this.getLineTeamList(item.Line_id)
this.outerVisible=true; this.outerVisible=true;
...@@ -296,7 +298,18 @@ export default { ...@@ -296,7 +298,18 @@ export default {
this.addMsg.Employee_id=item.Employee_id; this.addMsg.Employee_id=item.Employee_id;
this.addMsg.BranchIdList=item.BranchIdList; this.addMsg.BranchIdList=item.BranchIdList;
this.addMsg.LtIdList=item.LtIdList; this.addMsg.LtIdList=item.LtIdList;
this.addMsg.BranchIdList.forEach(item => {
if(item==-1){
this.companyshow=true;
this.addMsg.LtIdList=[-1];
}
});
this.addMsg.LtIdList.forEach(item => {
if(item==-1){
this.Ltshow=true;
this.addMsg.LtIdList=[-1];
}
});
}, },
getUser(){ getUser(){
......
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