Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
jinhui.wang
2024-01-04 13:32:50 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b89c0cec2eb25224929895c20e82234e6566a797
b89c0cec
1 parent
77618ebb
验证取消
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
src/views/et86Config/et86RuleConfig/edit/mixins/index.js
src/views/et86Config/et86RuleConfig/edit/mixins/index.js
View file @
b89c0ce
...
...
@@ -131,9 +131,9 @@ export default {
if
(
ursaMark
&&
ursaInfo
.
repeat
)
{
this
.
ursaError
=
"填写的URSA已重复"
;
}
if
(
ursaMark
&&
!
ursaInfo
.
inUrsa
)
{
this
.
ursaError
=
"URSA包含之间用分号分隔,例:P_;W_;A_"
;
}
//
if (ursaMark && !ursaInfo.inUrsa) {
//
this.ursaError = "URSA包含之间用分号分隔,例:P_;W_;A_";
//
}
if
(
ursaMark
&&
!
ursaInfo
.
repeat
&&
ursaInfo
.
inUrsa
)
{
this
.
ursaError
=
""
;
}
...
...
@@ -141,9 +141,9 @@ export default {
if
(
!
ursaMark
&&
ursaInfo
.
repeat
)
{
this
.
notUrsaError
=
"填写的URSA已重复"
;
}
if
(
!
ursaMark
&&
!
ursaInfo
.
inUrsa
)
{
this
.
notUrsaError
=
"URSA不包含之间用分号分隔,例:F1;F2;F3"
;
}
//
if (!ursaMark && !ursaInfo.inUrsa) {
//
this.notUrsaError = "URSA不包含之间用分号分隔,例:F1;F2;F3";
//
}
if
(
!
ursaMark
&&
!
ursaInfo
.
repeat
&&
ursaInfo
.
inUrsa
)
{
this
.
notUrsaError
=
""
;
}
...
...
Please
register
or
login
to post a comment