editOrder.wxml 1.2 KB

123456789101112131415161718192021222324252627
  1. <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
  2. <cu-custom bgColor="bg-color" isBack="{{true}}" title="修改订单">
  3. <!-- <view slot="content">修改用户名</view> -->
  4. </cu-custom>
  5. <view class="info_item">
  6. <view class="info_label">承运商</view>
  7. <input type="text" class="info_val" placeholder="请输入承运商" value="{{transportName}}" bindinput="setTransportName"></input>
  8. </view>
  9. <view class="info_item">
  10. <view class="info_label">运输方式</view>
  11. <picker mode="selector" bindchange="setTransportType" name="transport" value="{{transport}}" range="{{transportType}}" range-key="name">
  12. <view class="info_val">
  13. {{transport+'' ? transportType[transport].name : '请选择'}}
  14. </view>
  15. </picker>
  16. </view>
  17. <view class="info_item">
  18. <view class="info_label">司机名称</view>
  19. <input type="text" class="info_val" placeholder="请输入承运商" value="{{driverName}}" bindinput="setDriverName"></input>
  20. </view>
  21. <view class="info_item">
  22. <view class="info_label">车牌</view>
  23. <input type="text" class="info_val" placeholder="请输入车牌" value="{{plateNum}}" bindinput="setPlateNum"></input>
  24. </view>
  25. <view class="addLabel" bindtap="addLabel">
  26. <text>保存</text>
  27. </view>