纸通宝小程序
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.
 

30 lines
1.4 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 class="bg-white margin-top">
<wux-accordion-group default-current="{{['0']}}">
<wux-accordion>
<view slot="header" class="text-gray ">预约信息</view>
<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>
</wux-accordion>
</wux-accordion-group>
</view>