Commit 47535175 by yuzhenWang

最新优化2

parent 0169fc8b
...@@ -368,6 +368,11 @@ const searchFormRef = ref(null) ...@@ -368,6 +368,11 @@ const searchFormRef = ref(null)
const searchParams = ref({}) const searchParams = ref({})
const searchConfig = ref([ const searchConfig = ref([
{ {
type: 'input',
prop: 'businessNo',
label: '业务编号'
},
{
type: 'select', type: 'select',
prop: 'brokerBizIdList', prop: 'brokerBizIdList',
label: '转介人', label: '转介人',
......
...@@ -450,17 +450,41 @@ const payableReportListTableColumns = ref([ ...@@ -450,17 +450,41 @@ const payableReportListTableColumns = ref([
{ prop: 'currentPaymentRuleAmount', label: '本次发放保单记账金额', sortable: true, width: '160' }, { prop: 'currentPaymentRuleAmount', label: '本次发放保单记账金额', sortable: true, width: '160' },
{ prop: 'currentPayoutAmount', label: '本次发放金额', sortable: true, width: '120' }, { prop: 'currentPayoutAmount', label: '本次发放金额', sortable: true, width: '120' },
{ prop: 'currentPaymentHkdAmount', label: '本次发放折合港币金额', sortable: true, width: '160' }, { prop: 'currentPaymentHkdAmount', label: '本次发放折合港币金额', sortable: true, width: '160' },
{ prop: 'currentPaymentRatio', label: '本次发放比例', sortable: true, width: '120' }, {
prop: 'currentPaymentRatio',
label: '本次发放比例',
sortable: true,
width: '120',
formatter: row => (row.currentPaymentRatio ? row.currentPaymentRatio + '%' : '-')
},
{ prop: 'paidRuleAmount', label: '累积已发放保单记账金额', sortable: true, width: '180' }, { prop: 'paidRuleAmount', label: '累积已发放保单记账金额', sortable: true, width: '180' },
{ prop: 'paidAmount', label: '累积已发放港币金额', sortable: true, width: '160' }, { prop: 'paidAmount', label: '累积已发放港币金额', sortable: true, width: '160' },
{ prop: 'paidRatio', label: '累积已发放比例%', sortable: true, width: '140' }, {
{ prop: 'unpaidRatio', label: '剩余发放比例%', sortable: true, width: '120' }, prop: 'paidRatio',
label: '累积已发放比例',
sortable: true,
width: '140',
formatter: row => (row.paidRatio ? row.paidRatio + '%' : '-')
},
{
prop: 'unpaidRatio',
label: '剩余发放比例',
sortable: true,
width: '120',
formatter: row => (row.unpaidRatio ? row.unpaidRatio + '%' : '-')
},
{ prop: 'unpaidRuleAmount', label: '剩余保单记账金额', sortable: true, width: '160' }, { prop: 'unpaidRuleAmount', label: '剩余保单记账金额', sortable: true, width: '160' },
{ prop: 'unpaidRuleAmounthHkd', label: '剩余发放折合港币金额', sortable: true, width: '180' }, { prop: 'unpaidRuleAmounthHkd', label: '剩余发放折合港币金额', sortable: true, width: '180' },
{ prop: 'premium', label: '期交保费', sortable: true, width: '120' }, { prop: 'premium', label: '期交保费', sortable: true, width: '120' },
{ prop: 'fortuneTotalPeriod', label: '供款期数', sortable: true, width: '100' }, { prop: 'fortuneTotalPeriod', label: '供款期数', sortable: true, width: '100' },
{ prop: 'productName', label: '产品计划', sortable: true, width: '150' }, { prop: 'productName', label: '产品计划', sortable: true, width: '150' },
{ prop: 'brokerRatio', label: '持有比例%', sortable: true, width: '100' }, {
prop: 'brokerRatio',
label: '持有比例',
sortable: true,
width: '100',
formatter: row => (row.brokerRatio ? row.brokerRatio + '%' : '-')
},
{ prop: 'remark', label: '备注', sortable: false, width: '200' }, { prop: 'remark', label: '备注', sortable: false, width: '200' },
{ prop: 'creatorName', label: '创建人', sortable: true, width: '100' }, { prop: 'creatorName', label: '创建人', sortable: true, width: '100' },
{ prop: 'createTime', label: '创建时间', sortable: true, width: '160' }, { prop: 'createTime', label: '创建时间', sortable: true, width: '160' },
...@@ -1536,7 +1560,7 @@ const pageTotal = ref(0) ...@@ -1536,7 +1560,7 @@ const pageTotal = ref(0)
const loading = ref(false) const loading = ref(false)
// 表格操作菜单 // 表格操作菜单
const dropdownItems = [ const dropdownItems = [
{ label: '出账记录', value: 'payRecord' }, // { label: '出账记录', value: 'payRecord' },
{ label: '设置状态', value: 'setStatus' }, { label: '设置状态', value: 'setStatus' },
{ label: '更新数据', value: 'updateData' } { label: '更新数据', value: 'updateData' }
] ]
......
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