You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
6.2 KiB
150 lines
6.2 KiB
<!--pages/process/order-check/index.wxml-->
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">{{title}}</view>
|
|
</cu-custom>
|
|
|
|
<view wx:if="{{form}}">
|
|
<view class="flex flex-center info_status" style="justify-content: flex-start;" wx:if="{{form.status == 2}}">
|
|
<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>
|
|
<view class="flex flex-center info_status" style="justify-content: flex-start;" wx:elif="{{form.status == 3}}">
|
|
<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>
|
|
<view class="flex flex-center info_status" style="justify-content: flex-start;" wx:if="{{form.status == 4}}">
|
|
<image style="height:42rpx;width:42rpx" src="/assets/image/icon_payfor.png"></image>
|
|
<view class="text-white text-sg" style="margin-left:12rpx">待付款(请前往后台支付)</view>
|
|
</view>
|
|
<view class="flex flex-center info_status" style="justify-content: flex-start;" wx:if="{{form.status == 5}}">
|
|
<image style="height:42rpx;width:42rpx" src="/assets/image/icon_payfor.png"></image>
|
|
<view class="text-white text-sg" style="margin-left:12rpx">已完成</view>
|
|
</view>
|
|
<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.plateNumber || '请输入车牌号码'}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell>
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">废纸品类</view>
|
|
<view class="text-gray">{{form.productName}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell>
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">毛重(KG)</view>
|
|
<view class="text-gray">{{form.totalWeight}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell>
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">皮重(KG)</view>
|
|
<view class="text-gray">{{form.emptyWeight}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell>
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">净重(KG)</view>
|
|
<view class="text-gray">{{form.netWeight}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell wx:if="{{form.deductWeight}}">
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">扣重(KG)</view>
|
|
<view class="text-gray">-{{form.deductWeight}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell wx:if="{{form.deductPercent}}">
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">扣点(%)</view>
|
|
<view class="text-gray">{{form.deductPercent}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell>
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">定价员</view>
|
|
<view class="text-gray">{{form.inspectorName || ''}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell>
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">定价时间</view>
|
|
<view class="text-gray">{{form.inspectionTime || ''}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell>
|
|
<view slot="title" class="text-black">
|
|
<view>过毛重照片</view>
|
|
<view class="flex" style="margin-top:18rpx">
|
|
<van-image wx:for="{{form.totalWeighingPicture}}" wx:key="index" use-loading-slot width="150" height="100"
|
|
custom-class="page-icon" data-url="{{item.url}}" fit="cover" data-type="0" src="{{item.url}}" bind:click="viewImage">
|
|
<view class="image-load" slot="loading">
|
|
<van-loading type="spinner" size="32" />
|
|
</view>
|
|
</van-image>
|
|
</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell wx:if="{{form.emptyWeighingPicture && form.emptyWeighingPicture.length}}">
|
|
<view slot="title" class="text-black">
|
|
<view>过皮重照片</view>
|
|
<view class="flex" style="margin-top:18rpx">
|
|
<van-image wx:for="{{form.emptyWeighingPicture}}" wx:key="index" use-loading-slot width="150" height="100"
|
|
custom-class="page-icon" data-url="{{item.url}}" fit="cover" data-type="1" src="{{item.url}}" bind:click="viewImage">
|
|
<view class="image-load" slot="loading">
|
|
<van-loading type="spinner" size="32" />
|
|
</view>
|
|
</van-image>
|
|
</view>
|
|
</view>
|
|
</van-cell>
|
|
|
|
<van-index-anchor index="订单信息" />
|
|
<van-cell>
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">单价(元/KG)</view>
|
|
<view class="text-gray">{{form.settleUnitPrice}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<!-- <van-cell>
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">扣减金额(元)</view>
|
|
<view class="text-gray">{{form.deductPrice || ''}}</view>
|
|
</view>
|
|
</van-cell> -->
|
|
<van-cell>
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">结算金额(元)</view>
|
|
<view class="text-gray">{{form.settlePrice || ''}}</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>
|
|
<van-cell>
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">订单编号</view>
|
|
<view class="text-gray">{{form.id}}</view>
|
|
</view>
|
|
</van-cell>
|
|
</view>
|
|
<view style="height:{{16 + safeBottom}}rpx;"></view>
|
|
<view style="height:120rpx;" wx:if="{{form && form.status == 3}}"></view>
|
|
<view class="cu-bar bg-white foot" style="height:{{120 + safeBottom}}rpx;padding:0rpx 32rpx {{safeBottom}}rpx 32rpx;"
|
|
wx:if="{{form && form.status == 3}}">
|
|
<van-button plain type="default" custom-style="height:88rpx;width:254rpx" bind:click="repeatOrder">重新过皮重</van-button>
|
|
<van-button type="info" custom-style="margin-left:32rpx;height:88rpx;width:400rpx" bind:click="checkOrder">通过审核</van-button>
|
|
</view>
|
|
|
|
<van-dialog id="van-dialog" />
|