Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dcxy-manage-shell
Project
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
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
姜雷
dcxy-manage-shell
Commits
593aaaed
Commit
593aaaed
authored
May 15, 2019
by
姜雷
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改运营商区域的多选模式下全选规则
parent
46f8ac51
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
AreaSelect.vue
src/components/input/AreaDashboard/AreaSelect.vue
+9
-7
No files found.
src/components/input/AreaDashboard/AreaSelect.vue
View file @
593aaaed
...
@@ -83,21 +83,23 @@ export default {
...
@@ -83,21 +83,23 @@ export default {
methods
:
{
methods
:
{
changeHandle
(
val
)
{
changeHandle
(
val
)
{
if
(
val
)
{
if
(
val
)
{
if
(
this
.
selectedAll
)
{
if
(
val
&&
val
.
length
&&
val
.
indexOf
(
-
1
)
>
-
1
)
{
if
(
val
&&
val
.
length
&&
val
.
indexOf
(
-
1
)
>
-
1
)
{
if
(
val
.
length
===
this
.
dashboardArea
.
length
)
{
this
.
selectedAll
=
false
;
this
.
$emit
(
'input'
,
val
.
filter
(
id
=>
id
!==
-
1
));
this
.
$emit
(
'input'
,
val
.
filter
(
id
=>
id
!==
-
1
));
}
else
{
}
else
{
this
.
$emit
(
'input'
,
[]);
}
this
.
selectedAll
=
false
;
}
else
{
if
(
val
&&
val
.
length
&&
val
.
indexOf
(
-
1
)
>
-
1
)
{
this
.
selectedAll
=
true
;
this
.
selectedAll
=
true
;
this
.
$emit
(
'input'
,
[
this
.
$emit
(
'input'
,
[
...
this
.
dashboardArea
.
map
(
item
=>
item
.
id
),
...
this
.
dashboardArea
.
map
(
item
=>
item
.
id
),
-
1
,
-
1
,
]);
]);
}
}
else
if
(
val
.
length
===
this
.
dashboardArea
.
length
)
{
}
else
{
this
.
selectedAll
=
true
;
if
(
this
.
selectedAll
)
{
this
.
$emit
(
'input'
,
[...
val
,
-
1
]);
this
.
selectedAll
=
false
;
this
.
$emit
(
'input'
,
[]);
}
else
{
}
else
{
this
.
$emit
(
'input'
,
val
);
this
.
$emit
(
'input'
,
val
);
}
}
...
...
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