Commit 9f12491b authored by youjie's avatar youjie

no message

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