- 创建被执行人历史记录的数据模型和接口定义 - 实现被执行人历史记录的CRUD操作API方法 - 在被执行人页面添加导入历史被执行人的功能按钮 - 开发被执行人历史记录的管理页面和编辑弹窗组件 - 集成被执行人历史记录的搜索、分页、新增、修改、删除功能 - 添加导入历史被执行人数据的功能入口
231 lines
6.0 KiB
Vue
231 lines
6.0 KiB
Vue
<!-- 编辑弹窗 -->
|
|
<template>
|
|
<ele-modal
|
|
:width="800"
|
|
:visible="visible"
|
|
:maskClosable="false"
|
|
:maxable="maxable"
|
|
:title="isUpdate ? '编辑被执行人' : '添加被执行人'"
|
|
:body-style="{ paddingBottom: '28px' }"
|
|
@update:visible="updateVisible"
|
|
:footer="null"
|
|
@ok="save"
|
|
>
|
|
<a-form
|
|
ref="formRef"
|
|
:model="form"
|
|
:rules="rules"
|
|
:label-col="styleResponsive ? { md: 5, sm: 5, xs: 24 } : { flex: '90px' }"
|
|
:wrapper-col="
|
|
styleResponsive ? { md: 19, sm: 19, xs: 24 } : { flex: '1' }
|
|
"
|
|
>
|
|
<a-form-item label="案号" name="caseNumber">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入案号"
|
|
v-model:value="form.caseNumber"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="被执行人名称" name="name">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入被执行人名称"
|
|
v-model:value="form.name"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="证件号/组织机构代码" name="code">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入证件号/组织机构代码"
|
|
v-model:value="form.code"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="立案日期" name="occurrenceTime">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入立案日期"
|
|
v-model:value="form.occurrenceTime"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="执行标的(元)" name="amount">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入执行标的(元)"
|
|
v-model:value="form.amount"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="法院" name="courtName">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入法院"
|
|
v-model:value="form.courtName"
|
|
/>
|
|
</a-form-item>
|
|
<a-form-item label="数据状态" name="dataStatus">
|
|
<a-input
|
|
allow-clear
|
|
placeholder="请输入数据状态"
|
|
v-model:value="form.dataStatus"
|
|
/>
|
|
</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>
|
|
</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 { addCreditJudgmentDebtor, updateCreditJudgmentDebtor } from '@/api/credit/creditJudgmentDebtor';
|
|
import { CreditJudgmentDebtor } from '@/api/credit/creditJudgmentDebtor/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?: CreditJudgmentDebtor | 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<CreditJudgmentDebtor>({
|
|
id: undefined,
|
|
caseNumber: undefined,
|
|
name: undefined,
|
|
code: undefined,
|
|
occurrenceTime: undefined,
|
|
amount: undefined,
|
|
courtName: undefined,
|
|
dataStatus: undefined,
|
|
comments: undefined,
|
|
recommend: undefined,
|
|
deleted: undefined,
|
|
userId: undefined,
|
|
tenantId: undefined,
|
|
createTime: undefined,
|
|
updateTime: undefined,
|
|
status: 0,
|
|
sortNumber: 100,
|
|
historyId: undefined
|
|
});
|
|
|
|
/* 更新visible */
|
|
const updateVisible = (value: boolean) => {
|
|
emit('update:visible', value);
|
|
};
|
|
|
|
// 表单验证规则
|
|
const rules = reactive({
|
|
creditJudgmentDebtorName: [
|
|
{
|
|
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 ? updateCreditJudgmentDebtor : addCreditJudgmentDebtor;
|
|
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>
|