|
@@ -66,29 +66,29 @@
|
|
|
<view class="textInfo">{{item.transportPrice}}元/吨</view>
|
|
|
</view>
|
|
|
<view class="car-type-item">
|
|
|
- <view class="left">算</view>
|
|
|
+ <view class="center">算</view>
|
|
|
<view class="textInfo">{{item.settlementPrice}}元/吨</view>
|
|
|
</view>
|
|
|
<view class="car-type-item">
|
|
|
- <view v-if='item.deductionAmount>=0' class="center">扣</view>
|
|
|
- <view v-if='item.deductionAmount<0' class="center">加</view>
|
|
|
+ <view v-if='item.deductionAmount>=0' class="right">扣</view>
|
|
|
+ <view v-if='item.deductionAmount<0' class="right">加</view>
|
|
|
<view v-if='item.deductionAmount<0' class="textInfo">{{-item.deductionAmount}}元</view>
|
|
|
<view v-if='item.deductionAmount>=0' class="textInfo">{{item.deductionAmount}}元</view>
|
|
|
</view>
|
|
|
<view class="car-type-item">
|
|
|
- <view class="right">服</view>
|
|
|
+ <view class="left">服</view>
|
|
|
<view class="textInfo">{{item.serviceCharge}}元</view>
|
|
|
</view>
|
|
|
<view class="car-type-item">
|
|
|
- <view class="left">税</view>
|
|
|
+ <view class="center">税</view>
|
|
|
<view class="textInfo">{{item.taxPoint}}元</view>
|
|
|
</view>
|
|
|
<view class="car-type-item">
|
|
|
- <view class="center">实</view>
|
|
|
+ <view class="right">实</view>
|
|
|
<view class="textInfo">{{item.amountActuallyPaid}}元</view>
|
|
|
</view>
|
|
|
<view class="car-type-item">
|
|
|
- <view class="right">合</view>
|
|
|
+ <view class="left">合</view>
|
|
|
<view class="textInfo">{{item.totalPayable}}元</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -99,7 +99,7 @@
|
|
|
<view class="form_top">流程</view>
|
|
|
<view class="content2">
|
|
|
<view v-for="(item,index) in auditList" :key='index' class="audit">
|
|
|
- <view class="row">
|
|
|
+ <view class="row" v-if='item.desc!="_PLACEHOLDER_"'>
|
|
|
<view class="row-left">
|
|
|
<view class="item1">
|
|
|
<view class="item-content">{{item.operatorTitle}}</view>
|
|
@@ -157,7 +157,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="row-line" v-if="index!= auditList.length - 1"></view>
|
|
|
+ <view class="row-line" v-if="index!= auditList.length - 1 &&item.desc!='_PLACEHOLDER_'"></view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</u-form>
|
|
@@ -228,6 +228,7 @@
|
|
|
},
|
|
|
methods: {
|
|
|
getList() {
|
|
|
+ var that =this
|
|
|
this.$api.doRequest('get', '/tranSettlementReport/getTranSettlementReport', {
|
|
|
batchId: this.id
|
|
|
}).then(res => {
|
|
@@ -241,7 +242,8 @@
|
|
|
}).then(res1 => {
|
|
|
this.$api.doRequest('get', '/commonUser/getHis', {
|
|
|
workflowId: res1.data.data[0].id,
|
|
|
- businessKey: this.id
|
|
|
+ businessKey: this.id,
|
|
|
+ branch:that.list[0].jointVentureParties?that.list[0].jointVentureParties:'zt'
|
|
|
}).then(response => {
|
|
|
uni.hideLoading()
|
|
|
for (let i = 0; i < response.data.data.length; i++) {
|