Browse Source

no message

feature/v1.5
xpz2018 4 years ago
parent
commit
20286314be
1 changed files with 14 additions and 7 deletions
  1. 21
      pages/process/outside-info/index.wxml

21
pages/process/outside-info/index.wxml

@ -7,7 +7,7 @@
<view class="flex flex-justify info_status" wx:if="{{form.orderStatus == 3}}"> <view class="flex flex-justify info_status" wx:if="{{form.orderStatus == 3}}">
<view class="flex"> <view class="flex">
<image style="height:42rpx;width:42rpx" src="/assets/image/icon_uncheck.png"></image> <image style="height:42rpx;width:42rpx" src="/assets/image/icon_uncheck.png"></image>
<view class="text-white text-sg" style="margin-left:12rpx">待过磅审核</view>
<view class="text-white text-sg" style="margin-left:12rpx">待审核</view>
</view> </view>
<view class="text-white" style="padding: 12rpx 0rpx 12rpx 12rpx" bindtap="checkForm">重新定价</view> <view class="text-white" style="padding: 12rpx 0rpx 12rpx 12rpx" bindtap="checkForm">重新定价</view>
</view> </view>
@ -82,10 +82,10 @@
<view class="text-gray">{{form.estimatedTotalAmount || '- -'}}</view> <view class="text-gray">{{form.estimatedTotalAmount || '- -'}}</view>
</view> </view>
</van-cell> </van-cell>
<van-cell wx:if="{{form.onsideGrossWeight}}">
<van-cell>
<view slot="title" class="flex flex-justify"> <view slot="title" class="flex flex-justify">
<view class="flex flex-center text-black">厂内毛重(公斤)</view> <view class="flex flex-center text-black">厂内毛重(公斤)</view>
<view class="text-gray">{{form.onsideGrossWeight || '- -'}}</view>
<view class="{{form.onsideGrossWeight ? 'text-gray' : 'text-red'}}">{{form.onsideGrossWeight || '暂无'}}</view>
</view> </view>
</van-cell> </van-cell>
<van-cell wx:if="{{form.onsideAndOffsiteDifferences}}"> <van-cell wx:if="{{form.onsideAndOffsiteDifferences}}">
@ -180,12 +180,19 @@
</view> </view>
<submit-layout wx:if="{{form && admin && form.orderStatus == 3}}"> <submit-layout wx:if="{{form && admin && form.orderStatus == 3}}">
<van-button plain type="default" custom-style="height:88rpx;width:254rpx" bind:click="checkForm">重新定价</van-button>
<van-button type="info" custom-style="margin-left:32rpx;height:88rpx;width:400rpx" bind:click="submitForm">审核通过</van-button>
<view class="flex flex-center" style="flex:1;justify-content: flex-start">
<text class="text-lg" wx:if="{{form.settleTotalAmount}}">金额:</text>
<text class="text-xxl text-price text-red" wx:if="{{form.settleTotalAmount}}">{{form.settleTotalAmount}}</text>
</view>
<van-button type="info" custom-style="height:88rpx;width:300rpx" bind:click="submitForm">通过审核</van-button>
</submit-layout> </submit-layout>
<submit-layout wx:if="{{form && admin && (form.orderStatus == 4 || form.orderStatus == 42)}}"> <submit-layout wx:if="{{form && admin && (form.orderStatus == 4 || form.orderStatus == 42)}}">
<van-button type="info" custom-style="height:88rpx;width:686rpx" bind:click="paymentOrder" wx:if="{{form.orderStatus == 4}}">进行支付</van-button>
<van-button type="info" custom-style="height:88rpx;width:686rpx" bind:click="paymentOrder" wx:if="{{form.orderStatus == 42}}">客户结算</van-button>
<view class="flex flex-center" style="flex:1;justify-content: flex-start">
<text class="text-lg" wx:if="{{form.settleTotalAmount}}">金额:</text>
<text class="text-xxl text-price text-red" wx:if="{{form.settleTotalAmount}}">{{form.settleTotalAmount}}</text>
</view>
<van-button type="info" custom-style="height:88rpx;width:300rpx" bind:click="paymentOrder" wx:if="{{form.orderStatus == 4}}">进行支付</van-button>
<van-button type="info" custom-style="height:88rpx;width:300rpx" bind:click="paymentOrder" wx:if="{{form.orderStatus == 42}}">客户结算</van-button>
</submit-layout> </submit-layout>
<view style="border-radius: 50rpx;position: fixed;bottom:160rpx;right:50rpx" wx:if="{{form}}"> <view style="border-radius: 50rpx;position: fixed;bottom:160rpx;right:50rpx" wx:if="{{form}}">

Loading…
Cancel
Save