【前端】智能库房综合管理系统前端项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
527 B

  1. <template>
  2. <div>
  3. <archivesList :isdel="isdel" :is-recycle="isRecycle" />
  4. </div>
  5. </template>
  6. <script>
  7. import archivesList from '@/views/archivesManage/archivesList/index'
  8. export default {
  9. name: 'RecycleBin',
  10. components: { archivesList },
  11. data() {
  12. return {
  13. isdel: true,
  14. isRecycle: true
  15. }
  16. },
  17. created() {
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style rel="stylesheet/scss" lang="scss" scoped>
  24. ::v-deep .container-left{
  25. min-height: calc(100vh - 190px);
  26. }
  27. </style>