| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <div class="flex flex-col padding">
- <div class="flex flex-center mt-20">
- <div class="bold font-16 grey flex-child-average text-left" style="margin-left: 50px">
- <span>历史数据({{ total }})</span>
- </div>
- <div class="flex flex-center flex-child-average flex-justify-end" style="margin-right: 50px">
- <base-button class="mr-20" icon="User" title="授权查看" type="0"/>
- <base-button icon="Upload" title="上传文件"/>
- </div>
- </div>
- <folder_list :folder="folderList" :total="total" :type="1" class="mt-20"/>
- </div>
- </template>
- <script>
- import folder_list from './folder_list.vue'
- export default {
- name: "historical",
- components: {folder_list},
- props: {
- folderList: Array,
- total: String
- }
- }
- </script>
- <style scoped>
- </style>
|