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.
99 lines
6.0 KiB
99 lines
6.0 KiB
<!--pages/process/order-check/index.wxml-->
|
|
<wxs module="formate" src="../../../pages/formate.wxs"></wxs>
|
|
<cu-custom bgColor="bg-white" isBack="{{true}}">
|
|
<view slot="content">代卖预约</view>
|
|
</cu-custom>
|
|
|
|
<view class="bg-white flex flex-center" style="height:90rpx">
|
|
<view class="text-df flex flex-center" style="flex:1">提交订单</view>
|
|
<text class="cuIcon-right text-black" style="font-size:36rpx;"></text>
|
|
<view class="text-df flex flex-center" style="flex:1">等待预约</view>
|
|
<text class="cuIcon-right text-black" style="font-size:36rpx;"></text>
|
|
<view class="text-df flex flex-center" style="flex:1">线下送货</view>
|
|
<text class="cuIcon-right text-black" style="font-size:36rpx;"></text>
|
|
<view class="text-df flex flex-center" style="flex:1">余额提现</view>
|
|
</view>
|
|
|
|
<view class="flex flex-center bg-white margin-top" style="justify-content: flex-start;padding: 24rpx 32rpx;border-bottom:1rpx solid #f3f3f3">
|
|
<view style="height:24rpx;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 bind:click="chooseCustomer">
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="flex flex-center text-black">纸厂名称</view>
|
|
<view class="{{factoryDetail.name ? 'text-black' : 'text-gray'}}">{{factoryDetail.name}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell id="cateName" clickable center is-link arrow-direction="down" bind:click="showPicker">
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="flex flex-center text-black">纸品品类</view>
|
|
<view class="{{cateName ? 'text-black' : 'text-gray'}}">{{cateName || '请选择品类'}}</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-cell clickable center bind:click="chooseCustomer">
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="flex flex-center text-black">预估单价(元/吨)</view>
|
|
<view class="text-sg text-black">
|
|
<text>{{formate.formatePrice(form.unitPrice)}}</text>
|
|
<text class="text-sm" wx:if="{{form.publicSubsidies}}">(已含补贴{{formate.formatePrice(form.publicSubsidies)}}元/吨)</text>
|
|
</view>
|
|
</view>
|
|
</van-cell>
|
|
<van-field id="totalEstimatedWeight" type="digit" placeholder="请输入预估重量" clearable input-align="right" bind:change="onInput">
|
|
<view slot="label" class="flex text-black" style="width:200rpx">
|
|
<text>预估重量(吨)</text>
|
|
</view>
|
|
</van-field>
|
|
<van-cell id="deliveryTime" clickable center is-link arrow-direction="down" bind:click="showPicker">
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="flex flex-center text-black">货到时间</view>
|
|
<view class="{{form.deliveryTime ? 'text-black' : 'text-gray'}}">{{form.deliveryTime||'请选择货到时间'}}</view>
|
|
</view>
|
|
</van-cell>
|
|
|
|
<view class="flex flex-center bg-white" style="margin-top: 16rpx;justify-content: flex-start;padding: 24rpx 32rpx;border-bottom:1rpx solid #f3f3f3">
|
|
<view style="height:24rpx;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 class="bg-white cu-list grid col-4 no-border" style="padding: 16rpx 24rpx 0rpx 24rpx" wx:if="{{vateList.length}}">
|
|
<view class="cu-item" wx:for="{{vateList}}" wx:key="index" style="padding: 0rpx 8rpx 8rpx 8rpx">
|
|
<van-button plain round size="small" data-index="{{index}}" custom-style="padding: 0;min-width: 160rpx;" bind:click="tagChange">{{item.plateNumber}}</van-button>
|
|
</view>
|
|
</view>
|
|
<van-cell clickable center wx:for="{{vehicleList}}" wx:key="index" data-index="{{index}}" bind:click="showKeyboard">
|
|
<view slot="title" class="flex flex-justify">
|
|
<view class="flex flex-center text-black text-sg">
|
|
<text class="text-sm" style="width: 14px;line-height: 14px;text-align: center;border-radius: 50%;border: 1px solid #999">{{index + 1}}</text>
|
|
<text style="margin-left: 8rpx">货车车牌:</text>
|
|
</view>
|
|
<view class="{{item.plateNumber ? 'text-black' : 'text-gray'}}" style="flex:1">{{item.plateNumber || '点击输入车牌号码'}}</view>
|
|
<text class="cuIcon-close text-gray" style="font-size:44rpx;" data-index="{{index}}" wx:if="{{vehicleList.length > 1}}" catchtap="deleteCate"></text>
|
|
</view>
|
|
</van-cell>
|
|
<view class="bg-white flex flex-center" style="height:90rpx;line-height:90rpx" bindtap="addCate">
|
|
<text class="cuIcon-roundadd text-blue" style="font-size: 16px;"></text>
|
|
<text class="text-blue text-sg" style="margin-left:8rpx">添加车辆</text>
|
|
</view>
|
|
|
|
<view class="flex flex-center bg-white" style="margin-top: 16rpx;justify-content: flex-start;padding: 24rpx 32rpx;border-bottom:1rpx solid #f3f3f3">
|
|
<view style="height:24rpx;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 class="bg-white" style="padding:24rpx 30rpx">
|
|
<van-textarea id="remark" bind:change="bindInput" placeholder="点击输入备注,最多100字"></van-textarea>
|
|
</view>
|
|
|
|
<view style="height:16rpx"></view>
|
|
<submit-layout>
|
|
<van-button type="info" loading="{{requesting}}" custom-style="height:88rpx;width:688rpx" bind:click="submitForm">提交订单</van-button>
|
|
</submit-layout>
|
|
|
|
<vehicle-keyboard id="wux-keyboard" safeBottom="{{safeBottom}}" bind:change="onPlatenumber"></vehicle-keyboard>
|
|
<van-popup position="bottom" show="{{ visible }}" bind:close="onHide" z-index="29">
|
|
<van-picker show-toolbar title="{{toolbar}}" columns="{{ columns }}" bind:cancel="onHide" bind:confirm="onConfirm" />
|
|
</van-popup>
|
|
<van-dialog id="van-dialog" use-slot title="邀请码" show="{{ show }}" transition="fade" async-close bind:confirm="onCodeing">
|
|
<input class="dialog-input" placeholder-style="color:#aaa;" maxlength="8" placeholder="填写业务人员邀请码(必填)" bindinput="bindInput" />
|
|
</van-dialog>
|
|
<!-- <van-dialog id="van-dialog" /> -->
|
|
<notification id="qn-notification"/>
|