Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-csf-front
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
yuzhenWang
yd-csf-front
Commits
0bd87028
Commit
0bd87028
authored
May 09, 2026
by
yuzhenWang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'wyz' into 'test'
对接应付明细 See merge request
!130
parents
ee0b4d85
c7eb9f78
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
66 additions
and
28 deletions
+66
-28
src/views/financialCenter/payables.vue
+66
-28
No files found.
src/views/financialCenter/payables.vue
View file @
0bd87028
...
@@ -373,6 +373,20 @@ const payableReportListTableColumns = ref([
...
@@ -373,6 +373,20 @@ const payableReportListTableColumns = ref([
// { prop: 'fortuneBizType', label: '应付款类型', sortable: true, width: '120', formatter: (row) => getFortuneBizTypeLabel(row.fortuneBizType) || '-' },
// { prop: 'fortuneBizType', label: '应付款类型', sortable: true, width: '120', formatter: (row) => getFortuneBizTypeLabel(row.fortuneBizType) || '-' },
// { prop: 'payableNo', label: '应付账款编号', sortable: true, width: '120', formatter: (row) => row.payableNo || '-' },
// { prop: 'payableNo', label: '应付账款编号', sortable: true, width: '120', formatter: (row) => row.payableNo || '-' },
{
{
prop
:
'payableNo'
,
label
:
'业务编号'
,
sortable
:
true
,
width
:
'130'
,
formatter
:
row
=>
row
.
payableNo
||
'-'
},
{
prop
:
'policyNo'
,
label
:
'关联业务编号'
,
sortable
:
true
,
width
:
'130'
,
formatter
:
row
=>
row
.
policyNo
||
'-'
},
{
prop
:
'policyNo'
,
prop
:
'policyNo'
,
label
:
'保单号'
,
label
:
'保单号'
,
sortable
:
true
,
sortable
:
true
,
...
@@ -430,53 +444,77 @@ const payableReportListTableColumns = ref([
...
@@ -430,53 +444,77 @@ const payableReportListTableColumns = ref([
},
},
{
{
prop
:
'payoutDate'
,
prop
:
'payoutDate'
,
label
:
'出账
日
(估)'
,
label
:
'出账
年月
(估)'
,
sortable
:
true
,
sortable
:
true
,
width
:
'120'
,
width
:
'120'
,
formatter
:
row
=>
row
.
payoutDate
||
'-'
formatter
:
row
=>
row
.
payoutDate
||
'-'
},
},
{
{
prop
:
'actualPayoutDate'
,
prop
:
'actualPayoutDate'
,
label
:
'出账
日
(实)'
,
label
:
'出账
年月
(实)'
,
sortable
:
true
,
sortable
:
true
,
width
:
'120'
,
width
:
'120'
,
formatter
:
row
=>
row
.
actualPayoutDate
||
'-'
formatter
:
row
=>
row
.
actualPayoutDate
||
'-'
},
},
{
prop
:
'paidRatio'
,
label
:
'已出账比例'
,
sortable
:
true
,
width
:
'120'
,
formatter
:
row
=>
(
row
.
paidRatio
||
0
)
+
'%'
||
'-'
},
{
prop
:
'unpaidRatio'
,
label
:
'待出账比例'
,
sortable
:
true
,
width
:
'120'
,
formatter
:
row
=>
(
row
.
unpaidRatio
||
0
)
+
'%'
||
'-'
},
// { 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'
,
prop
:
'hkdAmount'
,
label
:
'
应出账金额(估)
'
,
label
:
'
HKD应出账金额
'
,
sortable
:
true
,
sortable
:
true
,
width
:
'120'
,
width
:
'120'
,
formatter
:
row
=>
formatCurrency
(
row
.
hkdAmount
||
0
)
formatter
:
row
=>
formatCurrency
(
row
.
hkdAmount
||
0
)
},
},
{
{
prop
:
'
paidRatio
'
,
prop
:
'
exchangeRate
'
,
label
:
'
已出账比例
'
,
label
:
'
保单币种->HKD汇率
'
,
sortable
:
true
,
sortable
:
true
,
width
:
'1
2
0'
,
width
:
'1
4
0'
,
formatter
:
row
=>
(
row
.
paidRatio
||
0
)
+
'%'
||
'-'
formatter
:
row
=>
formatCurrency
(
row
.
exchangeRate
||
0
)
},
},
{
{
prop
:
'paidAmount'
,
prop
:
'paidAmount'
,
label
:
'已出账金额'
,
label
:
'已出账金额
(HKD)
'
,
sortable
:
true
,
sortable
:
true
,
width
:
'120'
,
width
:
'120'
,
formatter
:
row
=>
formatCurrency
(
row
.
paidAmount
||
0
)
formatter
:
row
=>
formatCurrency
(
row
.
paidAmount
||
0
)
},
},
{
{
prop
:
'unpaid
Ratio
'
,
prop
:
'unpaid
Amount
'
,
label
:
'待出账
比例
'
,
label
:
'待出账
金额(估)
'
,
sortable
:
true
,
sortable
:
true
,
width
:
'120'
,
width
:
'120'
,
formatter
:
row
=>
(
row
.
unpaidRatio
||
0
)
+
'%'
||
'-'
formatter
:
row
=>
formatCurrency
(
row
.
unpaidAmount
||
0
)
},
},
{
{
prop
:
'
unpai
dAmount'
,
prop
:
'
currentPaymentHk
dAmount'
,
label
:
'
待出账金额(估)
'
,
label
:
'
本期待出账金额
'
,
sortable
:
true
,
sortable
:
true
,
width
:
'120'
,
width
:
'120'
,
formatter
:
row
=>
formatCurrency
(
row
.
unpaidAmount
||
0
)
formatter
:
row
=>
formatCurrency
(
row
.
currentPaymentHkdAmount
||
0
)
},
{
prop
:
'exchangeRate'
,
label
:
'本期结算汇率(实)'
,
sortable
:
true
,
width
:
'120'
,
formatter
:
row
=>
formatCurrency
(
row
.
exchangeRate
||
0
)
},
},
{
{
prop
:
'brokerRatio'
,
prop
:
'brokerRatio'
,
...
@@ -507,32 +545,32 @@ const payableReportListTableColumns = ref([
...
@@ -507,32 +545,32 @@ const payableReportListTableColumns = ref([
formatter
:
row
=>
row
.
productName
||
'-'
formatter
:
row
=>
row
.
productName
||
'-'
},
},
{
{
prop
:
'
statusDesc
'
,
prop
:
'
remark
'
,
label
:
'
修改理由
'
,
label
:
'
备注
'
,
sortable
:
true
,
sortable
:
true
,
width
:
'120'
,
width
:
'120'
,
formatter
:
row
=>
row
.
statusDesc
||
'-'
formatter
:
row
=>
row
.
remark
||
'-'
},
},
// {
// prop: 'statusDesc',
// label: '修改理由',
// sortable: true,
// width: '120',
// formatter: row => row.statusDesc || '-'
// },
{
{
prop
:
'creatorName'
,
prop
:
'creatorName'
,
label
:
'
操作
人'
,
label
:
'
创建
人'
,
sortable
:
true
,
sortable
:
true
,
width
:
'120'
,
width
:
'120'
,
formatter
:
row
=>
row
.
creatorName
||
'-'
formatter
:
row
=>
row
.
creatorName
||
'-'
},
},
{
{
prop
:
'
upd
ateTime'
,
prop
:
'
cre
ateTime'
,
label
:
'
操作
时间'
,
label
:
'
创建
时间'
,
sortable
:
true
,
sortable
:
true
,
width
:
'180'
,
width
:
'180'
,
formatter
:
row
=>
row
.
updateTime
||
'-'
formatter
:
row
=>
row
.
createTime
||
'-'
},
{
prop
:
'remark'
,
label
:
'备注'
,
sortable
:
true
,
width
:
'120'
,
formatter
:
row
=>
row
.
remark
||
'-'
}
}
])
])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment