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
8e482ad9
Commit
8e482ad9
authored
May 13, 2026
by
yuzhenWang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
发布测试
parent
feb487f6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
13 deletions
+30
-13
src/components/SearchForm/SearchForm.vue
+0
-0
src/views/financialCenter/financialBilling.vue
+14
-6
src/views/financialCenter/payables.vue
+16
-7
No files found.
src/components/SearchForm/SearchForm.vue
View file @
8e482ad9
This diff is collapsed.
Click to expand it.
src/views/financialCenter/financialBilling.vue
View file @
8e482ad9
...
...
@@ -434,9 +434,9 @@ const searchConfig = ref([
}
},
{
type
:
'
date
range'
,
type
:
'
month
range'
,
prop
:
'payoutDate'
,
label
:
'出账
日
(估)'
,
label
:
'出账
月
(估)'
,
startPlaceholder
:
'开始时间'
,
endPlaceholder
:
'结束时间'
},
...
...
@@ -712,7 +712,7 @@ const confirmRateExchange = async () => {
rateExchangeFlag
.
value
=
false
loadTableData
()
}
catch
(
error
)
{
ElMessage
.
success
(
'结算汇率修改失败'
)
ElMessage
.
error
(
'结算汇率修改失败'
)
rateExchangeFlag
.
value
=
true
if
(
error
.
message
&&
error
.
message
.
includes
(
'Validation'
))
{
ElMessage
.
error
(
'必填项不能为空'
)
...
...
@@ -1099,12 +1099,20 @@ const addCheckRecordConfig = [
},
{
type
:
'
date
'
,
type
:
'
month
'
,
prop
:
'payoutDate'
,
label
:
'出账日期'
,
label
:
'出账月(估)'
,
placeholder
:
'请选择'
,
maxDate
:
'today'
,
rules
:
[{
required
:
true
,
message
:
'出账月(估)必填'
,
trigger
:
'blur'
}]
},
{
type
:
'month'
,
prop
:
'actualPayoutDate'
,
label
:
'出账月(实)'
,
placeholder
:
'请选择'
,
maxDate
:
'today'
,
rules
:
[{
required
:
true
,
message
:
'出账
日期
必填'
,
trigger
:
'blur'
}]
rules
:
[{
required
:
true
,
message
:
'出账
月(实)
必填'
,
trigger
:
'blur'
}]
},
// {
// type: 'input',
...
...
src/views/financialCenter/payables.vue
View file @
8e482ad9
...
...
@@ -156,7 +156,7 @@
/>
<el-table-column
fixed=
"right"
label=
"操作"
min-width=
"120"
>
<
template
#
default=
"{ row }"
>
<el-popover
placement=
"right"
:width=
"200"
trigger=
"click"
>
<el-popover
placement=
"right"
:width=
"200"
trigger=
"click"
v-if=
"row.type == '1'"
>
<template
#
reference
>
<el-icon>
<MoreFilled
/>
...
...
@@ -797,16 +797,16 @@ const updatePayRecordFormConfig = [
prop
:
'fortunePeriod'
,
label
:
'佣金期数'
,
inputType
:
'decimal'
,
visible
:
formData
=>
formData
.
fortuneBizType
===
'R'
,
rules
:
[{
pattern
:
/^
\d
+$/
,
message
:
'只能输入正整数'
,
trigger
:
'blur'
}]
visible
:
formData
=>
formData
.
fortuneBizType
===
'R'
//
rules: [{ pattern: /^\d+$/, message: '只能输入正整数', trigger: 'blur' }]
},
{
type
:
'input'
,
prop
:
'fortuneTotalPeriod'
,
label
:
'总期数'
,
inputType
:
'decimal'
,
visible
:
formData
=>
formData
.
fortuneBizType
===
'R'
,
rules
:
[{
pattern
:
/^
\d
+$/
,
message
:
'只能输入正整数'
,
trigger
:
'blur'
}]
visible
:
formData
=>
formData
.
fortuneBizType
===
'R'
//
rules: [{ pattern: /^\d+$/, message: '只能输入正整数', trigger: 'blur' }]
},
{
type
:
'select'
,
...
...
@@ -1333,7 +1333,13 @@ const handleConfirmAddPayRecord = async () => {
const
handleConfirmUpdatePayRecord
=
async
()
=>
{
if
(
selectedRow
.
value
.
type
==
'1'
)
{
try
{
const
formData
=
updatePayRecordFormRef
.
value
.
getFormData
()
const
formData
=
await
updatePayRecordFormRef
.
value
.
validate
()
console
.
log
(
'===================================='
)
console
.
log
(
'formData'
,
formData
)
console
.
log
(
'===================================='
)
if
(
!
formData
)
{
return
}
const
params
=
{
...
formData
,
expectedFortuneBizId
:
selectedRow
.
value
.
expectedFortuneBizId
...
...
@@ -1346,7 +1352,10 @@ const handleConfirmUpdatePayRecord = async () => {
loadPayRecordTableData
(
selectedRow
.
value
.
expectedFortuneBizId
)
expectedFortuneListData
()
}
catch
(
error
)
{
ElMessage
.
error
(
error
.
message
)
if
(
error
.
message
&&
error
.
message
.
includes
(
'Validation'
))
{
ElMessage
.
error
(
'必填项不能为空'
)
}
ElMessage
.
error
(
'更新失败'
)
}
}
}
...
...
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