Commit 895b3a1d authored by liudong1993's avatar liudong1993

团控列表 增加op提成跳转

parent 95d18838
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
</el-select> </el-select>
</span> </span>
</li> </li>
<li> <li v-if="msg.TrPerIods==0">
<span> <span>
<em>员工</em> <em>员工</em>
<el-select filterable v-model='msg.EmployeeId' > <el-select filterable v-model='msg.EmployeeId' >
...@@ -116,6 +116,7 @@ ...@@ -116,6 +116,7 @@
PeriodsId:"", PeriodsId:"",
TCID:"", TCID:"",
TCNUM:"", TCNUM:"",
TrPerIods:0,
RB_Branch_Id:-1 RB_Branch_Id:-1
}, },
DataList:[], DataList:[],
...@@ -130,7 +131,7 @@ ...@@ -130,7 +131,7 @@
this.msg.PeriodsId=this.$route.query.PeriodsId?this.$route.query.PeriodsId:this.msg.PeriodsId; this.msg.PeriodsId=this.$route.query.PeriodsId?this.$route.query.PeriodsId:this.msg.PeriodsId;
this.msg.EmployeeId=this.$route.query.EmployeeId?Number(this.$route.query.EmployeeId):this.msg.EmployeeId; this.msg.EmployeeId=this.$route.query.EmployeeId?Number(this.$route.query.EmployeeId):this.msg.EmployeeId;
this.msg.RB_Branch_Id=this.$route.query.RB_Branch_Id?Number(this.$route.query.RB_Branch_Id):this.msg.RB_Branch_Id; this.msg.RB_Branch_Id=this.$route.query.RB_Branch_Id?Number(this.$route.query.RB_Branch_Id):this.msg.RB_Branch_Id;
this.msg.TrPerIods=this.$route.query.TrPerIods?Number(this.$route.query.TrPerIods):this.msg.TrPerIods;
}, },
mounted(){ mounted(){
this.getCompany(); this.getCompany();
......
...@@ -840,6 +840,9 @@ ...@@ -840,6 +840,9 @@
<el-dropdown-item> <el-dropdown-item>
<div @click='exportExcel_singleRoom(item)'>{{$t('op.FFBDowmLoad')}} </div> <div @click='exportExcel_singleRoom(item)'>{{$t('op.FFBDowmLoad')}} </div>
</el-dropdown-item> </el-dropdown-item>
<el-dropdown-item>
<div @click='goOPCommissionInfo(item.TCID)'>查看OP提成 </div>
</el-dropdown-item>
</el-dropdown-menu> </el-dropdown-menu>
</el-dropdown> </el-dropdown>
...@@ -1196,6 +1199,15 @@ ...@@ -1196,6 +1199,15 @@
let reg = /^http(s)?:\/\/(.*?)\// let reg = /^http(s)?:\/\/(.*?)\//
this.downloadFileRename(item.FullUrl.replace(reg, ''), item.Name) this.downloadFileRename(item.FullUrl.replace(reg, ''), item.Name)
}, },
goOPCommissionInfo(tcid){
this.$router.push({
path: "OpComPersonDetails",
query: {
TrPerIods: tcid,
blank:'y'
}
});
},
//翻页 //翻页
handleCurrentChange(val) { handleCurrentChange(val) {
this.queryMsg.pageIndex = val this.queryMsg.pageIndex = val
......
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