-
- 总频道数:{{iptvList.length}}
+
+
导出
导入
清空
重置
-
-
+
-
-
-
-
-
-
-
-
-
-
-
- {{scope.row.group}}
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ {{scope.row.group}}
+
+
+
-
- 置顶
- 删除
-
-
+
+ 总频道数:{{ iptvList.length }}
+
+
+ 置顶
+ 删除
+
+
@@ -74,7 +78,7 @@ export default {
iptvList: [],
searchTxt: '',
searchRecordList: [],
- eableBatchEdit: false,
+ enableBatchEdit: false,
batchGroupName: '',
multipleSelection: [],
show: {
@@ -127,10 +131,16 @@ export default {
this.getChannels()
},
searchTxt () {
+ },
+ enableBatchEdit () {
+ this.backTop()
}
},
methods: {
...mapMutations(['SET_VIEW', 'SET_DETAIL', 'SET_VIDEO', 'SET_SHARE']),
+ backTop () {
+ this.$refs.iptvTable.bodyWrapper.scrollTop = 0
+ },
handleSelectionChange (rows) {
this.multipleSelection = rows
},
+
保存