bug修改
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
</view>
|
||||
<view>
|
||||
<text>运行年份</text>
|
||||
<text>{{form.year}}年</text>
|
||||
<text>{{form.year ? form.year + '年' : ''}}</text>
|
||||
</view>
|
||||
<view>
|
||||
<text>项目负责人</text>
|
||||
@@ -19,11 +19,11 @@
|
||||
</view>
|
||||
<view>
|
||||
<text>应付金额</text>
|
||||
<text>{{form.receivableAmount ? form.receivableAmount + '元' : '0'}}</text>
|
||||
<text>{{form.receivableAmount ? form.receivableAmount + '元' : ''}}</text>
|
||||
</view>
|
||||
<view>
|
||||
<text>实付金额</text>
|
||||
<text>{{form.paidAmount ? form.paidAmount + '元' : '0'}}</text>
|
||||
<text>{{form.paidAmount ? form.paidAmount + '元' : ''}}</text>
|
||||
</view>
|
||||
<view>
|
||||
<text>企业联系人</text>
|
||||
@@ -107,6 +107,7 @@
|
||||
<image wx:if='{{item.sendMethod === 1}}' src="../../assets/images/ems.png"></image>
|
||||
<text>{{item.sendMethod_dictText ? item.sendMethod_dictText : '未邮寄'}}</text>
|
||||
</view>
|
||||
<view class="way project-name">项目名称:{{item.chargeCompanyName}}</view>
|
||||
<view class="way-info">
|
||||
<view class="way-left">
|
||||
<text class="way-left-text green">票</text>
|
||||
@@ -121,7 +122,7 @@
|
||||
<view class="way-left">
|
||||
<text class="way-left-text blue">邮</text>
|
||||
<view class="way-center">
|
||||
<text>邮寄人:{{item.contactName}}</text>
|
||||
<text>邮寄人:{{item.mailName ? item.mailName : '无'}}</text>
|
||||
<text>邮寄时间:{{item.sendDate ? item.sendDate : '无'}}</text>
|
||||
</view>
|
||||
</view>
|
||||
@@ -134,4 +135,4 @@
|
||||
</view>
|
||||
<text class="no-data" style="height: 50px;" wx:if="{{!form.mailBill}}">暂无邮寄记录!</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
Reference in New Issue
Block a user