使用el-switch实现开关【自定义0和1】

使用el-switch实现开关【自定义0和1】_第1张图片

HTML代码


        

 method方法: 

import { Message } from "element-ui";
handleSwitch(row) {
      console.log(row, '1111');
      // return
      const {active, phone} = row
      let data = {
        phone: phone,
        active: active ? 1 : 0
      }
      chanceStatus(data).then(res => {
        Message({
          type: 'success',
          message: `${active ? '启用' : '禁用'}成功!`,
        })
      }).catch(err => {
        row.active = !row.active
        Message({
          type: 'info',
          message: `${active ? '启用' : '禁用'}失败!`,
        })
      })
    },

你可能感兴趣的:(vue.js,elementui,javascript)