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.
119 lines
6.2 KiB
119 lines
6.2 KiB
<!--pages/order/info/index.wxml-->
|
|
<wxs module="order" src="../../order/order.wxs"></wxs>
|
|
<cu-custom bgColor="bg-blue" isBack="{{true}}">
|
|
<view slot="content">下单信息</view>
|
|
</cu-custom>
|
|
|
|
<view class="bg-white margin-top text-sg" style="padding: 0rpx 32rpx" wx:if="{{form}}">
|
|
<view class="flex flex-justify detail-layout" style="border-bottom:1px solid #f3f3f3">
|
|
<view class="flex">
|
|
<text class="text-gray" style="min-width:150rpx">品类汇总:</text>
|
|
<text class="text-black">{{form.paperInfoVOList.length}}个 ({{ form.paperStateStr }})</text>
|
|
</view>
|
|
<text class="text-{{order.orderStatusColor(form.orderStatus)}}">{{form.orderStatusStr}}</text>
|
|
</view>
|
|
<view class="flex detail-layout" style="min-height:80rpx;border-bottom:1px solid #f3f3f3">
|
|
<text class="text-gray" style="flex:2">品类</text>
|
|
<text class="text-gray" style="flex:1;text-align: center">价格(元/kg)</text>
|
|
<text class="text-gray" style="flex:1;text-align: center">重量(kg)</text>
|
|
</view>
|
|
<view wx:for="{{form.paperInfoVOList}}" wx:key="index" class="flex detail-layout" style="border-bottom:1px solid #f3f3f3">
|
|
<view class="flex" style="flex:2">
|
|
<text class="text-black">{{item.cateName}}</text>
|
|
<text class="text-gray text-df">({{item.paperStateStr}})</text>
|
|
</view>
|
|
<text class="text-black" style="flex:1;text-align: center">{{order.formatePrice(item.guidePrice)}}</text>
|
|
<text class="text-black" style="flex:1;text-align: center">{{item.weight}}</text>
|
|
</view>
|
|
<view class="flex flex-justify detail-layout">
|
|
<view class="flex" style="align-items: center;">
|
|
<text class="text-gray" style="min-width:150rpx">预估重量(吨):</text>
|
|
<text class="text-black text-bold">{{ order.formateWeight(form.estimateWeight) }}</text>
|
|
</view>
|
|
<view class="flex" style="align-items: center;">
|
|
<view class="text-gray" style="min-width:150rpx">预估金额(元):</view>
|
|
<view class="text-black text-bold">{{order.formatePrice(form.estimatePrice)}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="bg-white margin-top text-sg" style="padding: 0rpx 32rpx" wx:if="{{form}}">
|
|
<view class="flex detail-layout" style="border-bottom:1px solid #f3f3f3">
|
|
<text class="text-gray" style="min-width:150rpx">收货时间:</text>
|
|
<text class="text-black">{{ order.formateOrderDate(form.appointDateStr) }}</text>
|
|
<text class="text-black" style="margin-left:24rpx">{{ form.appointTimePeriodStr || '' }}</text>
|
|
</view>
|
|
<view class="flex" style="padding:22rpx 0rpx">
|
|
<text class="text-gray" style="min-width:150rpx">收货地址:</text>
|
|
<text class="text-black">{{ form.fullAddress }}</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="bg-white margin-top text-sg" style="padding: 0rpx 32rpx" wx:if="{{form && (source != 2)}}">
|
|
<view class="flex flex-justify detail-layout" style="border-bottom:1px solid #f3f3f3">
|
|
<view class="flex" style="flex:1;align-items: center;">
|
|
<view class="text-gray" style="min-width:150rpx">车辆需求:</view>
|
|
<view class="text-black">{{form.maxVehicleTypeStr}}</view>
|
|
</view>
|
|
<view class="flex" style="flex:1;align-items: center;">
|
|
<view class="text-gray" style="min-width:150rpx">结算方式:</view>
|
|
<view class="text-black">{{form.settlementTypeStr}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="flex detail-layout" style="border-bottom:1px solid #f3f3f3">
|
|
<view class="flex" style="flex:1;align-items: center;">
|
|
<view class="text-gray" style="min-width:150rpx">称重方式:</view>
|
|
<view class="text-black">{{form.weightTypeStr}}</view>
|
|
</view>
|
|
<view class="flex" style="flex:1;align-items: center;">
|
|
<view class="text-gray" style="min-width:150rpx">装货方式:</view>
|
|
<view class="text-black">{{form.shippingTypeStr||''}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="flex detail-layout">
|
|
<view class="flex" style="flex:1;align-items: center;">
|
|
<view class="text-gray text-sm">可进车辆:{{ form.maxVehicleTypeStr }}</view>
|
|
</view>
|
|
<view class="flex" style="flex:1;align-items: center;">
|
|
<view class="text-gray text-sm">车货距离:{{ form.transportDistance }}米</view>
|
|
</view>
|
|
<view class="flex" style="flex:1;align-items: center;">
|
|
<view class="text-gray text-sm">提货距离:{{ order.formateWeight(form.loadDistance) }}公里</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="bg-white margin-top text-sg" style="padding: 4rpx 32rpx" wx:if="{{form}}">
|
|
<view class="flex flex-justify detail-layout" style="border-bottom:1px solid #f3f3f3">
|
|
<view class="flex" style="align-items: center;">
|
|
<view class="text-gray" style="min-width:150rpx">专属商务:</view>
|
|
<view class="text-black" decode="{{true}}">{{form.customerManagerName}}</view>
|
|
</view>
|
|
<view class="flex" style="align-items: center;" data-index="{{form.customerMobileNumber}}" bindtap="phone">
|
|
<text class="cuIcon-mobilefill text-blue" style="font-size:15px;padding-top:4rpx"></text>
|
|
<view class="text-black" style="margin-right:18rpx">{{form.customerMobileNumber}}</view>
|
|
</view>
|
|
</view>
|
|
<view style="height:16rpx;"></view>
|
|
<view class="text-gray text-df" style="line-height:50rpx;">下单时间:{{ form.createTimeStr }}</view>
|
|
<view class="text-gray text-df" style="line-height:50rpx;">订单编号:{{ form.orderNo }}</view>
|
|
<view class="text-gray text-df" style="line-height:50rpx;">经营单位:{{ form.operationCenterName }}</view>
|
|
<view style="height:20rpx;"></view>
|
|
</view>
|
|
|
|
<view class="bg-white margin-top text-sm" style="padding: 24rpx 32rpx" wx:if="{{form&&form.remarkList.length}}">
|
|
<view class="text-gray text-sg">备注:</view>
|
|
<view class="item-remark" wx:for="{{form.remarkList}}" wx:key="index">
|
|
<view class="flex flex-justify">
|
|
<view class="text-gray">{{item.operatingName}}</view>
|
|
<view class="flex flex-center">
|
|
<view class="text-gray" style="margin-right:8rpx">{{item.remarkByteStr}}</view>
|
|
<view class="text-gray" style="padding-top:2rpx">{{item.operatingTime}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="text-black text-sg" style="margin-top:6rpx">{{item.remark}}</view>
|
|
</view>
|
|
</view>
|
|
<view style="height:24rpx;"></view>
|
|
|
|
<wux-dialog id="wux-dialog"></wux-dialog>
|