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
dcc34f02
Commit
dcc34f02
authored
Mar 12, 2026
by
Sweet Zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
数字加千分位
parent
08e77bcd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
12 deletions
+14
-12
src/views/financialCenter/financialBilling.vue
+6
-4
src/views/financialCenter/payables.vue
+1
-1
src/views/financialCenter/receivables.vue
+7
-7
No files found.
src/views/financialCenter/financialBilling.vue
View file @
dcc34f02
...
...
@@ -116,6 +116,7 @@
label=
"累积已入账金额"
width=
"120"
sortable
:formatter=
"row=>formatCurrency(row.commissionPaidAmount || 0)"
/>
<el-table-column
prop=
"commissionPaidRatio"
...
...
@@ -130,16 +131,17 @@
<el-table-column
prop=
"broker"
label=
"转介人"
width=
"130"
sortable
/>
<el-table-column
prop=
"team"
label=
"所属团队"
width=
"120"
sortable
/>
<el-table-column
prop=
"exchangeRate"
label=
"结算汇率(估)"
width=
"140"
sortable
/>
<el-table-column
prop=
"hkdAmount"
label=
"应出账金额(HKD)"
width=
"160"
sortable
/>
<el-table-column
prop=
"hkdAmount"
label=
"应出账金额(HKD)"
width=
"160"
sortable
:formatter=
"row=>formatCurrency(row.hkdAmount || 0)"
/>
<el-table-column
prop=
"currency"
label=
"出账币种"
width=
"130"
sortable
/>
<el-table-column
prop=
"fortunePaidAmount"
label=
"已出账金额"
width=
"160"
sortable
/>
<el-table-column
prop=
"fortuneUnpaidAmount"
label=
"剩余出账金额"
width=
"160"
sortable
/>
<el-table-column
prop=
"fortunePaidAmount"
label=
"已出账金额"
width=
"160"
sortable
:formatter=
"row=>formatCurrency(row.fortunePaidAmount || 0)"
/>
<el-table-column
prop=
"fortuneUnpaidAmount"
label=
"剩余出账金额"
width=
"160"
sortable
:formatter=
"row=>formatCurrency(row.fortuneUnpaidAmount || 0)"
/>
<!-- <el-table-column prop="currentPaymentAmount" label="本期出账金额" width="120" sortable/> -->
<el-table-column
prop=
"currentPaymentHkdAmount"
label=
"本期出账金额(HKD)"
width=
"160"
sortable
:formatter=
"row=>formatCurrency(row.currentPaymentHkdAmount || 0)"
/>
<el-table-column
prop=
"fortuneUnpaidRatio"
...
...
@@ -153,7 +155,7 @@
{{
selectDictLabel
(
csf_fortune_status
,
row
.
status
)
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"premium"
label=
"期交保费"
width=
"120"
sortable
/>
<el-table-column
prop=
"premium"
label=
"期交保费"
width=
"120"
sortable
:formatter=
"row=>formatCurrency(row.premium || 0)"
/>
<el-table-column
prop=
"policyCurrency"
label=
"保单币种"
width=
"120"
sortable
/>
<el-table-column
prop=
"payoutDate"
label=
"出账日(估)"
width=
"120"
sortable
/>
<el-table-column
prop=
"actualPayoutDate"
label=
"出账日(实)"
width=
"120"
sortable
/>
...
...
src/views/financialCenter/payables.vue
View file @
dcc34f02
...
...
@@ -509,7 +509,7 @@ const handleSelect = async (e, row) => {
payRecordDialogTableColumns
.
value
=
[
{
property
:
'broker'
,
label
:
'转介人'
,
width
:
'100'
,
},
{
property
:
'fortuneName'
,
label
:
'出账项目'
,
width
:
'150'
},
{
property
:
'currentPayment
Amount'
,
label
:
'出账金额'
,
width
:
'150'
},
{
property
:
'currentPayment
HkdAmount'
,
label
:
'出账金额'
,
width
:
'150'
,
formatter
:(
row
)
=>
formatCurrency
(
row
.
currentPaymentHkdAmount
||
0
)
},
{
property
:
'currency'
,
label
:
'出账币种'
,
width
:
'150'
},
{
property
:
'currentPaymentRatio'
,
label
:
'出账比例'
,
width
:
'150'
,
formatter
:
(
row
)
=>
`
${
row
.
currentPaymentRatio
}
%`
},
{
property
:
'fortuneUnpaidRatio'
,
label
:
'待出账比例'
,
width
:
'150'
,
formatter
:
(
row
)
=>
`
${
row
.
fortuneUnpaidRatio
}
%`
},
...
...
src/views/financialCenter/receivables.vue
View file @
dcc34f02
...
...
@@ -78,7 +78,7 @@
<el-col
:xs=
"24"
:sm=
"12"
:md=
"4"
:lg=
"4"
>
<el-card
shadow=
"hover"
class=
"statistics-card"
>
<div
class=
"card-content"
>
<div
class=
"card-label"
>
应
出
账总金额
</div>
<div
class=
"card-label"
>
应
入
账总金额
</div>
<div
class=
"card-value"
>
{{ formatCurrency(detailRecordStatistics.totalExpectedAmount) }}
</div>
</div>
...
...
@@ -87,7 +87,7 @@
<el-col
:xs=
"24"
:sm=
"12"
:md=
"4"
:lg=
"4"
>
<el-card
shadow=
"hover"
class=
"statistics-card"
>
<div
class=
"card-content"
>
<div
class=
"card-label"
>
已
出
账金额
</div>
<div
class=
"card-label"
>
已
入
账金额
</div>
<div
class=
"card-value"
>
{{ formatCurrency(detailRecordStatistics.totalPaidAmount) }}
</div>
</div>
...
...
@@ -96,7 +96,7 @@
<el-col
:xs=
"24"
:sm=
"12"
:md=
"4"
:lg=
"4"
>
<el-card
shadow=
"hover"
class=
"statistics-card"
>
<div
class=
"card-content"
>
<div
class=
"card-label"
>
待
出
账金额
</div>
<div
class=
"card-label"
>
待
入
账金额
</div>
<div
class=
"card-value"
>
{{ formatCurrency(detailRecordStatistics.totalUnpaidAmount) }}
</div>
</div>
...
...
@@ -105,7 +105,7 @@
<el-col
:xs=
"24"
:sm=
"12"
:md=
"4"
:lg=
"4"
>
<el-card
shadow=
"hover"
class=
"statistics-card"
>
<div
class=
"card-content"
>
<div
class=
"card-label"
>
已
出
账比例
</div>
<div
class=
"card-label"
>
已
入
账比例
</div>
<div
class=
"card-value"
>
{{ detailRecordStatistics.paidAmountRatio }}%
</div>
</div>
</el-card>
...
...
@@ -158,7 +158,7 @@
:showAction=
"false"
:showClose=
"true"
@
close=
"entryRecordDialogTableVisible = false"
>
<el-table
:data=
"entryRecordDialogTableData"
border
style=
"width: 100%"
>
<el-table-column
v-for=
"item in entryRecordDialogTableColumns"
:key=
"item.property"
:prop=
"item.property"
:label=
"item.label"
:width=
"item.width"
/>
:prop=
"item.property"
:label=
"item.label"
:width=
"item.width"
:formatter=
"item.formatter"
/>
<el-table-column
fixed=
"right"
label=
"操作"
min-width=
"120"
>
<
template
#
default
>
<el-button
link
type=
"primary"
size=
"small"
@
click=
"handleClick"
>
...
...
@@ -667,8 +667,8 @@ const handleSelect = async (e, row) => {
{
property
:
'totalPeriod'
,
label
:
'总期数'
,
width
:
'150'
},
{
property
:
'exchangeRate'
,
label
:
'结算汇率(实)'
,
width
:
'150'
},
{
property
:
'currency'
,
label
:
'入账币种'
,
width
:
'150'
},
{
property
:
'amount'
,
label
:
'入账金额'
,
width
:
'150'
},
{
property
:
'currentCommissionRatio'
,
label
:
'入账比例'
,
width
:
'150'
},
{
property
:
'amount'
,
label
:
'入账金额'
,
width
:
'150'
,
formatter
:(
row
)
=>
formatCurrency
(
row
.
amount
||
0
)
},
{
property
:
'currentCommissionRatio'
,
label
:
'入账比例'
,
width
:
'150'
,
formatter
:
(
row
)
=>
`
${
row
.
currentCommissionRatio
||
''
}
%`
},
{
property
:
'commissionDate'
,
label
:
'入账日'
,
width
:
'150'
},
{
property
:
'commissionStatus'
,
label
:
'入账状态'
,
width
:
'150'
}
]
...
...
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