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
f51c60b8
Commit
f51c60b8
authored
May 06, 2026
by
yuzhenWang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
测试出账检核--分期出账
parent
35494bf9
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
52 additions
and
34 deletions
+52
-34
src/store/modules/user.js
+2
-0
src/views/financialCenter/financialBilling.vue
+0
-0
src/views/financialCenter/receivables.vue
+43
-29
src/views/sign/FnaList/edit.vue
+6
-4
src/views/sign/policyReceipts/premiumRecon.vue
+1
-1
No files found.
src/store/modules/user.js
View file @
f51c60b8
...
...
@@ -11,6 +11,7 @@ const useUserStore = defineStore('user', {
state
:
()
=>
({
token
:
getToken
(),
id
:
''
,
realName
:
''
,
name
:
''
,
nickName
:
''
,
avatar
:
''
,
...
...
@@ -74,6 +75,7 @@ const useUserStore = defineStore('user', {
this
.
id
=
user
.
userId
this
.
name
=
user
.
userName
this
.
realName
=
user
.
realName
this
.
nickName
=
user
.
nickName
this
.
avatar
=
avatar
this
.
isSuperAdmin
=
user
.
isSuperAdmin
...
...
src/views/financialCenter/financialBilling.vue
View file @
f51c60b8
This diff is collapsed.
Click to expand it.
src/views/financialCenter/receivables.vue
View file @
f51c60b8
...
...
@@ -965,19 +965,12 @@ const receivableReportTableColumns = ref([
{
prop
:
'commissionDate'
,
label
:
'入账年月(估)'
,
sortable
:
true
,
width
:
'130'
},
{
prop
:
'commissionRatio'
,
label
:
'
产品对应
来佣率'
,
label
:
'
保单
来佣率'
,
sortable
:
true
,
width
:
'120'
,
formatter
:
row
=>
(
row
.
commissionRatio
||
0
)
+
'%'
||
'-'
},
{
prop
:
'hkdAmount'
,
label
:
'预估入账金额HKD'
,
sortable
:
true
,
width
:
'120'
,
formatter
:
row
=>
formatCurrency
(
row
.
hkdAmount
||
0
)
},
{
prop
:
'paidRatio'
,
label
:
'已入账比例'
,
sortable
:
true
,
...
...
@@ -985,25 +978,25 @@ const receivableReportTableColumns = ref([
formatter
:
row
=>
(
row
.
paidRatio
||
0
)
+
'%'
||
'-'
},
{
prop
:
'
paidAmount
'
,
label
:
'
已入账金额HKD
'
,
prop
:
'
unpaidRatio
'
,
label
:
'
待入账比例
'
,
sortable
:
true
,
width
:
'120'
,
formatter
:
row
=>
formatCurrency
(
row
.
paidAmount
||
0
)
formatter
:
row
=>
(
row
.
unpaidRatio
||
0
)
+
'%'
||
'-'
},
{
prop
:
'
unpaidRatio
'
,
label
:
'
待入账比例
'
,
prop
:
'
paidAmount
'
,
label
:
'
已入账金额HKD
'
,
sortable
:
true
,
width
:
'120'
,
formatter
:
row
=>
(
row
.
unpaidRatio
||
0
)
+
'%'
||
'-'
formatter
:
row
=>
formatCurrency
(
row
.
paidAmount
||
0
)
},
{
prop
:
'
unpai
dAmount'
,
label
:
'待入账金额HKD'
,
prop
:
'
hk
dAmount'
,
label
:
'待入账金额HKD
(估)
'
,
sortable
:
true
,
width
:
'120'
,
formatter
:
row
=>
formatCurrency
(
row
.
unpai
dAmount
||
0
)
formatter
:
row
=>
formatCurrency
(
row
.
hk
dAmount
||
0
)
},
{
prop
:
'exchangeRate'
,
label
:
'结算汇率(估)'
,
sortable
:
true
,
width
:
'120'
},
{
...
...
@@ -1014,6 +1007,20 @@ const receivableReportTableColumns = ref([
formatter
:
row
=>
row
.
insuranceCompany
||
'-'
},
{
prop
:
'productName'
,
label
:
'产品计划'
,
sortable
:
true
,
width
:
'120'
,
formatter
:
row
=>
row
.
productName
||
'-'
},
{
prop
:
'premium'
,
label
:
'期交保费'
,
sortable
:
true
,
width
:
'120'
,
formatter
:
row
=>
formatCurrency
(
row
.
premium
||
0
)
},
{
prop
:
'policyHolder'
,
label
:
'投保人'
,
sortable
:
true
,
...
...
@@ -1028,24 +1035,18 @@ const receivableReportTableColumns = ref([
formatter
:
row
=>
row
.
policyHolderEn
||
'-'
},
{
prop
:
'remark'
,
label
:
'备注'
,
width
:
'150'
,
formatter
:
row
=>
row
.
remark
||
'-'
},
{
prop
:
'productName'
,
label
:
'产品计划'
,
prop
:
'insured'
,
label
:
'受保人'
,
sortable
:
true
,
width
:
'120'
,
formatter
:
row
=>
row
.
productName
||
'-'
formatter
:
row
=>
row
.
insured
||
'-'
},
{
prop
:
'
premium
'
,
label
:
'
期交保费
'
,
prop
:
'
insuredEn
'
,
label
:
'
受保人(英文)
'
,
sortable
:
true
,
width
:
'120'
,
formatter
:
row
=>
formatCurrency
(
row
.
premium
||
0
)
formatter
:
row
=>
row
.
insuredEn
||
'-'
},
{
prop
:
'policyCurrency'
,
...
...
@@ -1053,6 +1054,19 @@ const receivableReportTableColumns = ref([
sortable
:
true
,
width
:
'120'
,
formatter
:
row
=>
row
.
policyCurrency
||
'-'
},
// {
// prop: 'unpaidAmount',
// label: '待入账金额HKD',
// sortable: true,
// width: '120',
// formatter: row => formatCurrency(row.unpaidAmount || 0)
// },
{
prop
:
'remark'
,
label
:
'备注'
,
width
:
'150'
,
formatter
:
row
=>
row
.
remark
||
'-'
}
])
// 应收明细
...
...
src/views/sign/FnaList/edit.vue
View file @
f51c60b8
...
...
@@ -157,11 +157,13 @@ const route = useRoute()
const
router
=
useRouter
()
const
activeName
=
ref
()
const
loading
=
ref
(
false
)
console
.
log
(
'userStore'
,
userStore
)
const
processInfo
=
ref
({
fnaNo
:
'--'
,
status
:
'未保存'
,
createTime
:
proxy
.
parseTime
(
new
Date
()),
creatorName
:
userStore
.
n
ame
creatorName
:
userStore
.
realN
ame
})
// 流程详情信息
const
updateStatus
=
ref
(
false
)
const
dictTypeLists
=
ref
([])
...
...
@@ -399,9 +401,9 @@ function getProcessInfo(fnaBizId, changeTab, currentTab) {
getProcessDetail
(
fnaBizId
).
then
(
async
res
=>
{
if
(
res
.
code
==
200
)
{
processInfo
.
value
=
res
.
data
if
(
!
processInfo
.
value
.
creatorName
)
{
processInfo
.
value
.
creatorName
=
userStore
.
n
ame
}
//
if (!processInfo.value.creatorName) {
// processInfo.value.creatorName = userStore.realN
ame
//
}
tabsList
.
value
.
forEach
(
item
=>
{
if
(
res
.
data
[
item
.
key
]
&&
item
.
status
)
{
item
.
status
=
'1'
...
...
src/views/sign/policyReceipts/premiumRecon.vue
View file @
f51c60b8
...
...
@@ -550,7 +550,7 @@ const affirmConfig = [
type
:
'select'
,
prop
:
'status'
,
label
:
'保单状态'
,
dictType
:
'csf_policy_status_new'
,
dictType
:
'csf_policy_
follow_
status_new'
,
visible
:
formData
=>
(
formData
.
remainingUnpaidAmount
&&
Number
(
formData
.
remainingUnpaidAmount
)
<
0
)
||
Number
(
formData
.
remainingUnpaidAmount
)
==
0
...
...
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