【前端】智能库房综合管理系统前端项目
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

<template>
<div>
<archivesList :isdel="isdel" :is-recycle="isRecycle" />
</div>
</template>
<script>
import archivesList from '@/views/archivesManage/archivesList/index'
export default {
name: 'RecycleBin',
components: { archivesList },
data() {
return {
isdel: true,
isRecycle: true
}
},
created() {
},
methods: {
}
}
</script>
<style rel="stylesheet/scss" lang="scss" scoped>
::v-deep .container-left{
min-height: calc(100vh - 190px);
}
</style>