Commit 879fbb19 authored by youjie's avatar youjie

no message

parent 04f27a99
...@@ -143,9 +143,9 @@ ...@@ -143,9 +143,9 @@
</el-table-column> </el-table-column>
<el-table-column <el-table-column
v-else v-else
prop="WageMoney" label="追加工资"
label="工资"
show-overflow-tooltip> show-overflow-tooltip>
<template slot-scope="scope"> + {{ scope.row.WageMoney }}</template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
label="是否已发放" label="是否已发放"
......
...@@ -99,7 +99,7 @@ ...@@ -99,7 +99,7 @@
<td>{{item.DeptName}}</td> <td>{{item.DeptName}}</td>
<td>{{item.PostName?item.PostName:'-'}}</td> <td>{{item.PostName?item.PostName:'-'}}</td>
<td>{{item.EmName}}</td> <td>{{item.EmName}}</td>
<td>{{item.OrderId}}</td> <td><span class="cursor-p" @click="clickUrl(item,1)">{{item.OrderId}}</span></td>
<td>{{item.OrderProfit}}</td> <td>{{item.OrderProfit}}</td>
<td>{{item.YCommission}}</td> <td>{{item.YCommission}}</td>
<td>{{item.Commission}}</td> <td>{{item.Commission}}</td>
...@@ -186,6 +186,28 @@ ...@@ -186,6 +186,28 @@
} }
}, },
methods: { methods: {
clickUrl(item,type){
if(type==2){//线索
}else{
this.OrderStatistics(item)
}
},
// 订单统计
OrderStatistics(item){
let data = [
{
path: "customerOrder",
OrderId: item.OrderId
},
];
let href = this.domainManager().crmRoutingUrl +
"automaticLogin?token=" +
this.getLocalStorage().token +
"&data=" +
JSON.stringify(data);
window.open(href);
},
GenerateScale(item){ GenerateScale(item){
if(!item.WageReId){ if(!item.WageReId){
return return
......
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