| | |
| | | </el-table-column> |
| | | </el-table> |
| | | <div v-if="showMoreBtn" class="btn-more font-small"> |
| | | <el-link type="primary" @click="showMore = !showMore"> |
| | | <el-link type="success" @click="showMore = !showMore"> |
| | | {{ showMore ? '收起更多' : '查看更多' }} |
| | | </el-link> |
| | | </div> |
| | |
| | | |
| | | const tableData = computed(() => { |
| | | const l = props.data.map((value) => { |
| | | const time = value.subtask.executionendtime |
| | | ? value.subtask.executionendtime |
| | | : value.subtask.executionstarttime |
| | | const time = value.subtask.executionstarttime |
| | | ? value.subtask.executionstarttime |
| | | : value.subtask.executionendtime |
| | | value.updateTime = time |
| | | return value |
| | | }) |
| | |
| | | const title = row.scene.name |
| | | const lnglat = [row.scene.longitude, row.scene.latitude] |
| | | const img = scene_1 |
| | | mapUtil.clearViews() |
| | | marks.drawMarker(title, lnglat, img) |
| | | mapUtil.setFitView() |
| | | // mapUtil.clearViews() |
| | | // marks.drawMarker(title, lnglat, img) |
| | | // mapUtil.setFitView() |
| | | mapUtil.setCenter(lnglat) |
| | | mapUtil.setZoomSmall() |
| | | |
| | | mapStore.focusMarker = row |
| | | } |