调整菜单结构,增加通道列表,支持节点搜索
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
<el-form :inline="true" size="mini">
|
||||
<el-form-item label="搜索">
|
||||
<el-input
|
||||
v-model="searchSrt"
|
||||
v-model="searchStr"
|
||||
style="margin-right: 1rem; width: auto;"
|
||||
placeholder="关键字"
|
||||
prefix-icon="el-icon-search"
|
||||
@@ -117,7 +117,7 @@ export default {
|
||||
showDialog: false,
|
||||
channelList: [], // 设备列表
|
||||
currentDevice: {}, // 当前操作设备对象
|
||||
searchSrt: '',
|
||||
searchStr: '',
|
||||
online: null,
|
||||
channelType: '',
|
||||
videoComponentList: [],
|
||||
@@ -154,7 +154,7 @@ export default {
|
||||
page: this.currentPage,
|
||||
count: this.count,
|
||||
channelType: this.channelType,
|
||||
query: this.searchSrt,
|
||||
query: this.searchStr,
|
||||
online: this.online
|
||||
})
|
||||
.then(data => {
|
||||
@@ -167,7 +167,7 @@ export default {
|
||||
this.$store.dispatch('commonChanel/getParentList', {
|
||||
page: this.currentPage,
|
||||
count: this.count,
|
||||
query: this.searchSrt,
|
||||
query: this.searchStr,
|
||||
channelType: this.channelType,
|
||||
online: this.online
|
||||
})
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
><el-form :inline="true" size="mini">
|
||||
<el-form-item label="搜索">
|
||||
<el-input
|
||||
v-model="searchSrt"
|
||||
v-model="searchStr"
|
||||
style="margin-right: 1rem; width: auto;"
|
||||
size="mini"
|
||||
placeholder="关键字"
|
||||
@@ -92,7 +92,7 @@ export default {
|
||||
showDialog: false,
|
||||
deviceList: [], // 设备列表
|
||||
currentDevice: {}, // 当前操作设备对象
|
||||
searchSrt: '',
|
||||
searchStr: '',
|
||||
online: null,
|
||||
videoComponentList: [],
|
||||
updateLooper: 0, // 数据刷新轮训标志
|
||||
@@ -129,7 +129,7 @@ export default {
|
||||
this.$store.dispatch('device/queryDevices', {
|
||||
page: this.currentPage,
|
||||
count: this.count,
|
||||
query: this.searchSrt,
|
||||
query: this.searchStr,
|
||||
status: this.online
|
||||
})
|
||||
.then(data => {
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<el-form :inline="true" size="mini">
|
||||
<el-form-item label="搜索">
|
||||
<el-input
|
||||
v-model="searchSrt"
|
||||
v-model="searchStr"
|
||||
style="margin-right: 1rem; width: auto;"
|
||||
size="mini"
|
||||
placeholder="关键字"
|
||||
@@ -132,7 +132,7 @@ export default {
|
||||
return {
|
||||
showDialog: false,
|
||||
channelList: [], // 设备列表
|
||||
searchSrt: '',
|
||||
searchStr: '',
|
||||
online: null,
|
||||
channelType: '',
|
||||
winHeight: 580,
|
||||
@@ -165,7 +165,7 @@ export default {
|
||||
page: this.currentPage,
|
||||
count: this.count,
|
||||
channelType: this.channelType,
|
||||
query: this.searchSrt,
|
||||
query: this.searchStr,
|
||||
online: this.online
|
||||
})
|
||||
.then(data => {
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<el-form :inline="true" size="mini">
|
||||
<el-form-item label="搜索">
|
||||
<el-input
|
||||
v-model="searchSrt"
|
||||
v-model="searchStr"
|
||||
style="margin-right: 1rem; width: auto;"
|
||||
size="mini"
|
||||
placeholder="关键字"
|
||||
@@ -144,7 +144,7 @@ export default {
|
||||
return {
|
||||
showDialog: false,
|
||||
channelList: [], // 设备列表
|
||||
searchSrt: '',
|
||||
searchStr: '',
|
||||
online: null,
|
||||
channelType: '',
|
||||
winHeight: 580,
|
||||
@@ -177,7 +177,7 @@ export default {
|
||||
page: this.currentPage,
|
||||
count: this.count,
|
||||
channelType: this.channelType,
|
||||
query: this.searchSrt,
|
||||
query: this.searchStr,
|
||||
online: this.online
|
||||
})
|
||||
.then((data) => {
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
<el-form :inline="true" size="mini">
|
||||
<el-form-item label="搜索">
|
||||
<el-input
|
||||
v-model="searchSrt"
|
||||
v-model="searchStr"
|
||||
style="margin-right: 1rem; width: auto;"
|
||||
placeholder="关键字"
|
||||
prefix-icon="el-icon-search"
|
||||
@@ -120,7 +120,7 @@ export default {
|
||||
showDialog: false,
|
||||
chooseData: {},
|
||||
channelList: [],
|
||||
searchSrt: '',
|
||||
searchStr: '',
|
||||
channelType: '',
|
||||
online: '',
|
||||
hasLink: 'false',
|
||||
@@ -161,7 +161,7 @@ export default {
|
||||
this.$store.dispatch('recordPlan/queryChannelList', {
|
||||
page: this.currentPage,
|
||||
count: this.count,
|
||||
query: this.searchSrt,
|
||||
query: this.searchStr,
|
||||
online: this.online,
|
||||
channelType: this.channelType,
|
||||
planId: this.planId,
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<el-form :inline="true" size="mini">
|
||||
<el-form-item label="搜索">
|
||||
<el-input
|
||||
v-model="searchSrt"
|
||||
v-model="searchStr"
|
||||
style="margin-right: 1rem; width: auto;"
|
||||
size="mini"
|
||||
placeholder="关键字"
|
||||
@@ -134,7 +134,7 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
channelList: [],
|
||||
searchSrt: '',
|
||||
searchStr: '',
|
||||
channelType: '',
|
||||
online: '',
|
||||
hasShare: 'false',
|
||||
@@ -168,7 +168,7 @@ export default {
|
||||
this.$store.dispatch('platform/getChannelList', {
|
||||
page: this.currentPage,
|
||||
count: this.count,
|
||||
query: this.searchSrt,
|
||||
query: this.searchStr,
|
||||
online: this.online,
|
||||
channelType: this.channelType,
|
||||
platformId: this.platformId,
|
||||
|
||||
Reference in New Issue
Block a user