时间:2022-10-20 10:15:01 | 栏目:vue | 点击:次
结合后端接口,进行相应的传参 Id, state值等,因相关组件库中的方法说明比较简单,有些需要自己去尝试,如下图中change()方法的传参等
//ajax发送请求的相关方法: get : 获取 , post: 新增 , put/patch : 更改, delete: 删除
组件库中的方法介绍:
接口示例:
效果:
在html中需要对button按钮进行template包裹,scope.row就是这一行的数据
<el-table-column label="操作"> <template slot-scope="scope"> <el-button type="primary" @click="editProgram(scope.row)">编辑</el-button> <el-button type="danger" @click="del(scope.row)">删除</el-button> <el-button type="primary" @click="showDetail(scope.row)">详情</el-button> </template> </el-table-column>