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.
|
|
|
<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 '@/components/area-time.vue'
|
|
|
|
import analysisCard from '@/components/analysis-card/analysis-card.vue'
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
areaTime,analysisCard
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
|
|
</style>
|