Commit 06154fee authored by youjie's avatar youjie

no message

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