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
0d20348c
Commit
0d20348c
authored
Nov 28, 2025
by
yuzhenWang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复入账管理bug
parent
d2f5fbe4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
31 deletions
+17
-31
src/views/financialCenter/financialIncome.vue
+17
-31
No files found.
src/views/financialCenter/financialIncome.vue
View file @
0d20348c
...
@@ -320,31 +320,6 @@
...
@@ -320,31 +320,6 @@
</el-select>
</el-select>
</el-form-item>
</el-form-item>
</el-col>
</el-col>
<!--
<el-col
:span=
"12"
>
<el-form-item
label=
"修改人"
prop=
"amount"
>
<el-input
v-model=
"incomeForm.amount"
placeholder=
"请输入汇率"
/>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"修改时间"
prop=
"commissionDate"
>
<el-date-picker
v-model=
"incomeForm.commissionDate"
type=
"date"
placeholder=
"选择日期"
value-format=
"YYYY-MM-DD"
/>
</el-form-item>
</el-col>
<el-col
:span=
"24"
>
<el-form-item
label=
"修改内容"
prop=
"remark"
>
<el-input
v-model=
"incomeForm.remark"
type=
"textarea"
:rows=
"3"
placeholder=
"请输入备注信息"
/>
</el-form-item>
</el-col>
-->
</
template
>
</
template
>
<el-col
:span=
"24"
>
<el-col
:span=
"24"
>
...
@@ -499,7 +474,6 @@ const operationPages = reactive({
...
@@ -499,7 +474,6 @@ const operationPages = reactive({
pageNo
:
1
,
pageNo
:
1
,
pageSize
:
5
pageSize
:
5
})
})
const
operationTotal
=
ref
(
0
)
const
currentRowOperation
=
ref
({})
const
currentRowOperation
=
ref
({})
const
isSearch
=
ref
(
false
)
const
isSearch
=
ref
(
false
)
...
@@ -512,14 +486,14 @@ const getAlignmentData = () => {
...
@@ -512,14 +486,14 @@ const getAlignmentData = () => {
}
}
incomeCompareRecords
(
data
).
then
(
response
=>
{
incomeCompareRecords
(
data
).
then
(
response
=>
{
if
(
response
.
code
==
200
)
{
if
(
response
.
code
==
200
)
{
operation
List
.
value
=
response
.
data
.
records
alignment
List
.
value
=
response
.
data
.
records
alignmentPages
.
total
=
response
.
data
.
total
alignmentPages
.
total
=
response
.
data
.
total
showAlignmentRecord
.
value
=
true
showAlignmentRecord
.
value
=
true
}
else
{
}
else
{
ElMessage
.
error
(
response
.
msg
)
ElMessage
.
error
(
response
.
msg
)
showAlignmentRecord
.
value
=
false
showAlignmentRecord
.
value
=
false
alignmentPages
.
total
=
0
alignmentPages
.
total
=
0
operation
List
.
value
=
[]
alignment
List
.
value
=
[]
}
}
})
})
}
}
...
@@ -889,7 +863,10 @@ const handleAdd = () => {
...
@@ -889,7 +863,10 @@ const handleAdd = () => {
amount
:
0
,
amount
:
0
,
currency
:
'HKD'
,
currency
:
'HKD'
,
commissionDate
:
''
,
commissionDate
:
''
,
remark
:
''
remark
:
''
,
exchangeRate
:
''
,
premium
:
''
,
status
:
''
})
})
// 重置表单验证
// 重置表单验证
...
@@ -965,7 +942,11 @@ const incomeForm = reactive({
...
@@ -965,7 +942,11 @@ const incomeForm = reactive({
amount
:
0
,
amount
:
0
,
currency
:
'CNY'
,
currency
:
'CNY'
,
commissionDate
:
''
,
commissionDate
:
''
,
remark
:
''
remark
:
''
,
expectedDate
:
''
,
exchangeRate
:
''
,
premium
:
''
,
status
:
''
})
})
// 表单验证规则
// 表单验证规则
const
incomeFormRules
=
{
const
incomeFormRules
=
{
...
@@ -981,6 +962,8 @@ const handleEdit = row => {
...
@@ -981,6 +962,8 @@ const handleEdit = row => {
incomeDialogTitle
.
value
=
`编辑入账记录 -
${
row
.
policyNo
}
`
incomeDialogTitle
.
value
=
`编辑入账记录 -
${
row
.
policyNo
}
`
isEditMode
.
value
=
true
isEditMode
.
value
=
true
editStatus
.
value
=
'edit'
editStatus
.
value
=
'edit'
console
.
log
(
'row'
,
row
)
// 填充表单数据
// 填充表单数据
Object
.
assign
(
incomeForm
,
{
Object
.
assign
(
incomeForm
,
{
commissionBizId
:
row
.
commissionBizId
,
commissionBizId
:
row
.
commissionBizId
,
...
@@ -992,7 +975,10 @@ const handleEdit = row => {
...
@@ -992,7 +975,10 @@ const handleEdit = row => {
amount
:
row
.
amount
,
amount
:
row
.
amount
,
currency
:
row
.
currency
||
'CNY'
,
currency
:
row
.
currency
||
'CNY'
,
commissionDate
:
row
.
commissionDate
,
commissionDate
:
row
.
commissionDate
,
remark
:
row
.
remark
||
''
remark
:
row
.
remark
||
''
,
exchangeRate
:
row
.
exchangeRate
||
''
,
premium
:
row
.
premium
||
''
,
status
:
row
.
status
||
''
})
})
// 重置表单验证
// 重置表单验证
...
...
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