为了账号安全,请及时绑定邮箱和手机立即绑定

关于elementUI开关的问题

关于elementUI开关的问题

杨魅力 2019-03-13 14:15:15
列表用了elementUI里的switch组件status是后台返回的字段,是没问题的。开状态为1,关状态为0 但是开关这里对应不出来这里显示不出来。代码如下:<el-table-column prop="status" label="status"></el-table-column> //没问题,数据和后台一样<el-table-column label="STATUS"> //有问题,数据对应不起来    <template slot-scope="scope">        <el-switch             v-model="scope.row.status"            active-value=1            inactive-value=0            @change=change_switch(scope.row.id,scope.row.status)>        </el-switch>    </template></el-table-column>     回调如下:change_switch:function(id,status){      console.log(status);     axios.get('/advertiser/updateStatus',{        headers: {            Authorization : getCookie('token'),        },        params:{            id:id,            status:status        }    })    .then(res=>{        console.log(res)    })},
查看完整描述

1 回答

?
当年话下

TA贡献1890条经验 获得超9个赞

开状态为1,关状态为0 但是开关这里对应不出来这里显示不出来。

active-value=0

inactive-value=1

你确定么。。。写反了吧。


查看完整回答
反对 回复 2019-04-03
  • 1 回答
  • 0 关注
  • 1400 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信