|
|
|
@ -9,8 +9,8 @@ |
|
|
|
|
<text class="detail-status small-font" :class="pointDetail.checkDate != ''?'detail-status-on':'detail-status'">{{ pointDetail.checkDate != '' ? '已打卡' : '未打卡' }}</text> |
|
|
|
|
</view> |
|
|
|
|
<view class="detail-box"> |
|
|
|
|
<!-- <view>开始时间:{{ pointDetail.patrolDate }}</view> --> |
|
|
|
|
<view>打开时间:{{ pointDetail.checkDate }}</view> |
|
|
|
|
<view>开始时间:{{ pointDetail.patrolDate }}</view> |
|
|
|
|
<view>打卡时间:{{ pointDetail.checkDate }}</view> |
|
|
|
|
<view>打卡方式:{{ pointDetail.checkInWay }}</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
@ -225,12 +225,14 @@ export default { |
|
|
|
|
|
|
|
|
|
markertap(val) { |
|
|
|
|
console.log(val); |
|
|
|
|
console.log(this.datas) |
|
|
|
|
this.pointDetail = { |
|
|
|
|
patrolPointName: this.datas[val.detail.markerId].patrolPointName, |
|
|
|
|
checkDate: this.datas[val.detail.markerId].checkDate, |
|
|
|
|
longitude: this.datas[val.detail.markerId].longitude, |
|
|
|
|
dimension: this.datas[val.detail.markerId].dimension, |
|
|
|
|
checkInWay: this.datas[val.detail.markerId].checkInWay |
|
|
|
|
checkInWay: this.datas[val.detail.markerId].checkInWay, |
|
|
|
|
patrolDate: this.datas[val.detail.markerId].patrolDate |
|
|
|
|
}; |
|
|
|
|
this.$refs.popup.open('bottom'); |
|
|
|
|
|
|
|
|
|