spring
2026-07-03 081f242ea3c019f4eddd0fe342c5cf6189da1468
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<script lang="ts" setup>
import type { FormType } from '../data';
 
import DocumentList from './document-list.vue';
 
withDefaults(
  defineProps<{
    formType: FormType;
    gridHeight?: number | string;
    projectId: number;
    tableTitle?: string;
    version?: string;
  }>(),
  {
    tableTitle: '设计资料',
  },
);
</script>
 
<template>
  <DocumentList
    :form-type="formType"
    :grid-height="gridHeight"
    :project-id="projectId"
    :table-title="tableTitle"
    :version="version"
  />
</template>