Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_web
Overview
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
pseer
gxpt_web
Commits
f1034c2e
Commit
f1034c2e
authored
Jan 25, 2024
by
hayden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
设备管理-设备网关信息:新增筛选条件门店
parent
ad2534cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
index.vue
src/views/system/gateway/index.vue
+15
-2
No files found.
src/views/system/gateway/index.vue
View file @
f1034c2e
<
template
>
<div
class=
"app-container"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
size=
"small"
:inline=
"true"
v-show=
"showSearch"
label-width=
"100px"
>
<el-form-item
label=
"所属门店"
prop=
"storeId"
>
<el-select
v-model=
"queryParams.storeId"
placeholder=
"请选择所属门店"
@
change=
"onGetRoomListByStoreId"
clearable
>
<el-option
v-for=
"item in stores"
:key=
"item.id"
:label=
"item.name"
:value=
"item.id"
>
</el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"设备名称"
prop=
"devName"
>
<el-input
v-model=
"queryParams.devName"
...
...
@@ -297,6 +308,7 @@ export default {
components
:
{
selectStore
},
data
()
{
return
{
stores
:
[],
// 遮罩层
loading
:
true
,
// 选中数组
...
...
@@ -326,7 +338,8 @@ export default {
devVer
:
null
,
devType
:
null
,
group
:
null
,
status
:
null
status
:
null
,
storeId
:
null
},
// 表单参数
form
:
{},
...
...
@@ -360,7 +373,7 @@ export default {
methods
:
{
onGetAllStoreList
(){
allList
().
then
(
res
=>
{
this
.
option
s
=
res
.
data
this
.
store
s
=
res
.
data
})
},
/** 查询设备网关信息列表 */
...
...
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