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
0
Merge Requests
0
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
3fc93f16
Commit
3fc93f16
authored
Jul 10, 2026
by
yuzhenWang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'wyz' into 'test'
优化2 See merge request
!183
parents
e7ad70d0
09009814
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
10 deletions
+12
-10
src/views/financialCenter/financialBilling.vue
+9
-8
src/views/financialCenter/financialSalary.vue
+3
-2
No files found.
src/views/financialCenter/financialBilling.vue
View file @
3fc93f16
...
@@ -95,7 +95,7 @@
...
@@ -95,7 +95,7 @@
sortable
sortable
:formatter=
"row => formatCurrency(row.commissionPaidAmount || 0)"
:formatter=
"row => formatCurrency(row.commissionPaidAmount || 0)"
/>
/>
<el-table-column
prop=
"reconciliationYearMonth"
label=
"检核年月"
width=
"130"
sortable
/>
<el-table-column
<el-table-column
prop=
"commissionPendingRatio"
prop=
"commissionPendingRatio"
label=
"达成率缺口"
label=
"达成率缺口"
...
@@ -368,7 +368,7 @@ const loading = ref(false)
...
@@ -368,7 +368,7 @@ const loading = ref(false)
const
selectedRow
=
ref
(
null
)
const
selectedRow
=
ref
(
null
)
const
searchFormRef
=
ref
(
null
)
const
searchFormRef
=
ref
(
null
)
const
searchParams
=
ref
({})
const
searchParams
=
ref
({})
le
t
oldStaticData
=
ref
({})
cons
t
oldStaticData
=
ref
({})
// 动态生成操作菜单项(根据行数据)
// 动态生成操作菜单项(根据行数据)
const
getOperateItems
=
row
=>
{
const
getOperateItems
=
row
=>
{
const
items
=
[]
const
items
=
[]
...
@@ -446,6 +446,13 @@ const searchConfig = ref([
...
@@ -446,6 +446,13 @@ const searchConfig = ref([
}
}
},
},
{
{
type
:
'month'
,
prop
:
'reconciliationYearMonth'
,
label
:
'检核年月'
,
startPlaceholder
:
'开始时间'
,
endPlaceholder
:
'结束时间'
},
{
type
:
'monthrange'
,
type
:
'monthrange'
,
prop
:
'actualPayoutDate'
,
prop
:
'actualPayoutDate'
,
label
:
'出账月(实)'
,
label
:
'出账月(实)'
,
...
@@ -1066,12 +1073,6 @@ const addCheckRecordFormModel = ref({})
...
@@ -1066,12 +1073,6 @@ const addCheckRecordFormModel = ref({})
const
addCheckRecordFormRef
=
ref
(
null
)
const
addCheckRecordFormRef
=
ref
(
null
)
const
addCheckRecordFormDialogFlag
=
ref
(
false
)
const
addCheckRecordFormDialogFlag
=
ref
(
false
)
const
addCheckRecordConfig
=
[
const
addCheckRecordConfig
=
[
// {
// type: 'month',
// prop: 'reconciliationYearMonth',
// label: '检核年月',
// placeholder: '检核年月'
// },
{
{
type
:
'select'
,
type
:
'select'
,
prop
:
'fortuneBizType'
,
prop
:
'fortuneBizType'
,
...
...
src/views/financialCenter/financialSalary.vue
View file @
3fc93f16
...
@@ -407,6 +407,7 @@ const searchConfig = ref([
...
@@ -407,6 +407,7 @@ const searchConfig = ref([
defaultValue
:
[
'6'
]
//默认查询待出账,已检核的数据
defaultValue
:
[
'6'
]
//默认查询待出账,已检核的数据
}
}
])
])
const
oldStaticData
=
ref
({})
// 添加表格引用
// 添加表格引用
const
tableRef
=
ref
()
const
tableRef
=
ref
()
// 存储所有选中的行数据(用于跨页保持选择)
// 存储所有选中的行数据(用于跨页保持选择)
...
@@ -886,7 +887,7 @@ const getStaticData = async data => {
...
@@ -886,7 +887,7 @@ const getStaticData = async data => {
console
.
log
(
'统计数据'
,
res
)
console
.
log
(
'统计数据'
,
res
)
console
.
log
(
'===================================='
)
console
.
log
(
'===================================='
)
if
(
res
.
code
===
200
)
{
if
(
res
.
code
===
200
)
{
statistic
sData
.
value
=
res
.
data
||
{}
statistic
Info
.
value
=
res
.
data
||
{}
}
else
{
}
else
{
ElMessage
.
error
(
res
.
msg
||
'获取统计数据失败'
)
ElMessage
.
error
(
res
.
msg
||
'获取统计数据失败'
)
}
}
...
@@ -901,7 +902,7 @@ const handleSelectionChange = selection => {
...
@@ -901,7 +902,7 @@ const handleSelectionChange = selection => {
if
(
fortuneAccountIdList
.
length
>
0
)
{
if
(
fortuneAccountIdList
.
length
>
0
)
{
getStaticData
({
fortuneAccountIdList
})
getStaticData
({
fortuneAccountIdList
})
}
else
{
}
else
{
statistic
sData
.
value
=
JSON
.
parse
(
JSON
.
stringify
(
oldStaticData
.
value
))
statistic
Info
.
value
=
JSON
.
parse
(
JSON
.
stringify
(
oldStaticData
.
value
))
}
}
selectedRows
.
value
=
selection
selectedRows
.
value
=
selection
// 更新全局选中状态
// 更新全局选中状态
...
...
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