element-ui 在表格中按钮开关的应用
来源:月中眠_d56d     阅读:1179
云上智慧
发布于 2019-08-22 03:12
查看主页

最近做了一个公司内部使用的功能,功能大致为:
在前端控制定时任务的开关、新添加、修改等功能,昨天把接口写好,今天弄页面,页面展现任务列表如何在表格中增加开关控制呢?
页面大致长这样:


image.png

页面代码:


image.png
<el-table-column prop="status" label="任务开关">          <template slot-scope="scope">            <el-switch              active-color="#13ce66"              inactive-color="#ff4949"              v-model="scope.row.isOpen"              :active-value="1"              :inactive-value="0"              @change="change(scope.row)"            ></el-switch>          </template> </el-table-column>

方法:

       change (row){          this.params.id=row.id          this.params.isOpen=row.isOpen          api.openOrColseMallTask(Object.assign(this.params)).then(res => {            if (res.data.data.flag === true) {              layer.msg(res.data.data.message,{icon:6,time:1000});              this.getTableData();            }else {              layer.msg(res.data.data.message,{icon:5,time:2000});            }          })        }
免责声明:本文为用户发表,不代表网站立场,仅供参考,不构成引导等用途。 系统环境 服务器应用
相关推荐
Web Storage
阿里P8架构师谈:Web前台、应使用服务器、数据库SQL等性能优化总结
前台面试每日 3+1 —— 第583天
OC 中 覆盖父类属性会有Auto property synthesis will not synthesize property 'xxx'的警告
链表应用--基于链表实现栈
首页
搜索
订单
购物车
我的