1234567891011121314151617 |
- <!--pages/car/info.wxml-->
- <view class="container">
- <view class="height20"></view>
- <view class="width710">
- <view class="part">
- <van-cell-group>
- <van-field label="车牌号码" value="{{ info.licensePlate }}" readonly input-align="right" />
- <van-field label="车辆轴数" value="{{ info.vehicleAxleNumber }}" readonly input-align="right" />
- <van-field label="司机姓名" value="{{ info.driverName!='null'&&info.driverName!=''?info.driverName:'' }}" readonly input-align="right" />
- <van-field label="司机号码" value="{{ info.driverMobile!='null'&&info.driverMobile!=''?info.driverMobile:'' }}" readonly input-align="right" />
- <van-field label="创建时间" value="{{ info.createTime }}" readonly input-align="right" />
- </van-cell-group>
- </view>
- </view>
- </view>
- <wxs module="filters" src="../../utils/filter.wxs"></wxs>
|