Commit 51b794e2 by Sweet Zhang

新单跟进对接

parent 17e6880a
......@@ -226,7 +226,7 @@ const payableReportListTableColumns = ref([
{ prop: 'fortuneTotalPeriod', label: '出账总期数', sortable: true, width: '100', formatter: (row) => row.fortuneTotalPeriod || '-' },
{ prop: 'payoutDate', label: '出账日(估)', sortable: true, width: '120', formatter: (row) => row.payoutDate || '-' },
{ prop: 'actualPayoutDate', label: '出账日(实)', sortable: true, width: '120', formatter: (row) => row.actualPayoutDate || '-' },
{ prop: 'commissionRatio', label: '发佣率(对应职级)', sortable: true, width: '120', formatter: (row) => (row.commissionRatio || 0) + '%' || '-' },
{ prop: 'commissionRatio', label: '职级对应积分比例', sortable: true, width: '120', formatter: (row) => (row.commissionRatio || 0) + '%' || '-' },
{ prop: 'hkdAmount', label: '应出账金额(估)', sortable: true, width: '120', formatter: (row) => formatCurrency(row.hkdAmount || 0) },
{ prop: 'paidRatio', label: '已出账比例', sortable: true, width: '120', formatter: (row) => (row.paidRatio || 0) + '%' || '-' },
{ prop: 'paidAmount', label: '已出账金额', sortable: true, width: '120', formatter: (row) => formatCurrency(row.paidAmount || 0) },
......
......@@ -200,7 +200,7 @@ const onSubmit = async (data) => {
} else if (data.activeTab === 'productPlan') {
params = {
policyBizId: selectedRow.value.policyBizId,
...data,
apiProductPlanMainInfoDto:{...data},
activeTab: undefined
}
const res = await updatePolicyProduct(params)
......
......@@ -613,7 +613,9 @@ const basicPlanFormConfig = ref([
return res?.data.records || []
},
onChangeExtraFields: {
insuranceCompany: 'fullName'
insuranceCompany: 'fullName',
companyId: 'insuranceCompanyId',
companyName: 'fullName'
}
},
{
......@@ -676,7 +678,6 @@ const basicPlanFormConfig = ref([
type: 'input',
prop: 'issueNumber',
label: '供款期数',
inputType: 'decimal'
},
{
type: 'input',
......@@ -696,7 +697,7 @@ const basicPlanFormConfig = ref([
},
{
type: 'input',
prop: 'initialPremium',
prop: 'eachIssuePremium',
label: '每期保费',
inputType: 'decimal',
decimalDigits: 4,
......
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