分包移动文件

This commit is contained in:
xk_guohonglei
2020-09-25 18:16:52 +08:00
parent d8a4e83078
commit f4e7782a86
7 changed files with 1110 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<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>