You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
626 B
31 lines
626 B
<template>
|
|
<!-- 校园轨迹组件 -->
|
|
<view class="card radius shadow-warp bg-white">
|
|
<view class="card-head solid-bottom">
|
|
<view class="card-head-avatar bg-purple">
|
|
<view class="cuIcon-circle"></view>
|
|
</view>
|
|
<view class="card-head-title">校园打卡</view>
|
|
<!-- <view class="card-head-action">icon</view> -->
|
|
</view>
|
|
|
|
<view class="card-content">
|
|
<view class="map-wrap">
|
|
<history-map />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'LocationMap',
|
|
data() {
|
|
return {};
|
|
},
|
|
|
|
onLoad() {},
|
|
|
|
methods: {},
|
|
};
|
|
</script>
|
|
|