|
|
@@ -2,20 +2,41 @@
|
|
|
<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 class="ml-10">首页</span>
|
|
|
</div>
|
|
|
</el-card>
|
|
|
-
|
|
|
<div class="flex flex-center flex-justify-between">
|
|
|
<el-card :shadow="hover" class="flex-child-average mt-20">
|
|
|
- <profile
|
|
|
- /></el-card>
|
|
|
+ <profile />
|
|
|
+ </el-card>
|
|
|
<div class="padding"></div>
|
|
|
<el-card :shadow="hover" class="flex-child-average mt-20">
|
|
|
- <div>33</div>
|
|
|
+ <data_show />
|
|
|
+ </el-card>
|
|
|
+ </div>
|
|
|
+ <div class="flex flex-center flex-justify-between">
|
|
|
+ <el-card
|
|
|
+ :shadow="hover"
|
|
|
+ class="flex-child-average mt-20"
|
|
|
+ style="height: 300px"
|
|
|
+ >
|
|
|
+ <agency :type="1" />
|
|
|
+ </el-card>
|
|
|
+ <div class="padding"></div>
|
|
|
+ <el-card
|
|
|
+ :shadow="hover"
|
|
|
+ class="flex-child-average mt-20"
|
|
|
+ style="height: 300px"
|
|
|
+ >
|
|
|
+ <agency :type="2" />
|
|
|
</el-card>
|
|
|
</div>
|
|
|
+ <el-card :shadow="hover" class="mt-20">
|
|
|
+ <read />
|
|
|
+ </el-card>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
@@ -28,9 +49,12 @@ name: '首页',
|
|
|
|
|
|
<script>
|
|
|
import Profile from '@/views/dash/compoents/profile.vue'
|
|
|
+import data_show from '@/views/dash/compoents/data_show.vue'
|
|
|
+import agency from '@/views/dash/compoents/agency.vue'
|
|
|
+import read from '@/views/dash/compoents/read.vue'
|
|
|
|
|
|
export default {
|
|
|
- components: { Profile }
|
|
|
+ components: { Profile, data_show, agency, read }
|
|
|
}
|
|
|
</script>
|
|
|
|