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
dbfb2eaa
Commit
dbfb2eaa
authored
May 12, 2026
by
yuzhenWang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
切换分支
parent
fcf9390e
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
70 additions
and
34 deletions
+70
-34
src/views/financialCenter/financialBilling.vue
+4
-4
src/views/financialCenter/financialIncome.vue
+28
-15
src/views/financialCenter/financialSalary.vue
+4
-2
src/views/financialCenter/payables.vue
+17
-6
src/views/financialCenter/payroll.vue
+1
-1
src/views/financialCenter/receivables.vue
+4
-2
src/views/sign/policyReceipts/index.vue
+6
-2
src/views/sign/policyReceipts/premiumRecon.vue
+6
-2
No files found.
src/views/financialCenter/financialBilling.vue
View file @
dbfb2eaa
...
...
@@ -163,8 +163,8 @@
: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
/>
<el-table-column
prop=
"payoutDate"
label=
"出账
月
(估)"
width=
"120"
sortable
/>
<el-table-column
prop=
"actualPayoutDate"
label=
"出账
月
(实)"
width=
"120"
sortable
/>
<el-table-column
prop=
"remark"
label=
"备注"
width=
"120"
sortable
/>
<el-table-column
fixed=
"right"
label=
"操作"
min-width=
"120"
>
<
template
#
default=
"{ row }"
>
...
...
@@ -1174,8 +1174,8 @@ const addCheckRecordConfig = [
},
transform
:
res
=>
{
return
res
?.
data
.
records
||
[]
}
,
rules
:
[{
required
:
true
,
message
:
'所属团队必填'
,
trigger
:
'blur'
}]
}
//
rules: [{ required: true, message: '所属团队必填', trigger: 'blur' }]
},
{
...
...
src/views/financialCenter/financialIncome.vue
View file @
dbfb2eaa
...
...
@@ -113,7 +113,7 @@
<el-table-column
prop=
"reconciliationYearMonth"
label=
"检核年月"
width=
"120"
sortable
/>
<el-table-column
prop=
"policyNo"
label=
"保单号"
width=
"120"
sortable
/>
<el-table-column
prop=
"reconciliationCompany"
label=
"对账公司"
width=
"120"
sortable
/>
<el-table-column
prop=
"commissionDate"
label=
"入账
日
"
width=
"120"
sortable
/>
<el-table-column
prop=
"commissionDate"
label=
"入账
月
"
width=
"120"
sortable
/>
<el-table-column
prop=
"commissionExpectedStatus"
label=
"入账状态"
width=
"120"
sortable
>
<
template
#
default=
"{ row }"
>
{{
selectDictLabel
(
csf_expected_commission_status
,
row
.
commissionExpectedStatus
)
}}
...
...
@@ -572,15 +572,15 @@ const searchConfig = ref([
}
},
{
type
:
'
date
'
,
type
:
'
month
'
,
prop
:
'expectedDate'
,
label
:
'入账
日
(估)'
,
label
:
'入账
月
(估)'
,
placeholder
:
'请选择'
},
{
type
:
'
date
range'
,
type
:
'
month
range'
,
prop
:
'commissionDate'
,
label
:
'入账
日
(实)'
,
label
:
'入账
月
(实)'
,
startPlaceholder
:
'开始时间'
,
endPlaceholder
:
'结束时间'
},
...
...
@@ -682,10 +682,9 @@ watch(
const
confirmRecordCheck
=
async
()
=>
{
//等待后端接口
try
{
// ✅ 统一从子组件获取完整表单数据(含 extra 字段)
// await nextTick() // 确保子组件已同步
const
formData
=
updateDataFormRef
.
value
.
getFormData
()
console
.
log
(
'==========='
,
formData
)
let
params
params
=
{
...
formData
,
// ←←← 使用 formData,不是 addReceivablesFormModel.value
...
...
@@ -777,12 +776,12 @@ const addCheckRecordConfig = ref([
rules
:
[{
pattern
:
/^
\d
+$/
,
message
:
'只能输入正整数'
,
trigger
:
'blur'
}]
},
{
type
:
'
date
'
,
type
:
'
month
'
,
prop
:
'commissionDate'
,
label
:
'入账
日
(实)'
,
label
:
'入账
月
(实)'
,
placeholder
:
'请选择'
,
maxDate
:
'today'
,
rules
:
[{
required
:
true
,
message
:
'请选择入账
日
(实)'
,
trigger
:
'blur'
}]
rules
:
[{
required
:
true
,
message
:
'请选择入账
月
(实)'
,
trigger
:
'blur'
}]
},
{
type
:
'input'
,
...
...
@@ -1024,13 +1023,26 @@ const operationBtnList = ref([
// 加载表格数据
const
loadTableData
=
async
(
searchParams
=
{})
=>
{
loading
.
value
=
true
try
{
if
(
searchParams
.
commissionDate
&&
searchParams
.
commissionDate
.
length
>
0
)
{
searchParams
.
commissionDateStart
=
`
${
searchParams
.
commissionDate
[
0
]}
-01`
searchParams
.
commissionDateEnd
=
`
${
searchParams
.
commissionDate
[
1
]}
-01`
}
else
{
searchParams
.
commissionDateStart
=
''
searchParams
.
commissionDateEnd
=
''
}
if
(
searchParams
.
expectedDate
)
{
searchParams
.
expectedDate
=
`
${
searchParams
.
expectedDate
}
-01`
}
else
{
searchParams
.
expectedDate
=
''
}
const
params
=
{
pageNo
:
currentPage
.
value
,
pageSize
:
pageSize
.
value
,
...
searchParams
,
commissionDateStart
:
searchParams
.
commissionDate
?.[
0
]
||
undefined
,
commissionDateEnd
:
searchParams
.
commissionDate
?.[
1
]
||
undefined
,
//
commissionDateStart: searchParams.commissionDate?.[0] || undefined,
//
commissionDateEnd: searchParams.commissionDate?.[1] || undefined,
commissionDate
:
undefined
}
const
res
=
await
getPolicyCommissionList
(
params
)
...
...
@@ -1050,12 +1062,13 @@ loadTableData()
// 分页事件
const
handleSizeChange
=
val
=>
{
pageSize
.
value
=
val
loadTableData
()
const
params
=
searchFormRef
.
value
.
getFormData
()
loadTableData
(
params
)
}
const
handleCurrentChange
=
val
=>
{
currentPage
.
value
=
val
loadTableData
()
const
params
=
searchFormRef
.
value
.
getFormData
()
loadTableData
(
params
)
}
// 表格数据
const
tableData
=
ref
([])
...
...
src/views/financialCenter/financialSalary.vue
View file @
dbfb2eaa
...
...
@@ -733,11 +733,13 @@ const salaryDataSetting = async e => {
// 分页事件
const
handleSizeChange
=
val
=>
{
pageSize
.
value
=
val
getList
()
const
params
=
searchFormRef
.
value
.
getFormData
()
getList
(
params
)
}
const
handleCurrentChange
=
val
=>
{
currentPage
.
value
=
val
getList
()
const
params
=
searchFormRef
.
value
.
getFormData
()
getList
(
params
)
}
// 设置当前页的选中状态
...
...
src/views/financialCenter/payables.vue
View file @
dbfb2eaa
...
...
@@ -630,9 +630,9 @@ const searchConfig = ref([
label
:
'投保人'
},
{
type
:
'
date
range'
,
type
:
'
month
range'
,
prop
:
'payoutDate'
,
label
:
'出账
日
(估)'
,
label
:
'出账
月
(估)'
,
startPlaceholder
:
'开始时间'
,
endPlaceholder
:
'结束时间'
},
...
...
@@ -1055,23 +1055,34 @@ const operationBtnList = ref([
// 分页事件
const
handleSizeChange
=
val
=>
{
pageSize
.
value
=
val
loadTableData
()
const
params
=
searchFormRef
.
value
.
getFormData
()
loadTableData
(
params
)
}
const
handleCurrentChange
=
val
=>
{
currentPage
.
value
=
val
loadTableData
()
const
params
=
searchFormRef
.
value
.
getFormData
()
loadTableData
(
params
)
}
// 加载表格数据
const
loadTableData
=
async
()
=>
{
const
searchParams
=
searchFormRef
.
value
.
getFormData
()
||
{}
loading
.
value
=
true
if
(
searchParams
.
payoutDate
.
length
>
0
)
{
searchParams
.
payoutDateStart
=
`
${
searchParams
.
payoutDate
[
0
]}
-01`
searchParams
.
payoutDateEnd
=
`
${
searchParams
.
payoutDate
[
1
]}
-01`
}
else
{
searchParams
.
payoutDateStart
=
''
searchParams
.
payoutDateEnd
=
''
}
try
{
const
params
=
{
...
searchParams
,
payoutDateStart
:
searchParams
.
payoutDate
?.[
0
]
||
undefined
,
payoutDateEnd
:
searchParams
.
payoutDate
?.[
1
]
||
undefined
,
//
payoutDateStart: searchParams.payoutDate?.[0] || undefined,
//
payoutDateEnd: searchParams.payoutDate?.[1] || undefined,
payoutDate
:
undefined
,
pageNo
:
currentPage
.
value
,
pageSize
:
pageSize
.
value
...
...
src/views/financialCenter/payroll.vue
View file @
dbfb2eaa
...
...
@@ -75,7 +75,7 @@ const tableColumns = ref([
{
prop
:
'fortuneAccountMonth'
,
label
:
'出账月(实)'
,
sortable
:
true
,
width
:
'150'
},
{
prop
:
'billOrg'
,
label
:
'出账机构'
,
sortable
:
true
,
width
:
'150'
},
{
prop
:
'hkdAmount'
,
label
:
'本期总出账金额(原币种)'
,
sortable
:
true
,
width
:
'150'
},
{
prop
:
'fortuneAccountBizId'
,
label
:
'出账记录业务id'
,
sortable
:
true
,
width
:
'150'
},
//
{ prop: 'fortuneAccountBizId', label: '出账记录业务id', sortable: true, width: '150'},
])
// 添加表格引用
...
...
src/views/financialCenter/receivables.vue
View file @
dbfb2eaa
...
...
@@ -720,12 +720,14 @@ const operationBtnList = ref([
// 分页事件
const
handleSizeChange
=
val
=>
{
pageSize
.
value
=
val
loadTableData
()
const
params
=
searchFormRef
.
value
.
getFormData
()
loadTableData
(
params
)
}
const
handleCurrentChange
=
val
=>
{
currentPage
.
value
=
val
loadTableData
()
const
params
=
searchFormRef
.
value
.
getFormData
()
loadTableData
(
params
)
}
// 加载表格数据
...
...
src/views/sign/policyReceipts/index.vue
View file @
dbfb2eaa
...
...
@@ -422,6 +422,8 @@ const operationBtnList = ref([
// 加载表格数据
const
loadTableData
=
async
(
searchParams
=
{})
=>
{
loading
.
value
=
true
// console.log('searchFormRef.value', searchFormRef.value)
// const searchParams = searchFormRef.value.getFormData() || {}
try
{
const
params
=
{
pageNo
:
currentPage
.
value
,
...
...
@@ -444,11 +446,13 @@ loadTableData()
// 分页事件
const
handleSizeChange
=
val
=>
{
pageSize
.
value
=
val
loadTableData
()
const
params
=
searchFormRef
.
value
.
getFormData
()
loadTableData
(
params
)
}
const
handleCurrentChange
=
val
=>
{
currentPage
.
value
=
val
loadTableData
()
const
params
=
searchFormRef
.
value
.
getFormData
()
loadTableData
(
params
)
}
// 表格数据
const
tableData
=
ref
([])
...
...
src/views/sign/policyReceipts/premiumRecon.vue
View file @
dbfb2eaa
...
...
@@ -1289,6 +1289,7 @@ const operationBtnList = ref([
// 加载表格数据
const
loadTableData
=
async
(
searchParams
=
{})
=>
{
loading
.
value
=
true
try
{
const
params
=
{
pageNo
:
currentPage
.
value
,
...
...
@@ -1311,11 +1312,14 @@ const loadTableData = async (searchParams = {}) => {
// 分页事件
const
handleSizeChange
=
val
=>
{
pageSize
.
value
=
val
loadTableData
()
const
params
=
searchFormRef
.
value
.
getFormData
()
loadTableData
(
params
)
}
const
handleCurrentChange
=
val
=>
{
currentPage
.
value
=
val
loadTableData
()
const
params
=
searchFormRef
.
value
.
getFormData
()
loadTableData
(
params
)
}
// 表格数据
const
tableData
=
ref
([])
...
...
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