调整菜单结构,增加通道列表,支持节点搜索
This commit is contained in:
@@ -56,7 +56,7 @@
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<div style="float: right;">
|
||||
<el-button type="primary" @click="onSubmit">确认</el-button>
|
||||
<el-button @click="close">关闭</el-button>
|
||||
</div>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
@@ -126,9 +126,6 @@ export default {
|
||||
openDialog: function(callback) {
|
||||
this.endCallback = callback
|
||||
this.showDialog = true
|
||||
},
|
||||
onSubmit: function() {
|
||||
|
||||
},
|
||||
close: function() {
|
||||
this.showDialog = false
|
||||
|
||||
@@ -4,7 +4,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"
|
||||
@@ -167,7 +167,7 @@ export default {
|
||||
currentPage: 1,
|
||||
count: 15,
|
||||
total: 0,
|
||||
searchSrt: '',
|
||||
searchStr: '',
|
||||
pushing: '',
|
||||
mediaServerId: '',
|
||||
mediaServerList: [],
|
||||
@@ -204,7 +204,7 @@ export default {
|
||||
this.$store.dispatch('streamPush/queryList', {
|
||||
page: this.currentPage,
|
||||
count: this.count,
|
||||
query: this.searchSrt,
|
||||
query: this.searchStr,
|
||||
pushing: this.pushing,
|
||||
mediaServerId: this.mediaServerId
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user