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.
32 lines
1.5 KiB
32 lines
1.5 KiB
<!--pages/agent/detail/reserve-info/reserve-info.wxml-->
|
|
<wxs module="agent" src="../../../agent/index.wxs"></wxs>
|
|
<wxs module="formate" src="../../../../pages/formate.wxs"></wxs>
|
|
|
|
<view style="margin-top:16rpx"></view>
|
|
<van-collapse value="{{ activeNames }}" bind:change="onChange" wx:if="{{orderInfo}}">
|
|
<van-collapse-item content-class="collapse-item" name="1">
|
|
<view slot="title" class="text-gray">预约信息</view>
|
|
<view style="padding:24rpx 30rpx">
|
|
<view class="flex flex-justify text-sg">
|
|
<text class="text-black">纸品品类</text>
|
|
<text class="text-gray">{{orderInfo.paperCategoryName}}</text>
|
|
</view>
|
|
<view class="flex flex-justify text-sg" style="margin-top:20rpx">
|
|
<text class="text-black">预估单价</text>
|
|
<text class="text-gray">{{formate.formatePrice2(orderInfo.paperCategoryPrice)}}</text>
|
|
</view>
|
|
<view class="flex flex-justify text-sg" style="margin-top:20rpx">
|
|
<text class="text-black">预计重量</text>
|
|
<text class="text-gray">{{formate.formateWeight(orderInfo.totalEstimatedWeight)}}</text>
|
|
</view>
|
|
<!-- <view class="flex flex-justify text-sg" style="margin-top:20rpx">
|
|
<text class="text-black">货车数量</text>
|
|
<text class="text-gray">{{orderInfo.orderItems.length}}辆</text>
|
|
</view> -->
|
|
<view class="flex flex-justify text-sg" style="margin-top:20rpx">
|
|
<text class="text-black">货到时间</text>
|
|
<text class="text-gray">{{orderInfo.deliveryTime}}</text>
|
|
</view>
|
|
</view>
|
|
</van-collapse-item>
|
|
</van-collapse>
|