|
@@ -1,12 +1,29 @@
|
|
<template>
|
|
<template>
|
|
- <div>空间</div>
|
|
|
|
|
|
+ <div class="space-index">
|
|
|
|
+ <statistics :statistics-msg="statisticsMsg" />
|
|
|
|
+ </div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
-<script>
|
|
|
|
-export default {
|
|
|
|
- name: "index"
|
|
|
|
|
|
+<script lang="ts">
|
|
|
|
+import { Vue, Component, Watch } from "vue-property-decorator";
|
|
|
|
+import Bus from "@/utils/bus";
|
|
|
|
+import statistics from "@/components/public/adm-statistics.vue";
|
|
|
|
+@Component({
|
|
|
|
+ name: 'space-index',
|
|
|
|
+ components: { statistics }
|
|
|
|
+})
|
|
|
|
+export default class extends Vue {
|
|
|
|
+ private statisticsMsg = {
|
|
|
|
+ title: '全部空间',
|
|
|
|
+ total: 93640
|
|
|
|
+ }
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
<style scoped>
|
|
|
|
+.space-index{
|
|
|
|
+ background: #fff;
|
|
|
|
+ padding: 12px;
|
|
|
|
+ height: 100%;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|