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

24 lines
962 B

<!--pages/agent/detail/order-info/order-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 wx:if="{{orderInfo}}">
<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.orderId}}</text>
</view>
<view class="flex flex-justify text-sg" style="margin-top:20rpx">
<text class="text-black">创建时间</text>
<text class="text-gray">{{orderInfo.createTime}}</text>
</view>
<view class="flex flex-justify text-sg" style="margin-top:20rpx;align-items: flex-start">
<text class="text-black" style="min-width:200rpx">订单备注</text>
<text class="text-gray">{{orderInfo.remark || ''}}</text>
</view>
</wux-accordion>
</wux-accordion-group>
</view>