我们要实现如下图的效果:

将操作列固定在右侧 在列中 加: fixed="right"

<el-table-column label="操作" width="160" fixed="right">
        <template slot-scope="scope">
            <router-link :to="'/order/save/'+scope.row.id">
              <el-button type="primary" size="mini" icon="el-icon-edit" >修改</el-button>
            </router-link>
          &nbsp;&nbsp;
          <el-button
            size="mini"
            type="danger"           
          >删除</el-button>
        </template>

      </el-table-column>


 

Logo

前往低代码交流专区

更多推荐