| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <view class="bg">
- <view class="logistics-top__bg">
- <view class="logistics-top">
- <view class="logistics-top__text">买家信息</view>
- <image class="logistics-top__head" src="{{order.wx_user.head}}"></image>
- <view class="logistics-top__name">{{order.wx_user.nickname}}</view>
- </view>
- </view>
- <view class="orderDetail-address" wx:key="{{index}}" wx:if="{{order.status !== 'unpay' && order.status !== 'closed'}}">
- <view class="orderDetail-address__left"></view>
- <view class="orderDetail-address__right">
- <view class="orderDetail-address__info">
- <view class="orderDetail-address__name">收件人:{{order.contact}}</view>
- <view class="orderDetail-address__tel">{{order.tel}}</view>
- <view class="clean"></view>
- </view>
- <view class="orderDetail-address__more ellipsisLn">{{order.address}}</view>
- </view>
- </view>
- <view class="logistics-main">
- <view class="logistics-main__line logistics-main__border">
- <view class="logistics-main__title">物流公司</view>
- <input type="text" class="logistics-main__input" placeholder-class="text-placeholder" placeholder="请填写寄件物流公司名称" value="{{company}}" bindinput="bindCompany" />
- </view>
- <view class="logistics-main__line">
- <view class="logistics-main__title">单号</view>
- <view class="logistics-main__qcode" bindtap="getqcode"></view>
- <input type="number" class="logistics-main__qcinput" placeholder-class="text-placeholder" placeholder="请填写寄件物流单号" value="{{express}}" bindinput="bindExpress" />
- </view>
- </view>
- <view class="logistics-main" wx:if="{{secondshow}}">
- <view class="logistics-main__line logistics-main__border">
- <view class="logistics-main__title">物流公司</view>
- <input type="text" class="logistics-main__input" placeholder-class="text-placeholder" placeholder="请填写寄件物流公司名称" value="{{company1}}" bindinput="bindCompany1" />
- </view>
- <view class="logistics-main__line">
- <view class="logistics-main__title">单号</view>
- <view class="logistics-main__qcode" bindtap="getqcode1"></view>
- <input type="number" class="logistics-main__qcinput" placeholder-class="text-placeholder" placeholder="请填写寄件物流单号" value="{{express1}}" bindinput="bindExpress1" />
- </view>
- </view>
- <view class="logistics-main" wx:if="{{thirdshow}}">
- <view class="logistics-main__line logistics-main__border">
- <view class="logistics-main__title">物流公司</view>
- <input type="text" class="logistics-main__input" placeholder-class="text-placeholder" placeholder="请填写寄件物流公司名称" value="{{company2}}" bindinput="bindCompany2" />
- </view>
- <view class="logistics-main__line">
- <view class="logistics-main__title">单号</view>
- <view class="logistics-main__qcode" bindtap="getqcode2"></view>
- <input type="number" class="logistics-main__qcinput" placeholder-class="text-placeholder" placeholder="请填写寄件物流单号" value="{{express2}}" bindinput="bindExpress2" />
- </view>
- </view>
- <view class="plus-part" bindtap="pluslist" wx:if="{{!thirdshow}}">
- <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/orderlist/lplus.png" class="plus-img" />
- <view class="plus-text">添加物流信息</view>
- <view class="clear"></view>
- </view>
- <view class="mius-part" bindtap="miuslist" wx:if="{{secondshow}}">
- <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/orderlist/lmius.png" class="mius-img" />
- <view class="mius-text">删减物流信息</view>
- <view class="clear"></view>
- </view>
- <form bindsubmit="setExpress" report-submit="{{true}}" wx:if="{{order.status === 'processing'}}">
- <button class="button logistics-button" formType="submit" data-id="{{item.order_id}}">
- 确认发货
- </button>
- </form>
- <form bindsubmit="putExpress" report-submit="{{true}}" wx:if="{{order.status === 'dispatch'}}">
- <button class="button logistics-button" formType="submit" data-id="{{item.order_id}}">
- 修改物流
- </button>
- </form>
- <!-- <view class="logistics-button" bindtap="setExpress" wx:if="{{order.status === 'processing'}}">确认发货</view>
- <view class="logistics-button" bindtap="putExpress" wx:if="{{order.status === 'dispatch'}}">修改物流</view> -->
- </view>
|