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
Elements-SY
2023-10-11 10:33:24 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
069d0a9b0643ec5fd85bc2c3abd1d4ee3c67cf7e
069d0a9b
1 parent
bb2eb75e
modify
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 additions
and
2 deletions
src/views/allocationConfig/flightAllocConfig/flightRouteInfo/index.vue
src/views/et86Config/et86RuleConfig/edit/mixins/index.js
src/views/allocationConfig/flightAllocConfig/flightRouteInfo/index.vue
View file @
069d0a9
...
...
@@ -334,7 +334,6 @@ export default {
let validate = keys.some((key) => parmas[key]);
if (validate) {
this.loading = true;
if(parmas.flightRoute == null)return
updateOrAddFlight(parmas)
.then((res) => {
const { code, msg, data } = res;
...
...
src/views/et86Config/et86RuleConfig/edit/mixins/index.js
View file @
069d0a9
...
...
@@ -119,7 +119,7 @@ export default {
let
repeat
=
new
Set
(
ursaList
).
size
!==
ursaList
.
length
;
// 校验开头以字母开头下划线结尾的/^[a-zA-Z0-9]*_$/ 和 校验开头以字母开头的/^[a-zA-Z0-9]*$/
let
inUrsa
=
ursaList
.
every
((
item
)
=>
ursaMark
?
/^
[
A-Z
][
0-9
]
*_$/
.
test
(
item
)
:
/^
[
A-Z
][
0-9
]
*$/
.
test
(
item
)
ursaMark
?
/^
[
a-zA-Z0-9
]
*_$/
.
test
(
item
)
:
/^
[
a-zA-Z
0-9
]
*$/
.
test
(
item
)
);
const
ursaInfo
=
{
ursaMark
:
ursaMark
,
// Boolean ursa包含/不包含
...
...
Please
register
or
login
to post a comment