|
|
|
@ -1,9 +1,36 @@ |
|
|
|
<!--pages/process/order-check/index.wxml--> |
|
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}"> |
|
|
|
<view slot="content">定价详情</view> |
|
|
|
<view slot="content">过磅定价</view> |
|
|
|
</cu-custom> |
|
|
|
|
|
|
|
<view wx:if="{{form}}"> |
|
|
|
<view wx:if="{{form && step == 1}}"> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">客户姓名</view> |
|
|
|
<view class="text-gray">{{form.factoryCustomerName}}</view> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
<view class="text-black">过磅时间</view> |
|
|
|
<view class="text-gray">{{form.createTime}}</view> |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
<view class="flex flex-center flex-column"> |
|
|
|
<van-image wx:for="{{form.totalWeighingPicture}}" wx:key="index" use-loading-slot width="686rpx" height="400rpx" |
|
|
|
custom-class="big-icon" data-url="{{item.url}}" fit="cover" src="{{item.url}}" bind:click="viewImage"> |
|
|
|
<view class="image-load" slot="loading"> |
|
|
|
<van-loading type="spinner" size="32" /> |
|
|
|
</view> |
|
|
|
</van-image> |
|
|
|
</view> |
|
|
|
<view style="padding:48rpx 32rpx"> |
|
|
|
<van-button block type="danger" bind:click="cancelOrder">取消订单</van-button> |
|
|
|
<view style="height:36rpx"></view> |
|
|
|
<van-button block type="info" bind:click="nextStep">进行定价</van-button> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view wx:elif="{{form && step == 2}}"> |
|
|
|
<van-index-anchor index="订单信息" /> |
|
|
|
<van-cell> |
|
|
|
<view slot="title" class="flex flex-justify"> |
|
|
|
@ -91,9 +118,9 @@ |
|
|
|
</view> |
|
|
|
</van-cell> |
|
|
|
</view> |
|
|
|
<view style="height:{{136 + safeBottom}}rpx;"></view> |
|
|
|
<view style="height:{{136 + safeBottom}}rpx;" wx:if="{{form && step == 2}}"></view> |
|
|
|
<view class="cu-bar bg-white foot" style="height:{{120 + safeBottom}}rpx;padding:0rpx 32rpx {{safeBottom}}rpx 32rpx;" |
|
|
|
wx:if="{{form}}"> |
|
|
|
wx:if="{{form && step == 2}}"> |
|
|
|
<van-button plain type="default" custom-style="height:88rpx;width:254rpx" bind:click="cancelOrder">取消</van-button> |
|
|
|
<van-button type="info" custom-style="margin-left:32rpx;height:88rpx;width:400rpx" bind:click="priceOrder">提交 |
|
|
|
</van-button> |
|
|
|
|