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.
49 lines
2.6 KiB
49 lines
2.6 KiB
<!--pages/process/order-check/index.wxml-->
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">重新定价</view>
|
|
</cu-custom>
|
|
|
|
<scroll-view scroll-y="true" style="height:{{height}}rpx" wx:if="{{form}}" scroll-into-view="{{intoview}}">
|
|
<view class="flex flex-center bg-white" style="justify-content: flex-start;padding: 24rpx 32rpx;border-bottom:1rpx solid #f3f3f3">
|
|
<view style="height:30rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);"></view>
|
|
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">订单信息</view>
|
|
</view>
|
|
<van-cell clickable center>
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">客户姓名</view>
|
|
<view class="{{form.factoryCustomerName ? 'text-black' : 'text-gray'}}">{{form.factoryCustomerName || '请选择客户'}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell clickable center>
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">车牌号码</view>
|
|
<view class="{{form.plateNumber ? 'text-black' : 'text-gray'}}">{{form.plateNumber || '请输入车牌号码'}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell clickable center>
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="text-black">司机</view>
|
|
<view class="{{form.driverName ? 'text-black' : 'text-gray'}}">{{form.driverName || '请选择司机'}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<view style="height:16rpx"></view>
|
|
<view class="flex flex-center bg-white" style="justify-content: flex-start;padding: 24rpx 32rpx;border-bottom:1rpx solid #f3f3f3">
|
|
<view style="height:30rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);"></view>
|
|
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">纸品信息</view>
|
|
</view>
|
|
<view wx:for="{{form.productCategoryInfos}}" wx:key="index" id="item{{index}}">
|
|
<outside-check-item form="{{form}}" item="{{item}}" index="{{index}}" list="{{paperList}}" bind:change="onProductChange"/>
|
|
</view>
|
|
<view style="height:16rpx"></view>
|
|
</scroll-view>
|
|
|
|
<submit-layout wx:if="{{form}}">
|
|
<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="checkForm">通过审核</van-button>
|
|
</submit-layout>
|
|
|
|
<van-dialog id="van-dialog" />
|
|
<notification id="qn-notification"/>
|