<template>
|
<ProFormCol>
|
<ProFormColItem :span="12">
|
<ProFormItemV2
|
label="企业缴税明细汇总表:"
|
prop="enterpriseTaxSubFileUrl"
|
style="margin-bottom: 22px"
|
>
|
<ProFormUpload
|
v-model:file-url="form.enterpriseTaxSubFileUrl"
|
:limitShowViewMoreBtnCount="4"
|
></ProFormUpload>
|
</ProFormItemV2>
|
</ProFormColItem>
|
</ProFormCol>
|
<ProFormCol>
|
<ProFormColItem :span="12">
|
<ProFormItemV2
|
label="企业营收汇总表:"
|
prop="enterpriseOperateFileUrl"
|
style="margin-bottom: 22px"
|
>
|
<ProFormUpload
|
v-model:file-url="form.enterpriseOperateFileUrl"
|
:limitShowViewMoreBtnCount="4"
|
></ProFormUpload>
|
</ProFormItemV2>
|
</ProFormColItem>
|
</ProFormCol>
|
<ProFormCol>
|
<ProFormColItem :span="12">
|
<ProFormItemV2 label="入驻情况关联说明:" prop="enterpriseRelateFileUrl">
|
<ProFormUpload
|
v-model:file-url="form.enterpriseRelateFileUrl"
|
:limitShowViewMoreBtnCount="4"
|
></ProFormUpload>
|
</ProFormItemV2>
|
</ProFormColItem>
|
</ProFormCol>
|
</template>
|
|
<script setup lang="ts">
|
import {
|
ProFormCol,
|
ProFormColItem,
|
ProFormItemV2,
|
ProFormUpload,
|
UploadUserFile,
|
} from '@bole-core/components';
|
|
defineOptions({
|
name: 'MaterialInfoView',
|
});
|
|
type Props = {
|
form: {
|
enterpriseTaxSubFileUrl: UploadUserFile[];
|
enterpriseOperateFileUrl: UploadUserFile[];
|
enterpriseRelateFileUrl: UploadUserFile[];
|
};
|
};
|
|
const props = withDefaults(defineProps<Props>(), {});
|
</script>
|
|
<style lang="scss" scoped>
|
@use '@/style/common.scss' as *;
|
</style>
|