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
cda44161
Commit
cda44161
authored
Mar 13, 2026
by
Sweet Zhang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
概念解释
parent
f71145ef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
5 deletions
+15
-5
src/views/financialCenter/financialBilling.vue
+1
-1
src/views/financialCenter/financialIncome.vue
+14
-4
No files found.
src/views/financialCenter/financialBilling.vue
View file @
cda44161
...
...
@@ -66,7 +66,7 @@
/>
<el-table-column
prop=
"commissionPaidRatio"
label=
"累积
已入账比例
"
label=
"累积
实佣率
"
width=
"120"
sortable
:formatter=
"row => `${row.commissionPaidRatio ? row.commissionPaidRatio : 0}%`"
...
...
src/views/financialCenter/financialIncome.vue
View file @
cda44161
...
...
@@ -41,6 +41,14 @@
</el-col>
</el-row>
</div>
<el-row>
<el-col
:span=
"4"
>
<el-text
tag=
"mark"
class=
"mx-1"
>
实佣率=实际入账金额/结算汇率/每期保费
</el-text>
</el-col>
<el-col
:span=
"6"
>
<el-text
tag=
"mark"
class=
"mx-1"
>
达成率缺口= 1 - 本期实佣率/产品本期来佣率
</el-text>
</el-col>
</el-row>
<el-table
:data=
"tableData"
ref=
"multipleTableRef"
height=
"400"
row-key=
"id"
border
highlight-current-row
style=
"width: 100%"
v-loading=
"loading"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"40"
:selectable=
"selectableFn"
/>
...
...
@@ -63,9 +71,9 @@
{{
selectDictLabel
(
csf_expected_commission_status
,
row
.
commissionExpectedStatus
)
}}
</
template
>
</el-table-column>
<el-table-column
prop=
"currentCommissionRatio"
label=
"本次
入账比例
"
width=
"130"
sortable
:formatter=
"formatRatio"
/>
<el-table-column
prop=
"paidRatio"
label=
"累积
入账比例
"
width=
"130"
sortable
:formatter=
"formatRatio"
/>
<el-table-column
prop=
"pendingRatio"
label=
"
待入账比例
"
width=
"120"
sortable
:formatter=
"formatRatio"
/>
<el-table-column
prop=
"currentCommissionRatio"
label=
"本次
实佣率
"
width=
"130"
sortable
:formatter=
"formatRatio"
/>
<el-table-column
prop=
"paidRatio"
label=
"累积
实佣率
"
width=
"130"
sortable
:formatter=
"formatRatio"
/>
<el-table-column
prop=
"pendingRatio"
label=
"
达成率缺口
"
width=
"120"
sortable
:formatter=
"formatRatio"
/>
<el-table-column
prop=
"amount"
label=
"本次入账金额"
width=
"130"
sortable
:formatter=
"formatCurrencyUtil"
/>
<el-table-column
prop=
"currency"
label=
"入账币种"
width=
"120"
sortable
/>
<el-table-column
prop=
"exchangeRate"
label=
"结算汇率(实)"
width=
"140"
sortable
/>
...
...
@@ -265,12 +273,14 @@ const downloadTemplate = () => {
link
.
download
=
'入账检核导入模板.xlsx'
// 设置下载文件名
link
.
click
()
// 自动触发点击,无需 append 到 DOM(现代浏览器支持)
}
const
formatRatio
=
(
row
,
column
,
cellValue
,
index
)
=>
{
if
(
cellValue
==
null
||
cellValue
==
''
||
cellValue
==
0
)
{
if
(
cellValue
==
null
||
cellValue
==
''
&&
cellValue
!
==
0
)
{
return
'-'
}
return
cellValue
+
'%'
}
const
formatCurrencyUtil
=
(
row
,
column
,
cellValue
,
index
)
=>
{
if
(
cellValue
==
null
||
cellValue
==
''
||
cellValue
==
0
)
{
return
'-'
...
...
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