Commit 9f12491b authored by youjie's avatar youjie

no message

parent 4a2a315d
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
} }
.domesticCommission .singeRowTable tr td { .domesticCommission .singeRowTable tr td {
padding: 8px 0px; /* padding: 8px 0px; */
} }
.domesticCommission .hoverSpan span:hover { .domesticCommission .hoverSpan span:hover {
...@@ -26,6 +26,14 @@ ...@@ -26,6 +26,14 @@
.tdTwo{ .tdTwo{
padding: 5px 0 0 0; padding: 5px 0 0 0;
} }
.singeRowTableB{
width: 100%;
border-collapse: collapse;
}
.singeRowTableB tr td{
padding: 0;
border: 0;
}
</style> </style>
<template> <template>
<div class="flexOne domesticCommission"> <div class="flexOne domesticCommission">
...@@ -55,10 +63,14 @@ ...@@ -55,10 +63,14 @@
<tr> <tr>
<th>期数</th> <th>期数</th>
<th>名称</th> <th>名称</th>
<th>类型</th> <th>
<th>总提成</th> <table class="singeRowTable" border="0" cellspacing="0" cellpadding="0">
<th>所属公司提成</th> <tr><th style="width: 25%;">类型</th>
<th>财务单据</th> <th style="width: 25%;">总提成</th>
<th style="width: 25%;">所属公司提成</th>
<th style="width: 25%;">财务单据</th></tr>
</table>
</th>
<th>操作信息</th> <th>操作信息</th>
<th>操作</th> <th>操作</th>
</tr> </tr>
...@@ -66,36 +78,76 @@ ...@@ -66,36 +78,76 @@
<td>{{item.Periods}}</td> <td>{{item.Periods}}</td>
<td>{{item.Name}}</td> <td>{{item.Name}}</td>
<td> <td>
<div class="tdOne">销售</div> <table class="singeRowTableB" border="0" cellspacing="0" cellpadding="0">
<div class="tdTwo">OP</div> <tr>
</td> <td style="width: 25%;">
<td> <table class="singeRowTableB" border="0" cellspacing="0" cellpadding="0">
<div class="tdOne">{{item.SellSumPrice}}</div> <tr style="border-bottom: 1px solid #eeeeee;">
<div class="tdTwo">{{item.OPSumPrice}}</div> <td >
销售
</td> </td>
<td> </tr>
<div class="tdOne">{{item.BranchCommission?item.BranchCommission:'-'}}</div> <tr>
<div class="tdTwo">{{item.BranchOPCommission?item.BranchOPCommission:'-'}}</div> <td >
</td> OP
<td> </td>
<div class="tdOne"> </tr>
<span v-for="(x,y) in item.SellFinanceIdList" > </table>
<span style="cursor: pointer;text-decoration: underline;" @click='gofinancialdetail(x)'> </td>
{{x}} <td style="width: 25%;">
</span> <table class="singeRowTableB" border="0" cellspacing="0" cellpadding="0">
{{item.FinanceIdList.length == y+1 ?'':'、'}} <tr style="border-bottom: 1px solid #eeeeee;">
</span> <td >
</div> {{item.SellSumPrice?item.SellSumPrice:'-'}}
<div class="tdTwo"> </td>
<span v-for="(x,y) in item.OPFinanceIdList" > </tr>
<span style="cursor: pointer;text-decoration: underline;" @click='gofinancialdetail(x)'> <tr>
{{x}} <td >
</span> {{item.OPSumPrice?item.OPSumPrice:'-'}}
{{item.FinanceIdList.length == y+1 ?'':'、'}} </td>
</span> </tr>
</div> </table>
</td>
<td style="width: 25%;">
<table class="singeRowTableB" border="0" cellspacing="0" cellpadding="0">
<tr style="border-bottom: 1px solid #eeeeee;">
<td >
{{item.BranchCommission?item.BranchCommission:'-'}}
</td>
</tr>
<tr>
<td >
{{item.BranchOPCommission?item.BranchOPCommission:'-'}}
</td>
</tr>
</table>
</td>
<td style="width: 25%;">
<table class="singeRowTableB" border="0" cellspacing="0" cellpadding="0">
<tr style="border-bottom: 1px solid #eeeeee;">
<td >
<span v-for="(x,y) in item.SellFinanceIdList" >
<span style="cursor: pointer;text-decoration: underline;" @click='gofinancialdetail(x)'>
{{x}}
</span>
{{item.SellFinanceIdList.length == y+1 ?'':'、'}}
</span>
</td>
</tr>
<tr>
<td>
<span v-for="(x,y) in item.OPFinanceIdList" >
<span style="cursor: pointer;text-decoration: underline;" @click='gofinancialdetail(x)'>
{{x}}
</span>
{{item.OPFinanceIdList.length == y+1 ?'':'、'}}
</span>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td> </td>
<td> <td>
<div>{{item.CreateByStr}}</div> <div>{{item.CreateByStr}}</div>
......
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