324 lines
10 KiB
Vue
324 lines
10 KiB
Vue
<template>
|
|
<div class="container2">
|
|
<a-row>
|
|
<a-col :span="24">
|
|
<a-table :dataSource="filteredTableData" :columns="columns" :pagination="false" bordered size="small"
|
|
:rowClassName="setRowClassName">
|
|
<template #bodyCell="{ column, record }">
|
|
<template v-if="column.dataIndex === 'd1'">
|
|
<span>{{ applyObj[record.d1] }}</span>
|
|
</template>
|
|
<template v-if="column.dataIndex === 'd2' && isImg(record.d1)">
|
|
<JImageUpload :fileMax="1" :value="opeMediaAddress + record.d2" disabled></JImageUpload>
|
|
</template>
|
|
<template v-if="column.dataIndex === 'd3' && isImg(record.d1)">
|
|
<JImageUpload :fileMax="1" :value="opeMediaAddress + record.d3" disabled></JImageUpload>
|
|
</template>
|
|
<template
|
|
v-if="column.dataIndex === 'd2' && (record.d1 == 'orgProvince' || record.d1 == 'orgCity' || record.d1 == 'orgDistrict')">
|
|
<span>{{ provinceOptions[record.d2] }}</span>
|
|
</template>
|
|
<template
|
|
v-if="column.dataIndex === 'd3' && (record.d1 == 'orgProvince' || record.d1 == 'orgCity' || record.d1 == 'orgDistrict')">
|
|
<span>{{ provinceOptions[record.d3] }}</span>
|
|
</template>
|
|
<template v-if="column.dataIndex === 'd2' && record.d1 == 'orgBuildingArea'">
|
|
<span>{{ record.d2 }}㎡</span>
|
|
</template>
|
|
<template v-if="column.dataIndex === 'd3' && record.d1 == 'orgBuildingArea'">
|
|
<span>{{ record.d3 }}㎡</span>
|
|
</template>
|
|
<template v-if="column.dataIndex === 'd2' && record.d1 == 'endTime'">
|
|
<span>{{ record.d2 == '9999-12-31' ? '长期' : record.d2 }}</span>
|
|
</template>
|
|
<template v-if="column.dataIndex === 'd3' && record.d1 == 'endTime'">
|
|
<span>{{ record.d3 == '9999-12-31' ? '长期' : record.d3 }}</span>
|
|
</template>
|
|
</template>
|
|
</a-table>
|
|
</a-col>
|
|
</a-row>
|
|
<a-form style="margin-top: 14px;height: 100px;" ref="formRef" layout="horizontal" :model="formData"
|
|
:label-col="labelCol" :wrapper-col="wrapperCol" v-if="izAudit">
|
|
<a-row :gutter="16">
|
|
<a-col :span="12">
|
|
<a-form-item label="审核状态" name="status" v-bind="validateInfos.status">
|
|
<a-select v-model:value="formData.status" style="width: 200px" placeholder="请选择审核状态">
|
|
<a-select-option value="modifyPass">审核通过</a-select-option>
|
|
<a-select-option value="modifyFail">审核驳回</a-select-option>
|
|
</a-select>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :span="12" v-if="formData.status == 'modifyFail'">
|
|
<a-form-item label="驳回原因" name="auditContent" v-bind="validateInfos.auditContent">
|
|
<a-textarea :maxlength="50" show-count v-model:value="formData.auditContent" placeholder="请输入驳回原因(如驳回)"
|
|
style="width: 100%" />
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-row>
|
|
</a-form>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, reactive, computed, onMounted } from 'vue';
|
|
import { Table as ATable, Input, Row, Col, Form } from 'ant-design-vue';
|
|
import { applyObj } from '../ElderInfo.data'
|
|
import JImageUpload from '/@/components/Form/src/jeecg/components/JImageUpload.vue';
|
|
import { getModifyInfo, getHisModifyInfo, elderAudit } from '../ElderInfo.api'
|
|
import { useMessage } from '/@/hooks/web/useMessage';
|
|
import { initDictOptions } from '/@/utils/dict';
|
|
|
|
const props = defineProps({
|
|
sndjDicts: null
|
|
});
|
|
const opeMediaAddress = import.meta.env.VITE_OPE_MEDIA_ADDRESS
|
|
const formRef = ref();
|
|
const AForm = Form;
|
|
const AFormItem = Form.Item;
|
|
const useForm = Form.useForm;
|
|
const { createMessage } = useMessage();
|
|
// 表单标签布局配置
|
|
const labelCol = { span: 4 }; // 标签宽度
|
|
const wrapperCol = { span: 18 }; // 控件宽度
|
|
const isImg = (v_) => {
|
|
return v_ == 'idCardPositive' || v_ == 'idCardNegative' || v_ == 'healthCertificatePositive' || v_ == 'bankPositive' || v_ == 'bankNegative' || v_ == 'qualification' || v_ == 'noCrimeCertificate'
|
|
}
|
|
const provinceOptions = ref({})
|
|
const formData = reactive<Record<string, any>>({
|
|
status: undefined,
|
|
auditContent: '',
|
|
id: '',
|
|
pkId: ''
|
|
});
|
|
const validatorRules = reactive({
|
|
status: [{ required: true, message: '请选择审核状态!' },],
|
|
auditContent: [
|
|
{
|
|
validator: async (_rule, value) => {
|
|
if (formData.status === 'modifyFail' && !value) {
|
|
return Promise.reject('请输入驳回原因!');
|
|
}
|
|
return Promise.resolve();
|
|
},
|
|
},
|
|
],
|
|
})
|
|
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: false });
|
|
const tableData = ref([]);
|
|
const emit = defineEmits(['ok']);
|
|
const filteredTableData = computed(() => {
|
|
return tableData.value.filter(item =>
|
|
item.d1 == 'name'
|
|
|| item.d1 == 'sex'
|
|
|| item.d1 == 'idCard'
|
|
|| item.d1 == 'dateOfBirth'
|
|
|| item.d1 == 'national'
|
|
|| item.d1 == 'houseAddress'
|
|
|| item.d1 == 'idCardPositive'
|
|
|| item.d1 == 'idCardNegative'
|
|
|| item.d1 == 'issuingAuthority'
|
|
|| item.d1 == 'startTime'
|
|
|| item.d1 == 'endTime'
|
|
|| item.d1 == 'guardianModifyStatus'
|
|
|| item.d1 == 'guardianModifyContent'
|
|
|| item.d1 == 'guardianModifyId'
|
|
|| item.d1 == 'elderModifyStatus'
|
|
|| item.d1 == 'elderModifyContent'
|
|
|| item.d1 == 'elderModifyId'
|
|
|| item.d1 == 'yblxName'
|
|
|| item.d1 == 'sndjName'
|
|
// || item.d1 == 'jfztName'
|
|
);
|
|
});
|
|
|
|
const columns = [
|
|
{
|
|
title: '名称',
|
|
dataIndex: 'd1',
|
|
key: 'd1',
|
|
width: 150,
|
|
},
|
|
{
|
|
title: '变更前',
|
|
dataIndex: 'd2',
|
|
key: 'd2',
|
|
},
|
|
{
|
|
title: '变更后',
|
|
dataIndex: 'd3',
|
|
key: 'd3',
|
|
}
|
|
];
|
|
|
|
// 设置行类名
|
|
const setRowClassName = (record) => {
|
|
return record.d2 !== record.d3 && record.d1 !== 'createTime' ? 'highlight-row' : '';
|
|
};
|
|
|
|
const izAudit = ref(false)
|
|
|
|
async function show(record, sign) {
|
|
let data = null;
|
|
if (sign == 'audit') {
|
|
data = await getModifyInfo({ id: record.id, queryModifyType: 'elder' })
|
|
izAudit.value = true
|
|
}
|
|
if (sign == 'his') {
|
|
data = await getHisModifyInfo(record)
|
|
izAudit.value = false
|
|
}
|
|
|
|
formData.id = record.id
|
|
formData.elderModifyId = record.elderModifyId
|
|
formData.guardianOpenId = record.guardianOpenId
|
|
formData.name = record.name
|
|
formData.sysOrgCode = record.sysOrgCode
|
|
let beforeYblxValue = ''
|
|
let afterYblxValue = ''
|
|
let beforeYblx = ''
|
|
let afterYblx = ''
|
|
let beforeSndj = ''
|
|
let afterSndj = ''
|
|
let beforeJfzt = ''
|
|
let afterJfzt = ''
|
|
tableData.value = data.map(item => {
|
|
//医保类型
|
|
if (item.d1 == 'medicalType') {
|
|
if (!!item.d2) {
|
|
beforeYblxValue = item.d2
|
|
beforeYblx = props.sndjDicts.medical_insurance_type.filter(mi => mi.value == item.d2)[0].text
|
|
}
|
|
if (!!item.d3) {
|
|
afterYblxValue = item.d3
|
|
afterYblx = props.sndjDicts.medical_insurance_type.filter(mi => mi.value == item.d3)[0].text
|
|
}
|
|
}
|
|
//缴费状态
|
|
// if (item.d1 == 'paymentStatus') {
|
|
// if (!!item.d2) {
|
|
// beforeJfzt = props.sndjDicts.elder_payment_status.filter(mi => mi.value == item.d2)[0].text
|
|
// }
|
|
// if (!!item.d3) {
|
|
// afterJfzt = props.sndjDicts.elder_payment_status.filter(mi => mi.value == item.d3)[0].text
|
|
// }
|
|
// }
|
|
return {
|
|
...item,
|
|
// 处理null/undefined显示为空字符串
|
|
d2: item.d2 ?? '',
|
|
d3: item.d3 ?? ''
|
|
}
|
|
});
|
|
// 处理失能等级
|
|
tableData.value.forEach(item => {
|
|
if (item.d1 == 'disabilityReimbursementType') {
|
|
if (!!item.d2) {
|
|
if (!!beforeYblxValue) {
|
|
if (beforeYblxValue == 'syb') {
|
|
beforeSndj = props.sndjDicts.syb_reimbursement_type.filter(mi => mi.value == item.d2)[0].text
|
|
}
|
|
if (beforeYblxValue == 'zgyb') {
|
|
beforeSndj = props.sndjDicts.zgyb_reimbursement_type.filter(mi => mi.value == item.d2)[0].text
|
|
}
|
|
if (beforeYblxValue == 'jmyb') {
|
|
beforeSndj = props.sndjDicts.jmyb_reimbursement_type.filter(mi => mi.value == item.d2)[0].text
|
|
}
|
|
}
|
|
}
|
|
if (!!item.d3) {
|
|
if (!!afterYblxValue) {
|
|
if (afterYblxValue == 'syb') {
|
|
afterSndj = props.sndjDicts.syb_reimbursement_type.filter(mi => mi.value == item.d3)[0].text
|
|
}
|
|
if (afterYblxValue == 'zgyb') {
|
|
afterSndj = props.sndjDicts.zgyb_reimbursement_type.filter(mi => mi.value == item.d3)[0].text
|
|
}
|
|
if (afterYblxValue == 'jmyb') {
|
|
afterSndj = props.sndjDicts.jmyb_reimbursement_type.filter(mi => mi.value == item.d3)[0].text
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
//处理缴费状态
|
|
tableData.value.forEach(item => {
|
|
if (item.d1 == 'yblxName') {
|
|
item.d2 = beforeYblx
|
|
item.d3 = afterYblx
|
|
}
|
|
if (item.d1 == 'sndjName') {
|
|
item.d2 = !beforeSndj ? '无' : beforeSndj
|
|
item.d3 = !afterSndj ? '无' : afterSndj
|
|
}
|
|
// if (item.d1 == 'jfztName') {
|
|
// item.d2 = beforeJfzt
|
|
// item.d3 = afterJfzt
|
|
// }
|
|
})
|
|
console.log(123123, props.sndjDicts)
|
|
}
|
|
|
|
async function submitForm() {
|
|
try {
|
|
// 触发表单验证
|
|
await validate();
|
|
} catch ({ errorFields }) {
|
|
if (errorFields) {
|
|
const firstField = errorFields[0];
|
|
if (firstField) {
|
|
formRef.value.scrollToField(firstField.name, { behavior: 'smooth', block: 'center' });
|
|
}
|
|
}
|
|
return Promise.reject(errorFields);
|
|
}
|
|
elderAudit(formData)
|
|
.then((res) => {
|
|
emit('ok');
|
|
})
|
|
}
|
|
|
|
// 初始化numberValues
|
|
onMounted(async () => {
|
|
const dictData = await initDictOptions('sys_category,name,id,first_letter is not null order by code asc', '');
|
|
dictData.reduce((prev, next) => {
|
|
if (next) {
|
|
provinceOptions.value[next['value']] = next['text'] || next['label']
|
|
}
|
|
return prev;
|
|
}, []);
|
|
});
|
|
|
|
defineExpose({
|
|
show,
|
|
submitForm
|
|
});
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.container2 {
|
|
// padding: 16px;
|
|
}
|
|
|
|
.antd-modal-form {
|
|
padding: 14px;
|
|
}
|
|
|
|
:deep(.ant-table-cell) {
|
|
padding: 8px 12px !important;
|
|
}
|
|
|
|
// 高亮行样式
|
|
:deep(.highlight-row) {
|
|
background-color: #fff1f0 !important; // 浅红色背景
|
|
}
|
|
|
|
// 表单样式调整
|
|
:deep(.ant-form-item) {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
:deep(.ant-table-cell-row-hover) {
|
|
// border: 1px solid red;
|
|
}
|
|
</style> |