表格部分代码
<el-table-column
label="是否启用">
<template slot-scope="scope">
<el-switch
v-model="scope.row.status"
:active-value="1"
:inactive-value="2"
active-color="#02538C"
inactive-color="#B9B9B9"
@change="changeSwitch(scope.row)"/>
</template>
</el-table-column>
// 这串代码是table里边行列数据
data数据里边
// row是我从上边函数传下来的数据,可以拿到当前选中的状态值,下边的请求是因为我要传给后端调的接口
this.$api.accountSwitch是我调后端的方法,我们自己封装的,在这块你们可以根据自己的写自己要调用的方法
changeSwitch (row) {
const data = {
id: row.id,
status: row.status,
};
this.$api.accountSwitch(data).then(res => {
if (res.code === '200' || res.code === 200) {
// 调用表格数据
this.getTableData();
} else {
this.$message.error(res.msg);
// 调用表格数据
this.getTableData();
}
this.loading = false;
}).catch({
});
},
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/17668.html