Commit 0640d84b authored by youjie's avatar youjie

no message

parent dcd51478
......@@ -1118,7 +1118,7 @@
<CostmonthDetails v-if="GetDetail.OtherType==75||getTemplate(GetDetail)" :GetDetail="GetDetail">
</CostmonthDetails>
<!-- 相同对象付款单据 -->
<SamePayment :GetDetail="GetDetail">
<SamePayment v-if="GetDetail.Type==2&&GetDetail.TCIDAndTCNUMList.length>0&&GetDetail.TCNUM" :GetDetail="GetDetail">
</SamePayment>
<!-- 团成员已制单名单 -->
<template v-if="GetDetail.TCIDAndTCNUMList&&GetDetail.TCIDAndTCNUMList.length>0">
......
......@@ -1143,7 +1143,7 @@
<CostmonthDetails v-if="GetDetail.OtherType==75||getTemplate(GetDetail)" :GetDetail="GetDetail">
</CostmonthDetails>
<!-- 相同对象付款单据 -->
<SamePayment :GetDetail="GetDetail">
<SamePayment v-if="GetDetail.Type==2&&GetDetail.TCIDAndTCNUMList.length>0&&GetDetail.TCNUM" :GetDetail="GetDetail">
</SamePayment>
<!-- 团成员已制单名单 -->
<template v-if="GetDetail.TCIDAndTCNUMList&&GetDetail.TCIDAndTCNUMList.length>0">
......
......@@ -29,7 +29,7 @@
<table border="1" class="czBillModule _border_color_b Receipt_table" bordercolor="#c94052" style="border-collapse:collapse;width: 100%;" v-loading='loading'>
<tr>
<th>单号</th>
<th>付款对象</th>
<th width="300px">付款对象</th>
<th>原币</th>
<th>本位币</th>
<th>状态</th>
......@@ -37,7 +37,11 @@
</tr>
<tr class="_color_b" v-for="(item,index) in DataList" :key="index">
<td class="hover_text" @click="goDetail(item.FrID)" ><span>{{item.FrID}}</span></td>
<td>{{item.RemitterName}}</td>
<td>
<div style="width: 300px;">
{{item.RemitterName}}
</div>
</td>
<td>
{{item.WBMoney}}
</td>
......@@ -51,7 +55,11 @@
{{item.StatusName}}
</span>
</td>
<td style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">{{item.Description}}</td>
<td>
<div style="width: 300px; white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">
{{item.Description}}
</div>
</td>
</tr>
</table>
</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