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
02ea644a
Commit
02ea644a
authored
Mar 03, 2026
by
yuzhenWang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
去除证件有效期时间校验
parent
6e52f6ca
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
11 deletions
+13
-11
src/formJson/customer.js
+1
-1
src/views/sign/FnaList/components/customer.vue
+11
-10
src/views/sign/FnaList/components/fanForm.vue
+1
-0
No files found.
src/formJson/customer.js
View file @
02ea644a
...
...
@@ -69,7 +69,7 @@ const customer = [
timeType
:
'daterange'
,
custom
:
true
,
placeholder
:
'请选择证件有效期'
,
required
:
true
,
//
required: true,
width
:
300
}
],
...
...
src/views/sign/FnaList/components/customer.vue
View file @
02ea644a
...
...
@@ -261,6 +261,7 @@
@
change=
"
handleIsPermanentChange(father, scope.row, column.prop, $event)
"
:disabled=
"editStatus"
>
<el-radio
value=
"1"
size=
"large"
>
是
</el-radio>
<el-radio
value=
"0"
size=
"large"
>
否
</el-radio>
...
...
@@ -1446,16 +1447,16 @@ const handleFormValues = source => {
processedData
.
forEach
(
item
=>
{
if
(
item
.
key
==
'apiCertificateDtoList'
&&
item
.
data
.
length
>
0
)
{
item
.
data
.
forEach
((
item1
,
index
)
=>
{
if
(
!
item1
.
isPermanent
||
item1
.
isPermanent
==
'0'
)
{
if
(
!
item1
.
certificateStartDate
)
{
obj1
.
certificateStartDate
=
'证件开始时间'
}
if
(
!
item1
.
certificateEndDate
)
{
obj1
.
certificateEndDate
=
'证件结束时间'
}
}
else
if
(
item1
.
isPermanent
==
'1'
&&
!
item1
.
certificateStartDate
)
{
obj1
.
certificateStartDate
=
'证件有效时间'
}
//
if (!item1.isPermanent || item1.isPermanent == '0') {
//
if (!item1.certificateStartDate) {
//
obj1.certificateStartDate = '证件开始时间'
//
}
//
if (!item1.certificateEndDate) {
//
obj1.certificateEndDate = '证件结束时间'
//
}
//
} else if (item1.isPermanent == '1' && !item1.certificateStartDate) {
//
obj1.certificateStartDate = '证件有效时间'
//
}
for
(
const
key
in
obj1
)
{
if
(
!
item1
[
key
])
{
errorFields
.
value
.
push
({
...
...
src/views/sign/FnaList/components/fanForm.vue
View file @
02ea644a
...
...
@@ -423,6 +423,7 @@ const handleRemoteSelectChange = async (row, column, father) => {
//如果险种选择了重疾险,则显示重疾险的输入框
row
.
insuranceTypeOption
.
forEach
(
item
=>
{
if
(
item
.
value
==
row
.
insuranceType
)
{
row
.
sumInsured
=
''
if
(
item
.
code
==
'CATEGORY5934890141'
)
{
row
.
showSumInsured
=
true
}
else
{
...
...
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