Commit d0c74c84 authored by youjie's avatar youjie

no message

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