element 怎么去控制每一行的 switch 状态
怎么根据后端返回值 去控制每一行的状态? 主要是怎么控制每一行? 直接写scope.row.on 报错scope,拿不到
this.$get('/api/shop', this.getDate).then(res => {
console.log(this.scope); //undefined
console.log(scope); //scope is not defined
}
<el-table-column width="200%" label="状态" class="switchVal">
<template slot-scope="scope">
<el-switch
@change="changeSwitch(scope.$index, scope.row)"
v-model="scope.row.on"
active-text="启用"
inactive-text="">
on-color="#00A854"
on-text="启动"
on-value="1"
off-color="#F04134"
off-text="禁止"
off-value="0"
>
</el-switch>
</template>
</el-table-column>
changeSwitch(index, row) {
if (row.on) {
this.$confirm('是否确认启用', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
row.on = true
}).catch(() => {
row.on = false
});
}else {
this.$confirm('禁用后,该商户的前台页面将无法正常访问,是否确认禁用?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
row.on = false
}).catch(() => {
row.on = true
});
}
},
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
MVVM以数据为驱动,数据修改了View自然就变了。所以去改变v-model就行了
你这不是写了吗,在数据里面每一行都添加一个字段on,或者叫其他的。是一个布尔值,然后通过修改这个值还更新switch.,挥着switch的变化也能立刻更改到这个值上面
现在是scope拿不到呗 和控制开关有关系么
把赋值scope的代码贴出来 怎么取的