| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <view class="container">
- <view class="card">
- <view class="title">司机详情</view>
-
- <view class="row">
- <text class="label">司机姓名:</text>
- <text class="value">{{info.operationName}}</text>
- </view>
-
- <view class="row">
- <text class="label">司机ID:</text>
- <text class="value">{{info.operationOpenId}}</text>
- </view>
-
- <view class="row">
- <text class="label">联系电话:</text>
- <text class="value">{{info.operationPhone || '暂无'}}</text>
- </view>
-
- <view class="row">
- <text class="label">所属公司:</text>
- <text class="value">{{info.companyName || '未绑定'}}</text>
- </view>
-
- <view class="row">
- <text class="label">在线状态:</text>
- <text class="value {{info.operationType == 2 ? 'green' : 'gray'}}">
- <!-- {{info.operationType == 2 ? '在线' : '离线'}} -->
- <text wx:if="{{info.operationType == 1}}">空闲</text>
- <text wx:if="{{info.operationType == 2}}">在线</text>
- </text>
- </view>
-
- <view class="row">
- <text class="label">当前位置:</text>
- <text class="value">{{info.addressName || '未定位'}}</text>
- </view>
-
- <view class="map-box">
- <map
- longitude="{{info.longitude}}"
- latitude="{{info.latitude}}"
- scale="16"
- markers="{{markers}}"
- show-location
- ></map>
- </view>
- </view>
- </view>
|