| 123456789101112131415161718192021222324252627 |
- <view class="toptip {{tipStaus}} text-white {{tipType}}" style='top:{{CustomBar}}px;'>{{tipText}}</view>
- <cu-custom bgColor="bg-color" isBack="{{true}}" title="修改订单">
- <!-- <view slot="content">修改用户名</view> -->
- </cu-custom>
- <view class="info_item">
- <view class="info_label">承运商</view>
- <input type="text" class="info_val" placeholder="请输入承运商" value="{{transportName}}" bindinput="setTransportName"></input>
- </view>
- <view class="info_item">
- <view class="info_label">运输方式</view>
- <picker mode="selector" bindchange="setTransportType" name="transport" value="{{transport}}" range="{{transportType}}" range-key="name">
- <view class="info_val">
- {{transport+'' ? transportType[transport].name : '请选择'}}
- </view>
- </picker>
- </view>
- <view class="info_item">
- <view class="info_label">司机名称</view>
- <input type="text" class="info_val" placeholder="请输入承运商" value="{{driverName}}" bindinput="setDriverName"></input>
- </view>
- <view class="info_item">
- <view class="info_label">车牌</view>
- <input type="text" class="info_val" placeholder="请输入车牌" value="{{plateNum}}" bindinput="setPlateNum"></input>
- </view>
- <view class="addLabel" bindtap="addLabel">
- <text>保存</text>
- </view>
|