historical.vue 825 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <div class="flex flex-col padding">
  3. <div class="flex flex-center mt-20">
  4. <div class="bold font-16 grey flex-child-average text-left" style="margin-left: 50px">
  5. <span>历史数据({{ total }})</span>
  6. </div>
  7. <div class="flex flex-center flex-child-average flex-justify-end" style="margin-right: 50px">
  8. <base-button class="mr-20" icon="User" title="授权查看" type="0"/>
  9. <base-button icon="Upload" title="上传文件"/>
  10. </div>
  11. </div>
  12. <folder_list :folder="folderList" :total="total" :type="1" class="mt-20"/>
  13. </div>
  14. </template>
  15. <script>
  16. import folder_list from './folder_list.vue'
  17. export default {
  18. name: "historical",
  19. components: {folder_list},
  20. props: {
  21. folderList: Array,
  22. total: String
  23. }
  24. }
  25. </script>
  26. <style scoped>
  27. </style>