Commit 06154fee authored by youjie's avatar youjie

no message

parent 57fd790e
......@@ -316,4 +316,10 @@
.groupTourOrder_count_gray {
color: #999999;
}
</style>
\ No newline at end of file
.cursor-p{
cursor: pointer;
}
.cursor-p.active{
color: #409EFF;
}
</style>
......@@ -23,12 +23,6 @@
text-decoration: underline;
color: red;
}
.cursor-p{
cursor: pointer;
}
.cursor-p:hover{
color: #409EFF;
}
</style>
<template>
<div class="flexOne domesticCommissiondetails">
......@@ -118,7 +112,7 @@
<!-- <td></td> -->
<td>{{item.PostName?item.PostName:'-'}}</td>
<td>{{item.EmName}}</td>
<td><span class="cursor-p" @click="!disabled?clickUrl(item,1):''">{{item.OrderId}}</span></td>
<td><span class="cursor-p" :class="[!disabled?'active':'']" @click="!disabled?clickUrl(item,1):''">{{item.OrderId}}</span></td>
<td>{{item.OrderTypeName}}</td>
<td style="font-size: 12px;" :style="{'cursor':item.TCID?'pointer':''}"
@click="!disabled&&item.TCID?goTravel(item.TCID):''">
......@@ -141,7 +135,7 @@
<td>{{item.CommissionRate?item.CommissionRate+'%':'-'}}</td>
<td @click="GenerateScale(item)">
<span
:class="item.WageReId?'cursor-p':''">{{item.WageType==1?'新员工比例':item.WageType==2?'上季度定档':'-'}}</span>
:class="item.WageReId?'cursor-p active':''">{{item.WageType==1?'新员工比例':item.WageType==2?'上季度定档':'-'}}</span>
</td>
<td>{{item.EmName!='微途'&&item.BonusMoney?item.BonusMoney:'-'}}</td>
<td>{{item.EmName!='微途'&&item.BonusRate?item.BonusRate+'%':'-'}}</td>
......@@ -253,7 +247,8 @@
name: 'erpCustomerOrderDay',
query: {
blank: 'y',
OrderId: item.OrderId
OrderId: item.OrderId,
EnterId: item.EmpId,
}
});
// if(type==2){//线索
......
......@@ -128,7 +128,7 @@
</span>
</td>
<td>{{item.OrderId}}</td>
<td><span class="cursor-p" :class="[!disabled?'active':'']" @click="!disabled?clickUrl(item):''">{{item.OrderId}}</span></td>
<td>{{item.TCProfit}}</td>
<td>{{item.PeopleCount}}</td>
<td>{{item.CommissionMoney}}</td>
......@@ -223,6 +223,16 @@
this.getDerpartMent() //部门
},
methods: {
clickUrl(item){
this.$router.push({
name: 'erpCustomerOrderDay',
query: {
blank: 'y',
OrderId: item.OrderId,
EnterId: item.UserId,
}
});
},
getDerpartMent() {
//获取部门
this.apipost(
......
......@@ -615,7 +615,7 @@
let userInfo=this.getLocalStorage();
this.employeeMsg.GroupId = userInfo.RB_Group_id; //集团ID
// this.msg.EnterID = userInfo.EmployeeId;
this.msg.EnterId = this.$route.query.EnterId?this.$route.query.EnterId:0//userInfo.EmployeeId;
this.msg.StartTime = this.getBeforeDate(0, new Date())
this.msg.EndTime = this.getBeforeDate(0, new Date())
this.DatelistBM = [new Date(this.msg.StartTime),new Date()]
......
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