Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
liyaoting
/
jk-ut-plugin
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
Jobs
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit 055bd749
authored
2023-05-12 09:37:49 +0800
by
fengweida
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
勾选框调整变大
搜索框支持空格分隔多个搜索
1 parent
7b85352b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
11 deletions
index.html
index.html
View file @
055bd74
...
...
@@ -44,9 +44,9 @@
<div
class=
"row navbar-btn"
v-if=
"allServiceList.length"
>
<div
class=
"col-lg-6"
>
<div
class=
"input-group"
>
<input
type=
"text"
class=
"form-control"
v-model=
"searchText"
placeholder=
"
Search for...
"
>
<input
type=
"text"
class=
"form-control"
v-model=
"searchText"
placeholder=
"
输入搜索内容
"
>
<span
class=
"input-group-btn"
>
<button
class=
"btn btn-danger"
type=
"button"
@
click=
"cleanSearchText"
>
clean
</button>
<button
class=
"btn btn-danger"
type=
"button"
@
click=
"cleanSearchText"
>
清楚搜索内容
</button>
</span>
</div>
</div>
...
...
@@ -67,7 +67,7 @@
<h3
v-if=
"!item.isWebService"
>
{{item.serviceName}}
</h3>
<h4
v-else
>
{{item.serviceName}}
</h4>
</td>
<td><input
class=
"form-check-input"
type=
"checkbox"
v-model=
"item.isOpen"
/></td>
<td><input
class=
"form-check-input"
type=
"checkbox"
style=
"zoom: 230%;"
v-model=
"item.isOpen"
/></td>
</tr>
</tbody>
</table>
...
...
@@ -85,14 +85,30 @@
},
searchText
:
function
(
val
)
{
//在allServiceList中找到包含val的
let
serviceList
=
[];
this
.
allServiceList
.
forEach
((
item
)
=>
{
console
.
log
(
item
)
if
(
item
.
serviceName
.
indexOf
(
val
)
!=
-
1
)
{
serviceList
.
push
(
item
);
}
});
this
.
serviceList
=
serviceList
;
if
(
val
.
indexOf
(
" "
)
!=
-
1
)
{
let
valArr
=
val
.
split
(
" "
);
let
serviceList
=
[];
for
(
let
i
=
0
;
i
<
valArr
.
length
;
i
++
)
{
let
val
=
valArr
[
i
];
this
.
allServiceList
.
forEach
((
item
)
=>
{
console
.
log
(
item
)
if
(
item
.
serviceName
.
indexOf
(
val
)
!=
-
1
)
{
serviceList
.
push
(
item
);
}
});
}
this
.
serviceList
=
serviceList
;
}
else
{
let
serviceList
=
[];
this
.
allServiceList
.
forEach
((
item
)
=>
{
console
.
log
(
item
)
if
(
item
.
serviceName
.
indexOf
(
val
)
!=
-
1
)
{
serviceList
.
push
(
item
);
}
});
this
.
serviceList
=
serviceList
;
}
}
},
data
:
{
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment