| 1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <div class="page-container">
- <FileList ref="FileList" title="电子文档" />
- </div>
- </template>
- <script>
- import FileList from '@/views/system/doc/components/FileList'
- import { mapGetters } from 'vuex'
- export default {
- name: 'DocIndex',
- components: { FileList },
- mixins: [],
- props: {},
- data() {
- return {
- dirId: 5
- }
- },
- computed: {
- ...mapGetters([
- 'userData'
- ])
- },
- mounted() { this.getData() },
- methods: {
- getData() {
- this.$refs['FileList'].loadData(this.dirId, '健康医院电子文档')
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- </style>
|