Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
dev
/
pingan-life-index-pro
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
6a072c84
authored
2020-02-19 16:45:53 +0800
by
joe
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
1
1 parent
8f8200c8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
src/pages/custom-service/components/complaint-acceptance.js
src/pages/custom-service/components/reservation.js
src/pages/custom-service/components/complaint-acceptance.js
View file @
6a072c8
...
...
@@ -231,7 +231,10 @@ export default {
this
.
errorTips
.
contactMethodErr
=
""
;
}
},
'data.complain'
:
function
()
{
'data.complain'
:
function
(
v
,
ov
)
{
if
(
v
.
length
>
500
)
{
this
.
data
.
complain
=
v
.
substring
(
0
,
500
);
}
this
.
errorTips
.
complainErr
=
""
;
},
'data.policyNumber'
:
function
()
{
...
...
src/pages/custom-service/components/reservation.js
View file @
6a072c8
...
...
@@ -206,7 +206,10 @@ export default {
}
},
'data.instruction'
:
function
()
{
'data.instruction'
:
function
(
v
,
ov
)
{
if
(
v
.
length
>
1000
)
{
this
.
data
.
instruction
=
v
.
substring
(
0
,
1000
);
}
this
.
errorTips
.
e8
=
""
;
this
.
errorTips
.
e5
=
""
;
},
...
...
Please
register
or
sign in
to post a comment