swapItems(arr, index1, index2) {
arr[index1] = arr.splice(index2, 1, arr[index1])[0];
return arr;
},
upStep(index) {
const newArray = this.swapItems(this.paramTbObj.dataList, index, index - 1);
},
downStep(index) {
const newArray = this.swapItems(this.paramTbObj.dataList, index, index + 1);
},
相关文章
- 02-06P3372 【模板】线段树 1(区间修改区间查询)(树状数组)
- 02-06C++指针数组和数组指针
- 02-06array_replace_recursive — 使用传递的数组递归替换第一个数组的元素
- 02-06array_merge_recursive — 递归地合并一个或多个数组
- 02-06如何在Spring Framework 4中初始化应用程序上下文
- 02-06[leetcode]80. Remove Duplicates from Sorted Array II有序数组去重(单个元素可出现两次)
- 02-06vue移动端底部tabbar
- 02-06移动端开发基础【21】tabBar 配置
- 02-06实现简单的信息无缝滚动(移动端)
- 02-06goroutine上下文contxt语法