纸通宝SAAS仓库
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.
 

94 lines
4.3 KiB

<!--pages/process/order-check/index.wxml-->
<cu-custom bgColor="bg-white" isBack="{{true}}">
<view slot="content">定价详情</view>
</cu-custom>
<van-index-anchor index="订单信息" />
<van-cell>
<view slot="title" class="flex flex-justify">
<view class="text-black">客户姓名</view>
<view class="text-gray">客户姓名</view>
</view>
</van-cell>
<van-cell bind:click="showPlate">
<view slot="title" class="flex flex-justify">
<view class="text-black">车牌号码</view>
<view class="text-gray">{{form.plateNumber || '请输入车牌号码'}}</view>
</view>
</van-cell>
<van-cell bind:click="showCategory">
<view slot="title" class="flex flex-justify">
<view class="text-black">
<text>废纸品类</text>
<text class="text-red text-xl">*</text>
</view>
<view class="text-gray">请选择废纸品类</view>
</view>
</van-cell>
<van-index-anchor index="定价信息" />
<van-cell>
<view slot="title" class="flex flex-justify">
<view class="text-black">
<text>单价(元/KG)</text>
<text class="text-red text-xl">*</text>
</view>
<input id="price" type="number" placeholder-style="color:#aaa" style="text-align: right" maxlength="8"
placeholder="请输单价" value="{{form.price}}" bindinput="bindInput" />
</view>
</van-cell>
<van-cell>
<view slot="title" class="flex flex-justify">
<view class="text-black">
<text>扣重(KG)</text>
<text class="text-red text-xl">*</text>
</view>
<input id="weight" type="number" placeholder-style="color:#aaa" style="text-align: right" maxlength="8"
placeholder="请输入扣重重量" value="{{form.account}}" bindinput="bindInput" />
</view>
</van-cell>
<van-cell>
<view slot="title" class="flex flex-justify">
<view class="text-black">
<text>扣点(%)</text>
<text class="text-red text-xl">*</text>
</view>
<input id="weight" type="number" placeholder-style="color:#aaa" style="text-align: right" maxlength="8"
placeholder="请输入扣点比例" value="{{form.account}}" bindinput="bindInput" />
</view>
</van-cell>
<van-cell bind:click="paddingOrder">
<view slot="title" class="flex flex-justify">
<view class="text-black">是否无皮过磅</view>
<van-checkbox value="{{ form.checking }}"></van-checkbox>
</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">2000.00</view>
</view>
</van-cell>
<van-cell>
<view slot="title" class="flex flex-justify">
<view class="text-black">
<view>过毛重照片</view>
<view class="flex" style="margin-top:18rpx"></view>
<van-image use-loading-slot width="100" height="100" custom-class="page-icon" src="{{'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fa3.att.hudong.com%2F02%2F38%2F01300000237560123245382609951.jpg&refer=http%3A%2F%2Fa3.att.hudong.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=jpeg?sec=1613740606&t=80056f95b1e837a4d0f770c72a09cfe5'}}" bind:click="viewImage">
<view class="image-load" slot="loading"><van-loading type="spinner" size="32" /></view>
</van-image>
<van-image use-loading-slot width="100" height="100" custom-class="page-icon" src="{{'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fa3.att.hudong.com%2F02%2F38%2F01300000237560123245382609951.jpg&refer=http%3A%2F%2Fa3.att.hudong.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=jpeg?sec=1613740606&t=80056f95b1e837a4d0f770c72a09cfe5'}}" bind:click="viewImage">
<view class="image-load" slot="loading"><van-loading type="spinner" size="32" /></view>
</van-image>
</view>
</view>
</van-cell>
<view style="height:{{136 + safeBottom}}rpx;"></view>
<view class="cu-bar bg-white foot" style="height:{{120 + safeBottom}}rpx;padding:0rpx 32rpx {{safeBottom}}rpx 32rpx;" wx:if="{{form}}">
<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>
</view>
<van-dialog id="van-dialog" />
<vehicle-keyboard id="wux-keyboard" safeBottom="{{safeBottom}}" bind:change="onPlatenumber"></vehicle-keyboard>