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

28 lines
1.4 KiB

<!--pages/agent/detail/delivery-info/delivery-info.wxml-->
<wxs module="agent" src="../../../agent/index.wxs"></wxs>
<wxs module="formate" src="../../../../pages/formate.wxs"></wxs>
<view class=" margin-top"/>
<view class="bg-white" style="padding:24rpx 30rpx" wx:if="{{orderInfo.millSupplierId}}">
<view class="text-df text-gray" style="border-bottom:2rpx solid #f3f3f3;padding-bottom:24rpx">送货信息</view>
<view class="flex flex-justify text-sg" style="margin-top:20rpx">
<text class="text-black">纸厂开户账号</text>
<view class="flex flex-center">
<text class="text-gray" style="margin-right:12rpx">{{orderInfo.millSupplierId || ''}}</text>
<wux-button outline type="positive" size="copy" bind:click="clipboard" wx:if="{{orderInfo.millSupplierId}}">复制
</wux-button>
</view>
</view>
<view class="flex flex-justify text-sg" style="margin-top:20rpx">
<text class="text-black">纸厂订单号</text>
<text class="text-gray">{{orderInfo.millDeliveryOrderId || ''}}</text>
</view>
<view class="flex flex-justify text-sg" style="margin-top:20rpx">
<text class="text-black">货到时间</text>
<text class="text-gray">{{orderInfo.paperMillDeliveryTime || ''}}</text>
</view>
<view class="flex flex-justify text-sg" style="margin-top:20rpx;align-items: flex-start">
<text class="text-black" style="min-width:180rpx">注意事项</text>
<text class="text-gray">{{orderInfo.attenssion || ''}}</text>
</view>
</view>