| | |
| | | <script setup lang="ts"> |
| | | import { ProDialog } from '@bole-core/components'; |
| | | import FourStreamsMaterialFileTable from './FourStreamsMaterialFileTable.vue'; |
| | | import { FourStreamsMaterialFileTableProps, FourStreamsMaterialFileTableItem } from './types'; |
| | | import { FourStreamsMaterialFileTableProps } from './types'; |
| | | import { CustomerApplyFileTypeListItem } from './utils'; |
| | | |
| | | defineOptions({ |
| | | name: 'MateriaDetailDialog', |
| | |
| | | const visible = defineModel({ type: Boolean }); |
| | | |
| | | type Form = { |
| | | list: FourStreamsMaterialFileTableItem[]; |
| | | list: CustomerApplyFileTypeListItem[]; |
| | | }; |
| | | |
| | | const form = defineModel<Form>('form'); |