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
f1b6933a
Commit
f1b6933a
authored
Nov 27, 2025
by
yuzhenWang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature-20250827wyz-写业务' into 'test'
修复bug2发布测试 See merge request
!26
parents
935894cd
d2f5fbe4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
53 additions
and
11 deletions
+53
-11
src/api/financial/commission.js
+24
-0
src/views/financialCenter/financialBilling.vue
+0
-2
src/views/financialCenter/financialIncome.vue
+0
-0
src/views/financialCenter/financialSalary.vue
+27
-7
src/views/sign/underwritingMain/components/expectedCommission.vue
+2
-2
No files found.
src/api/financial/commission.js
View file @
f1b6933a
...
...
@@ -190,3 +190,27 @@ export function salaryStatistics(data) {
data
:
data
})
}
// 薪资管理修订记录
export
function
salaryEditRecords
(
data
)
{
return
request
({
url
:
'/csf/api/fortune/editRecords/fortuneAccount'
,
method
:
'post'
,
data
:
data
})
}
// 入账管理操作记录
export
function
incomeEditRecords
(
data
)
{
return
request
({
url
:
'/csf/api/commission/edit/records'
,
method
:
'post'
,
data
:
data
})
}
// 入账管理比对记录列表
export
function
incomeCompareRecords
(
data
)
{
return
request
({
url
:
'/csf/api/commission/compare/records'
,
method
:
'post'
,
data
:
data
})
}
src/views/financialCenter/financialBilling.vue
View file @
f1b6933a
...
...
@@ -305,8 +305,6 @@ const clearAllSelection = () => {
if
(
tableRef
.
value
)
{
tableRef
.
value
.
clearSelection
()
}
console
.
log
(
'allSelectedRows'
,
allSelectedRows
.
value
)
console
.
log
(
'selectedRows'
,
selectedRows
.
value
)
}
// 下载选中项
const
downloadSelected
=
async
()
=>
{
...
...
src/views/financialCenter/financialIncome.vue
View file @
f1b6933a
This diff is collapsed.
Click to expand it.
src/views/financialCenter/financialSalary.vue
View file @
f1b6933a
...
...
@@ -176,15 +176,15 @@
</el-dialog>
<el-dialog
title=
"修订记录"
v-model=
"showReviseRecord"
width=
"1000px"
append-to-body
>
<el-table
:data=
"reviseList"
border
>
<el-table-column
prop=
"createTime"
label=
"修订时间"
align=
"center"
width=
"1
5
0"
>
<el-table-column
prop=
"createTime"
label=
"修订时间"
align=
"center"
width=
"1
8
0"
>
<
template
#
default=
"scope"
>
<span>
{{
parseTime
(
scope
.
row
.
createTime
)
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"修订人"
prop=
"
policyNo
"
align=
"center"
width=
"150"
>
<el-table-column
label=
"修订人"
prop=
"
userName
"
align=
"center"
width=
"150"
>
</el-table-column>
<el-table-column
label=
"修订内容"
prop=
"e
rrorMsg
"
align=
"center"
></el-table-column>
<el-table-column
label=
"修订内容"
prop=
"e
ditContent
"
align=
"center"
></el-table-column>
</el-table>
<pagination
v-show=
"revisePages.total >= 0"
...
...
@@ -209,7 +209,8 @@ import { SuccessFilled } from '@element-plus/icons-vue'
import
{
getReferrerFortuneList
,
updatePolicyFortuneStatus
,
salaryStatistics
salaryStatistics
,
salaryEditRecords
}
from
'@/api/financial/commission'
// 添加表格引用
...
...
@@ -266,7 +267,26 @@ const referrerOptions = [
{
label
:
'王五'
,
value
:
'wangwu'
},
{
label
:
'赵六'
,
value
:
'zhaoliu'
}
]
const
getReviseData
=
()
=>
{}
const
currentRow
=
ref
({})
const
getReviseData
=
()
=>
{
let
data
=
{
pageNo
:
revisePages
.
pageNo
,
pageSize
:
revisePages
.
pageSize
,
fortuneAccountBizId
:
currentRow
.
value
.
fortuneAccountBizId
}
salaryEditRecords
(
data
).
then
(
response
=>
{
if
(
response
.
code
==
200
)
{
reviseList
.
value
=
response
.
data
.
records
revisePages
.
total
=
response
.
data
.
total
showReviseRecord
.
value
=
true
}
else
{
ElMessage
.
error
(
response
.
msg
)
showReviseRecord
.
value
=
false
revisePages
.
total
=
0
reviseList
.
value
=
[]
}
})
}
// 设置当前页的选中状态
const
setCurrentPageSelection
=
()
=>
{
if
(
!
tableRef
.
value
)
return
...
...
@@ -451,9 +471,9 @@ const handleEdit = row => {
ElMessage
.
info
(
`编辑转介人:
${
row
.
referrer
}
`
)
}
const
handleRevise
=
row
=>
{
showReviseRecord
.
value
=
true
currentRow
.
value
=
row
getReviseData
()
}
import
{
addPolicyFortuneAccount
}
from
'@/api/financial/commission'
const
deletePolicyFortuneO
=
async
fortuneAccountBizId
=>
{
try
{
...
...
src/views/sign/underwritingMain/components/expectedCommission.vue
View file @
f1b6933a
...
...
@@ -40,10 +40,10 @@
/>
</template>
</el-table-column> -->
<el-table-column
label=
"来佣比例"
prop=
"
r
atio"
align=
"center"
width=
"120"
>
<el-table-column
label=
"来佣比例"
prop=
"
commissionR
atio"
align=
"center"
width=
"120"
>
<
template
#
default=
"scope"
>
<el-input
v-model=
"scope.row.
r
atio"
v-model=
"scope.row.
commissionR
atio"
size=
"default"
type=
"number"
placeholder=
"请输入"
...
...
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