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.
40 lines
627 B
40 lines
627 B
2 years ago
|
<template>
|
||
|
<view class="page-content my-bg">
|
||
|
<cu-custom bgColor="bg-gradual-pink" :isBack="true">
|
||
|
<block slot="backText">返回</block>
|
||
|
<block slot="content">列表</block>
|
||
|
</cu-custom>
|
||
|
<view class="">
|
||
|
<analysis-card />
|
||
|
</view>
|
||
|
<view class="margin bg-white radius">
|
||
|
<view class="margin">
|
||
|
<area-time />
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import areaTime from '../../area-time.vue'
|
||
|
import analysisCard from '../../analysis-card.vue'
|
||
|
export default {
|
||
|
components: {
|
||
|
areaTime,analysisCard
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|