Commit 990fa688 by Sweet Zhang

新单跟进冲突解决

parents de16072c b9c161b7
......@@ -55,6 +55,7 @@ const productPlan = [
label: '供款期数',
key: 'issueNumber',
domType: 'Input',
inputType: 'number',
required: true,
placeholder: '请选择',
dictType: 'issueNumber',
......
......@@ -425,33 +425,35 @@ const handleSearchSelectChange = (father, key) => {
})
})
}
if (key == 'productLaunchMainName') {
father.data.forEach(item => {
searchOptions.value['productLaunchMainName'].forEach(item1 => {
if (item1.value == form.value[father.key][key]) {
form.value[father.key][key] = item1.label
form.value[father.key]['productLaunchBizId'] = item1.value
}
item1.apiAttributeSettingDtoList.forEach(item2 => {
if (item2.fieldBizId == 'field_eWCnuwS3WPKog5kZ' && item.key == 'issueNumber') {
if (item2.value) {
item.options = item2.value
.split(/[,,;;\s]+/)
.map(item => item.trim())
.filter(item => item !== '')
.map(item => {
return { label: item, value: item }
})
// 有些产品会没有供款年期,所以这段逻辑先注释掉后续在加
// if (key == 'productLaunchMainName') {
// father.data.forEach(item => {
// searchOptions.value['productLaunchMainName'].forEach(item1 => {
// if (item1.value == form.value[father.key][key]) {
// // form.value[father.key][key] = item1.label
// // form.value[father.key]['productLaunchBizId'] = item1.value
// console.log('item1.apiAttributeSettingDtoList', item1.apiAttributeSettingDtoList)
// item1.apiAttributeSettingDtoList.forEach(item2 => {
// if (item2.fieldBizId == 'field_eWCnuwS3WPKog5kZ' && item.key == 'issueNumber') {
// if (item2.value) {
// item.options = item2.value
// .split(/[,,;;\s]+/)
// .map(item => item.trim())
// .filter(item => item !== '')
// .map(item => {
// return { label: item, value: item }
// })
if (item.options.length > 0)
form.value[father.key]['issueNumber'] = item.options[0].value
}
console.log(item.options, item, '1111')
}
})
})
})
}
// if (item.options.length > 0)
// form.value[father.key]['issueNumber'] = item.options[0].value
// }
// console.log(item.options, item, '1111')
// }
// })
// }
// })
// })
// }
if (key == 'insuranceTypeName') {
searchOptions.value['insuranceTypeName'].forEach(item => {
if (item.value == form.value['apiProductPlanMainInfoDto']['insuranceTypeName']) {
......
......@@ -18,31 +18,47 @@
<!-- 签单信息 -->
<div class="section">
<h3 class="sectionTitle">基础信息</h3>
<SearchForm ref="basicInfoFormRef" :config="basicInfoFormConfig" v-model="basicInfoFormData" />
<SearchForm
ref="basicInfoFormRef"
:config="basicInfoFormConfig"
v-model="basicInfoFormData"
/>
</div>
<!-- 保单信息 -->
<div class="section">
<h3 class="sectionTitle">保单信息</h3>
<SearchForm ref="policyInfoFormRef" :config="policyInfoFormConfig" v-model="policyInfoFormData" />
<SearchForm
ref="policyInfoFormRef"
:config="policyInfoFormConfig"
v-model="policyInfoFormData"
/>
</div>
</div>
<!-- 产品计划 Tab 内容 -->
<div v-else-if="activeTab === 'productPlan'" class="tab-content">
<!-- 基本计划 -->
<div class="section">
<h3 class="sectionTitle">基本计划</h3>
<SearchForm ref="basicPlanFormRef" :config="basicPlanFormConfig" v-model="basicPlanFormData"
@selectChange="(prop, value, item) => handleSelectChange(prop, value, item, 'basicPlan')" />
<SearchForm
ref="basicPlanFormRef"
:config="basicPlanFormConfig"
v-model="basicPlanFormData"
@selectChange="
(prop, value, item) => handleSelectChange(prop, value, item, 'basicPlan')
"
/>
</div>
<!-- 附加计划(可编辑表格) -->
<div class="section">
<h3 class="sectionTitle">附加计划</h3>
<EditableTable v-model="localData.additionalPlans" :row-config="additionalPlansConfig"
@batch-save="handleBatchSave" :disabled="props.mode === 'viewDetail'" />
<EditableTable
v-model="localData.additionalPlans"
:row-config="additionalPlansConfig"
@batch-save="handleBatchSave"
:disabled="props.mode === 'viewDetail'"
/>
</div>
</div>
<!-- 首期缴费 Tab 内容 -->
......@@ -50,12 +66,19 @@
<!-- 签单信息 -->
<div class="section">
<h3 class="sectionTitle">缴费信息</h3>
<SearchForm ref="firstPremiumFormRef" :config="firstPremiumFormConfig"
v-model="firstPremiumFormData" />
<SearchForm
ref="firstPremiumFormRef"
:config="firstPremiumFormConfig"
v-model="firstPremiumFormData"
/>
<h3 class="sectionTitle">首期对账信息</h3>
<el-table :data="firstPremiumTableData" border style="width: 100%">
<el-table-column prop="createTime" label="申请对账日期" width="180"
:formatter="(row, col, val) => formatToDateTime(val, 'YYYY-MM-DD HH:mm:ss')" />
<el-table-column
prop="createTime"
label="申请对账日期"
width="180"
:formatter="(row, col, val) => formatToDateTime(val, 'YYYY-MM-DD HH:mm:ss')"
/>
<el-table-column prop="reconciliationStatus" label="对账状态" width="180" />
<el-table-column prop="paymentMethod" label="缴费方式" width="180" />
<el-table-column prop="paymentAmount" label="汇款金额" width="180" />
......@@ -70,9 +93,15 @@
<!-- 签单信息 -->
<div class="section">
<h3 class="sectionTitle">介绍人信息</h3>
<h5>第一位默认是客户主要负责人,客户资料出现在介绍人(主)账号下,其他介绍人不会看到客户信息</h5>
<EditableTable v-model="introducerTableData" :row-config="introducerConfig"
@batch-save="handleBatchSave" :disabled="props.mode === 'viewDetail'" />
<h5>
第一位默认是客户主要负责人,客户资料出现在介绍人(主)账号下,其他介绍人不会看到客户信息
</h5>
<EditableTable
v-model="introducerTableData"
:row-config="introducerConfig"
@batch-save="handleBatchSave"
:disabled="props.mode === 'viewDetail'"
/>
</div>
</div>
<!-- 邮寄信息 Tab 内容 -->
......@@ -90,8 +119,12 @@
<el-table-column prop="fnaNo" label="流程编号" width="180" />
<el-table-column prop="policyNo" label="保单号" width="180" />
<el-table-column prop="customerName" label="客户姓名" width="180" />
<el-table-column prop="createTime" label="创建时间" width="180"
:formatter="(row) => formatToDate(row.createTime)" />
<el-table-column
prop="createTime"
label="创建时间"
width="180"
:formatter="row => formatToDate(row.createTime)"
/>
<el-table-column fixed="right" label="操作" min-width="120">
<template #default>
<el-button link type="primary" size="small" @click="viewRecordDetail">
......@@ -106,23 +139,40 @@
<div v-else-if="activeTab === 'attachment'" class="tab-content">
<div class="section">
<h3 class="sectionTitle">附件</h3>
<el-button type="primary" @click="fileUploadDialogFlag = true"
:disabled="props.mode === 'viewDetail'">
<el-icon class="el-icon--right">
<Upload />
</el-icon>上传附件
<el-button
type="primary"
@click="fileUploadDialogFlag = true"
:disabled="props.mode === 'viewDetail'"
>
<el-icon class="el-icon--right"> <Upload /> </el-icon>上传附件
</el-button>
<el-table :data="attachmentTableData" border style="width: 100%">
<el-table-column v-for="(column, index) in attachmentTableColumns" :key="index"
:prop="column.prop" :label="column.label" :width="column.width" :sortable="column.sortable"
:formatter="column.formatter" />
<el-table-column
v-for="(column, index) in attachmentTableColumns"
:key="index"
:prop="column.prop"
:label="column.label"
:width="column.width"
:sortable="column.sortable"
:formatter="column.formatter"
/>
<el-table-column fixed="right" label="操作" min-width="120">
<template #default>
<el-button link type="primary" size="small" @click="handleClick"
:disabled="props.mode === 'viewDetail'">
修改
</el-button><el-button link type="danger" size="small" @click="handleClick"
:disabled="props.mode === 'viewDetail'">
<el-button
link
type="primary"
size="small"
@click="handleClick"
:disabled="props.mode === 'viewDetail'"
>
修改 </el-button
><el-button
link
type="danger"
size="small"
@click="handleClick"
:disabled="props.mode === 'viewDetail'"
>
删除
</el-button>
</template>
......@@ -141,13 +191,25 @@
</div>
</el-form>
<CommonDialog dialogTitle='文件导入' dialogWidth='80%' :openDialog=fileUploadDialogFlag :showAction='true'
:showClose='true' @close='fileUploadDialogFlag = false; files = ""'
@confirm='fileUploadDialogFlag = false; files = ""'>
<FileUpload v-model="files" :data="{ obiectTableName: 'policy_follow', objectBizId: props.policyBizId }"
<CommonDialog
dialogTitle="文件导入"
dialogWidth="80%"
:openDialog="fileUploadDialogFlag"
:showAction="true"
:showClose="true"
@close="((fileUploadDialogFlag = false), (files = ''))"
@confirm="((fileUploadDialogFlag = false), (files = ''))"
>
<FileUpload
v-model="files"
:data="{ obiectTableName: 'policy_follow', objectBizId: props.policyBizId }"
:file-type="['xlsx', 'xls', 'doc', 'docx', 'pdf', 'txt', 'jpg', 'jpeg', 'png', 'gif']"
:action="'/oss/api/oss/batch/upload'" :limit="10" :fileSize="15" :name="'files'"
@uploadEnd="handleUploadEnd" />
:action="'/oss/api/oss/batch/upload'"
:limit="10"
:fileSize="15"
:name="'files'"
@uploadEnd="handleUploadEnd"
/>
</CommonDialog>
</div>
</template>
......@@ -168,7 +230,16 @@ import EditableTable from '@/components/csf-common/EditableTable.vue'
import useUserStore from '@/store/modules/user'
const { proxy } = getCurrentInstance()
proxy.useDictLists(['sys_no_yes', 'csf_ap_frequency', 'bx_currency_type', 'csf_ap_first_issue', 'csf_ap_dividend', 'csf_fortune_status', 'csf_ap_mailing_method', 'receipt_status'])
proxy.useDictLists([
'sys_no_yes',
'csf_ap_frequency',
'bx_currency_type',
'csf_ap_first_issue',
'csf_ap_dividend',
'csf_fortune_status',
'csf_ap_mailing_method',
'receipt_status'
])
const router = useRouter()
const userStore = useUserStore()
const files = ref('')
......@@ -203,6 +274,7 @@ const emit = defineEmits(['update:modelValue', 'submit', 'cancel', 'saveRow'])
const introducerTableData = ref([])
const introducerConfig = [
<<<<<<< HEAD
{
type: 'select',
prop: 'brokerBizId',
......@@ -226,6 +298,31 @@ const introducerConfig = [
...item
}))
},
=======
{
type: 'select',
prop: 'brokerBizId',
label: '转介人',
api: '/insurance/base/api/userSaleExpand/page',
keywordField: 'realName',
requestParams: { pageNo: 1, pageSize: 20 },
placeholder: '输入转介人名称搜索',
debounceWait: 500, // 自定义防抖时间
onChangeExtraFields: {
broker: 'realName', // 选中后自动填 broker = raw.realName
brokerName: 'realName',
internalCode: 'code',
team: 'teamName',
phone: 'phone'
>>>>>>> test
},
transform: res => {
return (res?.data.records || []).map(item => ({
value: item.clientUserBizId,
label: item.realName,
...item
}))
}
},
// {
......@@ -258,7 +355,8 @@ const introducerConfig = [
label: '所属团队',
span: 4,
disabled: true
}, {
},
{
type: 'input',
prop: 'brokerRatio',
label: '分配比例%',
......@@ -274,12 +372,13 @@ const introducerConfig = [
}
}
]
}, {
},
{
type: 'textarea',
prop: 'remark',
label: '备注',
span: 4
},
}
]
// 附加计划表格
......@@ -288,46 +387,52 @@ const additionalPlansConfig = [
type: 'input',
prop: 'product',
label: '产品名称',
span: 4,
}, {
span: 4
},
{
type: 'input',
prop: 'frequency',
label: '付款频率',
span: 4,
}, {
span: 4
},
{
type: 'input',
prop: 'term',
label: '保障期限',
span: 4,
}, {
span: 4
},
{
type: 'input',
prop: 'phone',
label: '付款频率',
span: 4,
}, {
span: 4
},
{
type: 'input',
prop: 'periods',
label: '供款期数',
span: 4,
}, {
span: 4
},
{
type: 'input',
prop: 'currency',
label: '保单币种',
span: 4,
}, {
span: 4
},
{
type: 'input',
prop: 'premium',
label: '每期保费',
span: 4,
}, {
span: 4
},
{
type: 'input',
prop: 'fee',
label: '保单征费',
span: 4,
},
span: 4
}
]
function handleBatchSave(validRows) {
console.log('批量提交:', validRows)
// 调用 API
......@@ -336,22 +441,20 @@ function handleBatchSave(validRows) {
function applyViewMode(fields, mode) {
if (mode === 'viewDetail') {
return fields.map(item => ({
...item,
disabled: true
}));
}))
}
// 非查看模式:保留原对象,可选择性移除 disabled
return fields.map(item => {
// 如果你希望编辑模式下完全不禁用,可以删除 disabled 属性
const newItem = { ...item };
delete newItem.disabled;
return newItem;
});
const newItem = { ...item }
delete newItem.disabled
return newItem
})
}
const newOrderData = ref({})
const basicInfoFormRef = ref()
const basicInfoFormData = ref({})
......@@ -359,8 +462,9 @@ const basicInfoFormConfig = ref([
{
type: 'date',
prop: 'signDate',
label: '签单日',
}, {
label: '签单日'
},
{
type: 'select',
prop: 'signer',
label: '签单员',
......@@ -371,32 +475,28 @@ const basicInfoFormConfig = ref([
debounceWait: 500, // 自定义防抖时间
onChangeExtraFields: {
signerBizId: 'userSignBizId',
practiceCode: 'practiceCode',
practiceCode: 'practiceCode'
},
valueKey: 'realName',
labelKey: 'realName',
transform: (res) => {
transform: res => {
return res?.data.records || []
},
rules: [
{ required: true, message: '请选择签单员', trigger: 'blur' },
],
}, {
rules: [{ required: true, message: '请选择签单员', trigger: 'blur' }]
},
{
type: 'input',
prop: 'practiceCode',
label: '签单员执业编号',
}, {
label: '签单员执业编号'
},
{
type: 'select',
prop: 'signLocation',
label: '签单地点',
dictType: 'csf_ap_meeting_point',
},
dictType: 'csf_ap_meeting_point'
}
])
// 保单信息
const policyInfoFormRef = ref()
const policyInfoFormData = ref({})
......@@ -404,59 +504,68 @@ const policyInfoFormConfig = ref([
{
type: 'input',
prop: 'policyNo',
label: '保单号',
}, {
label: '保单号'
},
{
type: 'date',
prop: 'effectiveDate',
label: '保单生效日',
}, {
label: '保单生效日'
},
{
type: 'date',
prop: 'policyExpirationDate',
label: '保单截止日',
}, {
label: '保单截止日'
},
{
type: 'date',
prop: 'underwritingDate',
label: '保单核保日',
}, {
label: '保单核保日'
},
{
type: 'date',
prop: 'receiptDate',
label: '保单回执日',
}, {
label: '保单回执日'
},
{
type: 'select',
prop: 'receiptStatus',
label: '回执状态',
dictType: 'receipt_status',
}, {
dictType: 'receipt_status'
},
{
type: 'select',
prop: 'directPaymentEnabled',
label: '是否开通直接支付',
dictType: 'sys_no_yes',
}, {
dictType: 'sys_no_yes'
},
{
type: 'input',
prop: 'policyHolder',
label: '保单持有人',
}, {
label: '保单持有人'
},
{
type: 'input',
prop: 'insured',
label: '保单受保人',
}, {
label: '保单受保人'
},
{
type: 'input',
prop: 'insuredAge',
label: '受保人年龄',
}, {
label: '受保人年龄'
},
{
type: 'input',
prop: 'gracePeriod',
label: '宽限期(天)',
inputType: 'decimal',
rules: [
{ pattern: /^\d+$/, message: '只能输入正整数', trigger: 'blur' }
]
}, {
rules: [{ pattern: /^\d+$/, message: '只能输入正整数', trigger: 'blur' }]
},
{
type: 'select',
prop: 'isJoin',
label: '是否参加递增保障权益',
dictType: 'sys_no_yes',
},
dictType: 'sys_no_yes'
}
])
// 基本计划
......@@ -474,13 +583,14 @@ const basicPlanFormConfig = ref([
debounceWait: 500, // 自定义防抖时间
valueKey: 'insuranceCompanyBizId',
labelKey: 'fullName',
transform: (res) => {
transform: res => {
return res?.data.records || []
},
onChangeExtraFields: {
insuranceCompany: 'fullName',
insuranceCompany: 'fullName'
}
},
}, {
{
type: 'select',
prop: 'productCate',
label: '保险险种',
......@@ -491,13 +601,12 @@ const basicPlanFormConfig = ref([
debounceWait: 500, // 自定义防抖时间
valueKey: 'insuranceCategoryBizId',
labelKey: 'name',
transform: (res) => {
transform: res => {
return res?.data.records || []
},
onChangeExtraFields: {
insuranceCategoryCode: 'code',
},
insuranceCategoryCode: 'code'
}
},
{
type: 'select',
......@@ -520,94 +629,106 @@ const basicPlanFormConfig = ref([
debounceWait: 500,
valueKey: 'productName',
labelKey: 'productName',
transform: (res) => {
transform: res => {
console.log('======子组件选择选项后,父组件接收的值 :', res?.data.records || [])
return res?.data.records || []
},
onChangeExtraFields: {
apiAttributeSettingDtoList: 'apiAttributeSettingDtoList',
productLaunchBizId: 'productLaunchBizId',
insuranceCategoryCode: 'code',
insuranceCategoryCode: 'code'
// 如果需要,也可以回填其他字段
},
}
},
{
type: 'select',
prop: 'paymentFrequency',
label: '付款频率',
dictType: 'csf_ap_frequency',
}, {
dictType: 'csf_ap_frequency'
},
{
type: 'input',
prop: 'guaranteePeriod',
label: '保障期限',
}, {
label: '保障期限'
},
{
type: 'input',
prop: 'sumInsured',
label: '保额(重疾险)',
}, {
label: '保额(重疾险)'
},
{
type: 'input',
prop: 'issueNumber',
label: '供款期数',
}, {
inputType: 'decimal'
},
{
type: 'select',
prop: 'policyCurrency',
label: '保单币种',
dictType: 'bx_currency_type'
}, {
},
{
type: 'input',
prop: 'initialPremium',
label: '每期保费',
inputType: 'decimal',
decimalDigits: 2,
visible: (formData) => formData.commissionBizType == 'R',
visible: formData => formData.commissionBizType == 'R',
rules: [
{ required: true, message: '请输入金额', trigger: 'blur' },
{ pattern: /^\d+(\.\d{1,2})?$/, message: '最多两位小数', trigger: 'blur' }
]
}, {
},
{
type: 'input',
prop: 'policyLevy',
label: '保单征费',
inputType: 'decimal',
decimalDigits: 2,
visible: (formData) => formData.commissionBizType == 'R',
visible: formData => formData.commissionBizType == 'R',
rules: [
{ required: true, message: '请输入金额', trigger: 'blur' },
{ pattern: /^\d+(\.\d{1,2})?$/, message: '最多两位小数', trigger: 'blur' }
]
}, {
},
{
type: 'select',
prop: 'isPrepay',
label: '是否预缴',
dictType: 'sys_no_yes'
}, {
},
{
type: 'select',
prop: 'isTraceable',
label: '是否追溯',
dictType: 'sys_no_yes'
}, {
},
{
type: 'date',
prop: 'retroactiveDate',
label: '回溯日期',
}, {
label: '回溯日期'
},
{
type: 'select',
prop: 'initialPaymentMethod',
label: '首期付款方式',
dictType: 'csf_ap_first_issue'
}, {
},
{
type: 'select',
prop: 'renewalPaymentMethod',
label: '续期付款方式',
dictType: 'csf_ap_first_issue'
}, {
},
{
type: 'select',
prop: 'dividendDistributionMethod',
label: '红利付款方式',
dictType: 'csf_ap_dividend'
},
}
])
// 首期保费
const firstPremiumTableData = ref([])
const firstPremiumFormRef = ref()
......@@ -623,7 +744,8 @@ const firstPremiumFormConfig = ref([
{ required: true, message: '请输入金额', trigger: 'blur' },
{ pattern: /^\d+(\.\d{1,2})?$/, message: '最多两位小数', trigger: 'blur' }
]
}, {
},
{
type: 'input',
prop: 'policyLevy',
label: '保单征费',
......@@ -633,12 +755,14 @@ const firstPremiumFormConfig = ref([
{ required: true, message: '请输入金额', trigger: 'blur' },
{ pattern: /^\d+(\.\d{1,2})?$/, message: '最多两位小数', trigger: 'blur' }
]
}, {
},
{
type: 'select',
prop: 'initialPaymentMethod',
label: '首期缴费方式',
dictType: 'csf_ap_first_issue'
}, {
},
{
type: 'input',
prop: 'initialPremiumPaid',
label: '首期已缴保费',
......@@ -648,7 +772,8 @@ const firstPremiumFormConfig = ref([
{ required: true, message: '请输入金额', trigger: 'blur' },
{ pattern: /^\d+(\.\d{1,2})?$/, message: '最多两位小数', trigger: 'blur' }
]
}, {
},
{
type: 'input',
prop: 'initialPremiumDue',
label: '首期待缴保费',
......@@ -658,7 +783,8 @@ const firstPremiumFormConfig = ref([
{ required: true, message: '请输入金额', trigger: 'blur' },
{ pattern: /^\d+(\.\d{1,2})?$/, message: '最多两位小数', trigger: 'blur' }
]
}, {
},
{
type: 'input',
prop: 'initialPremiumTotal',
label: '首期缴费总额',
......@@ -681,7 +807,8 @@ const firstPremiumFormConfig = ref([
prop: 'latestPaymentDate',
label: '最晚缴费日',
placeholder: '请选择'
}, {
},
{
type: 'input',
prop: 'initialPremiumDiscount',
label: '首期保费优惠金额',
......@@ -691,7 +818,7 @@ const firstPremiumFormConfig = ref([
{ required: true, message: '请输入金额', trigger: 'blur' },
{ pattern: /^\d+(\.\d{1,2})?$/, message: '最多两位小数', trigger: 'blur' }
]
},
}
])
// 邮寄信息
......@@ -703,43 +830,64 @@ const postalFormConfig = ref([
prop: 'mailingMethod',
label: '寄送方式',
dictType: 'csf_mailing_method'
}, {
},
{
type: 'input',
prop: 'deliveryNo',
label: '快递单号',
visible: (formData) => formData.mailingMethod == '2'
}, {
visible: formData => formData.mailingMethod == '2'
},
{
type: 'date',
prop: 'brokerSignDate',
label: '我司签收日',
rules: [
{ required: true, message: '请输入我司签收日', trigger: 'blur' }
]
}, {
rules: [{ required: true, message: '请输入我司签收日', trigger: 'blur' }]
},
{
type: 'date',
prop: 'customerSignDate',
label: '客户签收日',
rules: [
{ required: true, message: '请输入客户签收日', trigger: 'blur' }
]
},
rules: [{ required: true, message: '请输入客户签收日', trigger: 'blur' }]
}
])
// 关联记录
const relatedTableData = ref([])
const attachmentTableData = ref([])
const attachmentTableColumns = ref([
{ prop: 'originalName', label: '文件名', sortable: true, width: '150', formatter: (row) => row.originalName || '-' },
{ prop: 'fileType', label: '文件类型', sortable: true, width: '150', formatter: (row) => row.fileType || '-' },
{ prop: 'createTime', label: '上传时间', sortable: true, width: '150', formatter: (row) => row.createTime || '-' },
{ prop: 'creatorName', label: '上传人', sortable: true, width: '150', formatter: (row) => row.creatorName || '-' },
{
prop: 'originalName',
label: '文件名',
sortable: true,
width: '150',
formatter: row => row.originalName || '-'
},
{
prop: 'fileType',
label: '文件类型',
sortable: true,
width: '150',
formatter: row => row.fileType || '-'
},
{
prop: 'createTime',
label: '上传时间',
sortable: true,
width: '150',
formatter: row => row.createTime || '-'
},
{
prop: 'creatorName',
label: '上传人',
sortable: true,
width: '150',
formatter: row => row.creatorName || '-'
}
])
// ===== 本地响应式数据 =====
const defaultFormData = () => ({})
// ✅ 使用 ref 而不是 reactive
const localData = ref(defaultFormData())
......@@ -751,24 +899,22 @@ onMounted(async () => {
localData.value = { ...defaultFormData(), ...props.modelValue }
}
try {
getPolicyfollowDetail()
} catch (error) {
console.error('字典加载失败', error)
} finally {
}
// 应用查看模式到基本信息表格
basicInfoFormConfig.value = basicInfoFormConfig ? applyViewMode(basicInfoFormConfig.value, props.mode) : []
policyInfoFormConfig.value = policyInfoFormConfig ? applyViewMode(policyInfoFormConfig.value, props.mode) : []
basicInfoFormConfig.value = basicInfoFormConfig
? applyViewMode(basicInfoFormConfig.value, props.mode)
: []
policyInfoFormConfig.value = policyInfoFormConfig
? applyViewMode(policyInfoFormConfig.value, props.mode)
: []
})
// 监听基本信息(basic)
watch(
[
basicInfoFormData,
policyInfoFormData,
],
[basicInfoFormData, policyInfoFormData],
() => {
tabDirty.value.basic = true
},
......@@ -788,7 +934,8 @@ watch(
() => {
tabDirty.value.postal = true
},
{ deep: true })
{ deep: true }
)
// 监听基本计划(productPlan)
watch(
basicPlanFormData,
......@@ -800,7 +947,7 @@ watch(
// ✅ 监听 localData 变化,emit 出去(用于 v-model)
watch(
() => localData.value,
(newVal) => {
newVal => {
console.log('========父组件监测的localData:', newVal)
emit('update:modelValue', newVal)
},
......@@ -816,15 +963,11 @@ const handleBeforeLeave = async (newTabName, oldTabName) => {
console.log('切换前确认-----------------------', newTabName, oldTabName)
if (tabDirty.value[oldTabName]) {
try {
await ElMessageBox.confirm(
`“${getTabLabel(oldTabName)}” 未提交,确定要切换吗?`,
'提示',
{
await ElMessageBox.confirm(`“${getTabLabel(oldTabName)}” 未提交,确定要切换吗?`, '提示', {
confirmButtonText: '继续切换',
cancelButtonText: '取消',
type: 'warning'
}
)
})
return true // 允许切换
} catch {
return false // 阻止切换
......@@ -832,7 +975,7 @@ const handleBeforeLeave = async (newTabName, oldTabName) => {
}
return true // 无未保存内容,允许切换
}
const getTabLabel = (name) => {
const getTabLabel = name => {
const labels = {
basic: '基础信息',
productPlan: '产品计划',
......@@ -844,27 +987,36 @@ const getTabLabel = (name) => {
}
return labels[name] || name
}
const handleTabClick = (tab) => {
const handleTabClick = tab => {
if (tab.props.name === 'firstPayment') {
firstPremiumFormConfig.value = firstPremiumFormConfig ? applyViewMode(firstPremiumFormConfig.value, props.mode) : []
firstPremiumFormConfig.value = firstPremiumFormConfig
? applyViewMode(firstPremiumFormConfig.value, props.mode)
: []
if (!policyInfoFormData.value.policyNo) return
getPremiumReconciliationList(policyInfoFormData.value.policyNo)
} else if (tab.props.name === 'postal') {
postalFormConfig.value = postalFormConfig ? applyViewMode(postalFormConfig.value, props.mode) : []
postalFormConfig.value = postalFormConfig
? applyViewMode(postalFormConfig.value, props.mode)
: []
} else if (tab.props.name === 'related') {
getRelationRecord(newOrderData.value.fnaBizId)
} else if (tab.props.name === 'attachment') {
getAttachmentListDetail(newOrderData.value.policyBizId)
} else if (tab.props.name === 'productPlan') {
basicPlanFormConfig.value = basicPlanFormConfig ? applyViewMode(basicPlanFormConfig.value, props.mode) : []
basicPlanFormConfig.value = basicPlanFormConfig
? applyViewMode(basicPlanFormConfig.value, props.mode)
: []
} else if (tab.props.name === 'introducer') {
// introducerConfig.value = introducerConfig ? applyViewMode(introducerConfig.value, props.mode) : []
} else if (tab.props.name === 'basic') {
basicInfoFormConfig.value = basicInfoFormConfig ? applyViewMode(basicInfoFormConfig.value, props.mode) : []
basicInfoFormConfig.value = basicInfoFormConfig
? applyViewMode(basicInfoFormConfig.value, props.mode)
: []
}
}
const handleSubmit = () => {
<<<<<<< HEAD
formRef.value?.validate((valid) => {
if (valid) {
console.log('提交数据', introducerTableData.value)
......@@ -890,20 +1042,48 @@ const handleSubmit = () => {
}
})
=======
formRef.value?.validate(valid => {
if (valid) {
console.log('提交数据', introducerTableData.value)
if (activeTab.value === 'postal') {
emit('submit', { ...postalFormData.value, activeTab: activeTab.value })
} else if (activeTab.value === 'firstPayment') {
emit('submit', { ...firstPremiumFormData.value, activeTab: activeTab.value })
} else if (activeTab.value === 'attachment') {
emit('submit', { activeTab: activeTab.value })
} else if (activeTab.value === 'introducer') {
emit('submit', { ...introducerTableData.value, activeTab: activeTab.value })
} else if (activeTab.value === 'basic') {
emit('submit', {
...basicInfoFormData.value,
activeTab: activeTab.value,
...policyInfoFormData.value
})
} else if (activeTab.value === 'productPlan') {
emit('submit', {
...basicPlanFormData.value,
activeTab: activeTab.value,
...localData.additionalPlans
})
}
}
})
>>>>>>> test
}
const handleCancel = () => {
emit('cancel')
}
const handleClick = (tab) => {
const handleClick = tab => {
activeTab.value = tab.name
}
// 如果外部 modelValue 更新(比如重新加载数据),同步到 localData
watch(
() => props.modelValue,
(newVal) => {
newVal => {
if (newVal) {
Object.assign(localData, defaultFormData(), newVal)
}
......@@ -920,6 +1100,20 @@ const getPolicyfollowDetail = () => {
if (res.code === 200) {
console.log('====父组件在赋值basicPlanFormData前', basicPlanFormData.value)
newOrderData.value = res.data
policyInfoFormData.value = { ...transformToFormData(res.data, policyInfoFormConfig.value) }
basicPlanFormData.value = { ...transformToFormData(res.data, basicPlanFormConfig.value) }
basicInfoFormData.value = { ...transformToFormData(res.data, basicInfoFormConfig.value) }
firstPremiumFormData.value = {
...transformToFormData(res.data, firstPremiumFormConfig.value)
}
introducerTableData.value = res.data.brokerList || []
console.log('====父组件在赋值basicPlanFormData后', basicPlanFormData.value)
}
<<<<<<< HEAD
getPolicyfollow(props.policyBizId).then(res => {
if (res.code === 200) {
console.log('====父组件在赋值basicPlanFormData前', basicPlanFormData.value)
newOrderData.value = res.data
policyInfoFormData.value = { ...transformToFormData(res.data, policyInfoFormConfig.value) };
basicPlanFormData.value = { ...transformToFormData(res.data, basicPlanFormConfig.value) };
basicInfoFormData.value = { ...transformToFormData(res.data, basicInfoFormConfig.value) };
......@@ -929,17 +1123,20 @@ const getPolicyfollowDetail = () => {
}
})
=======
})
>>>>>>> test
}
// 查询附件列表
const getAttachmentListDetail = (policyBizId) => {
const getAttachmentListDetail = policyBizId => {
if (!policyBizId) {
return
}
const params = {
objectBizId: policyBizId,
pageNo: 1,
pageSize: 100,
pageSize: 100
}
uploadOssFileList(params).then(res => {
if (res.code === 200) {
......@@ -950,7 +1147,7 @@ const getAttachmentListDetail = (policyBizId) => {
}
// 附件上传方法
const handleUploadEnd = (code) => {
const handleUploadEnd = code => {
if (code === 200) {
ElMessage.success('上传文件成功')
fileUploadDialogFlag.value = false
......@@ -963,38 +1160,38 @@ const handleUploadEnd = (code) => {
// 组装表单数据
const transformToFormData = (apiData, formConfig) => {
const formData = {};
const formData = {}
formConfig.forEach(item => {
const { prop, dictType } = item;
const { prop, dictType } = item
let value = null;
let value = null
// 特殊映射(按需添加)
switch (prop) {
case 'signLocation':
value = apiData.signLocation;
break;
value = apiData.signLocation
break
default:
value = apiData[prop];
value = apiData[prop]
}
// 处理字典字段:如果配置了 dictType,且值是 number,转为 string
if (dictType && typeof value === 'number') {
value = String(value);
value = String(value)
}
formData[prop] = value ?? null;
});
formData[prop] = value ?? null
})
return formData;
};
return formData
}
// 获取首期保费对账列表
const getPremiumReconciliationList = (policyNo) => {
const getPremiumReconciliationList = policyNo => {
const params = {
policyNo: policyNo,
pageNo: 1,
pageSize: 100,
pageSize: 100
}
premiumReconciliationList(params).then(res => {
if (res.code === 200) {
......@@ -1004,7 +1201,7 @@ const getPremiumReconciliationList = (policyNo) => {
}
// 获取关联流程记录
const getRelationRecord = (fnaBizId) => {
const getRelationRecord = fnaBizId => {
getProcessDetail(fnaBizId).then(res => {
if (res.code === 200) {
relatedTableData.value = [res.data] || []
......@@ -1013,7 +1210,7 @@ const getRelationRecord = (fnaBizId) => {
})
}
const viewRecordDetail = (e) => {
const viewRecordDetail = e => {
router.push({
path: '/sign/FnaList/edit',
query: {
......@@ -1037,16 +1234,15 @@ const handleSelectChange = async (prop, value, item, type) => {
insuranceCompanyBizIdList: [basicPlanFormData.value.insuranceCompanyBizId],
categoryCodeList: [basicPlanFormData.value.insuranceCategoryCode],
pageNo: 1,
pageSize: 100,
pageSize: 100
}
console.log('====父组件拿到值,去调用产品列表查询接口', params)
getProductLists(params)
}
}
// 获取产品列表
const getProductLists = (params) => {
const getProductLists = params => {
getProductList(params).then(res => {
if (res.code === 200) {
console.log('productList', res.data.records || [])
......@@ -1058,7 +1254,6 @@ const getProductLists = (params) => {
defineExpose({
getPolicyfollowDetail
})
</script>
<style scoped>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment