|
@@ -1,11 +1,21 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div>
|
|
<div>
|
|
|
- <el-card>
|
|
|
|
|
- <div>
|
|
|
|
|
|
|
+ <el-card :shadow="hover">
|
|
|
|
|
+ <div class="full-width flex flex-center flex-justify-start">
|
|
|
<el-icon><Bell /></el-icon>
|
|
<el-icon><Bell /></el-icon>
|
|
|
- <span>首页</span>
|
|
|
|
|
|
|
+ <span class="ml-10">首页</span>
|
|
|
</div>
|
|
</div>
|
|
|
</el-card>
|
|
</el-card>
|
|
|
|
|
+
|
|
|
|
|
+ <div class="flex flex-center flex-justify-between">
|
|
|
|
|
+ <el-card :shadow="hover" class="flex-child-average mt-20">
|
|
|
|
|
+ <profile
|
|
|
|
|
+ /></el-card>
|
|
|
|
|
+ <div class="padding"></div>
|
|
|
|
|
+ <el-card :shadow="hover" class="flex-child-average mt-20">
|
|
|
|
|
+ <div>33</div>
|
|
|
|
|
+ </el-card>
|
|
|
|
|
+ </div>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -17,7 +27,11 @@ name: '首页',
|
|
|
</route>
|
|
</route>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
-export default {}
|
|
|
|
|
|
|
+import Profile from '@/views/dash/compoents/profile.vue'
|
|
|
|
|
+
|
|
|
|
|
+export default {
|
|
|
|
|
+ components: { Profile }
|
|
|
|
|
+}
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped></style>
|
|
<style lang="scss" scoped></style>
|