vue+elementui 数据表格上下移动功能
程序员文章站
2022-07-14 17:05:48
...
如果后端只提供了一个接口,上下移动只用一个接口时候,如下
<el-table :data="list">
<el-table-column prop="name" label="名称"></el-table-column>
<el-table-column prop="id" label="管理" width="80">
<template slot-scope="scope">
<el-link
:underline="false"
type="info"
@click="onMoveUp(scope.$index, scope.row)"
:disabled="scope.$index === 0"
><i style="font-weight: bold" class="el-icon-top"></i></el-link>
<el-link
:underline="false"
type="info"
@click="onMoveDown(scope.$index, scope.row)"
:disabled="scope.$index === list.length - 1"
上一篇: GSOAP服务卡住?
下一篇: js封装简单的动画函数【左右上下移动】