Files
mp-vue/src/views/credit/creditExternal/components/creditExternalEdit.vue
赵忠林 ecd571c60b feat(credit): 新增客户导入与数据导出功能
- 在信用客户模块中添加了导入客户的功能,支持通过文件上传方式导入客户数据
- 实现了多个信用相关模块的数据导出功能,包括企业、司法案件、风险关系、供应商及用户模块
- 更新了搜索组件以支持导出事件,并在各模块中实现了具体的导出逻辑
- 简化了部分表单项的标签显示并移除了冗余字段,优化了用户体验
- 修复了一些潜在的代码格式问题和不必要的注释块
2025-12-22 10:00:49 +08:00

301 lines
8.4 KiB
Vue

<!-- 编辑弹窗 -->
<template>
<ele-modal
:width="800"
:visible="visible"
:maskClosable="false"
:maxable="maxable"
:title="isUpdate ? '编辑对外投资' : '添加对外投资'"
:body-style="{ paddingBottom: '28px' }"
@update:visible="updateVisible"
@ok="save"
>
<a-form
ref="formRef"
:model="form"
:rules="rules"
:label-col="styleResponsive ? { md: 4, sm: 5, xs: 24 } : { flex: '90px' }"
:wrapper-col="
styleResponsive ? { md: 19, sm: 19, xs: 24 } : { flex: '1' }
"
>
<a-form-item label="被投资企业名称" name="name">
<a-input
allow-clear
placeholder="请输入被投资企业名称"
v-model:value="form.name"
/>
</a-form-item>
<a-form-item label="状态" name="statusTxt">
<a-input
allow-clear
placeholder="请输入企业状态(如存续、注销等)"
v-model:value="form.statusTxt"
/>
</a-form-item>
<a-form-item label="法定代表人" name="legalRepresentative">
<a-input
allow-clear
placeholder="请输入法定代表人姓名"
v-model:value="form.legalRepresentative"
/>
</a-form-item>
<a-form-item label="注册资本" name="registeredCapital">
<a-input
allow-clear
placeholder="请输入注册资本(金额)"
v-model:value="form.registeredCapital"
/>
</a-form-item>
<a-form-item label="成立日期" name="establishmentDate">
<a-input
allow-clear
placeholder="请输入成立日期"
v-model:value="form.establishmentDate"
/>
</a-form-item>
<a-form-item label="持股比例" name="shareholdingRatio">
<a-input
allow-clear
placeholder="请输入持股比例"
v-model:value="form.shareholdingRatio"
/>
</a-form-item>
<a-form-item label="认缴出资额" name="subscribedInvestmentAmount">
<a-input
allow-clear
placeholder="请输入认缴出资额"
v-model:value="form.subscribedInvestmentAmount"
/>
</a-form-item>
<a-form-item label="认缴出资日期" name="subscribedInvestmentDate">
<a-input
allow-clear
placeholder="请输入认缴出资日期"
v-model:value="form.subscribedInvestmentDate"
/>
</a-form-item>
<a-form-item label="间接持股比例" name="indirectShareholdingRatio">
<a-input
allow-clear
placeholder="请输入间接持股比例"
v-model:value="form.indirectShareholdingRatio"
/>
</a-form-item>
<a-form-item label="投资日期" name="investmentDate">
<a-input
allow-clear
placeholder="请输入投资日期"
v-model:value="form.investmentDate"
/>
</a-form-item>
<a-form-item label="所属地区" name="region">
<a-input
allow-clear
placeholder="请输入所属地区"
v-model:value="form.region"
/>
</a-form-item>
<a-form-item label="所属行业" name="industry">
<a-input
allow-clear
placeholder="请输入所属行业"
v-model:value="form.industry"
/>
</a-form-item>
<a-form-item label="投资数量" name="investmentCount">
<a-input
allow-clear
placeholder="请输入投资数量"
v-model:value="form.investmentCount"
/>
</a-form-item>
<a-form-item label="关联产品/机构" name="relatedProductsInstitutions">
<a-input
allow-clear
placeholder="请输入关联产品/机构"
v-model:value="form.relatedProductsInstitutions"
/>
</a-form-item>
<a-form-item label="备注" name="comments">
<a-textarea
:rows="4"
:maxlength="200"
placeholder="请输入描述"
v-model:value="form.comments"
/>
</a-form-item>
<!-- <a-form-item label="状态, 0正常, 1冻结" name="status">-->
<!-- <a-radio-group v-model:value="form.status">-->
<!-- <a-radio :value="0">显示</a-radio>-->
<!-- <a-radio :value="1">隐藏</a-radio>-->
<!-- </a-radio-group>-->
<!-- </a-form-item>-->
</a-form>
</ele-modal>
</template>
<script lang="ts" setup>
import { ref, reactive, watch } from 'vue';
import { Form, message } from 'ant-design-vue';
import { assignObject, uuid } from 'ele-admin-pro';
import {
addCreditExternal,
updateCreditExternal
} from '@/api/credit/creditExternal';
import { CreditExternal } from '@/api/credit/creditExternal/model';
import { useThemeStore } from '@/store/modules/theme';
import { storeToRefs } from 'pinia';
import { ItemType } from 'ele-admin-pro/es/ele-image-upload/types';
import { FormInstance } from 'ant-design-vue/es/form';
import { FileRecord } from '@/api/system/file/model';
// 是否是修改
const isUpdate = ref(false);
const useForm = Form.useForm;
// 是否开启响应式布局
const themeStore = useThemeStore();
const { styleResponsive } = storeToRefs(themeStore);
const props = defineProps<{
// 弹窗是否打开
visible: boolean;
// 修改回显的数据
data?: CreditExternal | null;
}>();
const emit = defineEmits<{
(e: 'done'): void;
(e: 'update:visible', visible: boolean): void;
}>();
// 提交状态
const loading = ref(false);
// 是否显示最大化切换按钮
const maxable = ref(true);
// 表格选中数据
const formRef = ref<FormInstance | null>(null);
const images = ref<ItemType[]>([]);
// 用户信息
const form = reactive<CreditExternal>({
id: undefined,
name: undefined,
statusTxt: undefined,
legalRepresentative: undefined,
registeredCapital: undefined,
establishmentDate: undefined,
shareholdingRatio: undefined,
subscribedInvestmentAmount: undefined,
subscribedInvestmentDate: undefined,
indirectShareholdingRatio: undefined,
investmentDate: undefined,
region: undefined,
industry: undefined,
investmentCount: undefined,
relatedProductsInstitutions: undefined,
comments: undefined,
recommend: undefined,
sortNumber: undefined,
status: undefined,
deleted: undefined,
userId: undefined,
tenantId: undefined,
createTime: undefined,
updateTime: undefined,
creditExternalId: undefined,
creditExternalName: '',
status: 0,
comments: '',
sortNumber: 100
});
/* 更新visible */
const updateVisible = (value: boolean) => {
emit('update:visible', value);
};
// 表单验证规则
const rules = reactive({
creditExternalName: [
{
required: true,
type: 'string',
message: '请填写对外投资名称',
trigger: 'blur'
}
]
});
const chooseImage = (data: FileRecord) => {
images.value.push({
uid: data.id,
url: data.path,
status: 'done'
});
form.image = data.path;
};
const onDeleteItem = (index: number) => {
images.value.splice(index, 1);
form.image = '';
};
const { resetFields } = useForm(form, rules);
/* 保存编辑 */
const save = () => {
if (!formRef.value) {
return;
}
formRef.value
.validate()
.then(() => {
loading.value = true;
const formData = {
...form
};
const saveOrUpdate = isUpdate.value
? updateCreditExternal
: addCreditExternal;
saveOrUpdate(formData)
.then((msg) => {
loading.value = false;
message.success(msg);
updateVisible(false);
emit('done');
})
.catch((e) => {
loading.value = false;
message.error(e.message);
});
})
.catch(() => {});
};
watch(
() => props.visible,
(visible) => {
if (visible) {
images.value = [];
if (props.data) {
assignObject(form, props.data);
if (props.data.image) {
images.value.push({
uid: uuid(),
url: props.data.image,
status: 'done'
});
}
isUpdate.value = true;
} else {
isUpdate.value = false;
}
} else {
resetFields();
}
},
{ immediate: true }
);
</script>