el-switch的使用

文章介绍了如何在Vue应用中使用el-switch组件控制服务的开启和关闭,包括改变开关状态时的确认弹窗提示以及与后端API的交互,展示了active-value和inactive-value的参数作用。
摘要由CSDN通过智能技术生成

el-switch的使用

实际情况为开启或者停止一个服务

 
<el-table-column
          label="启停"
          min-width="50"
          align="center"
>
<template #default="scope">
	<el-switch 
               @change="
                        (val) => {
                        changeSwitch(val, scope.row.id);
                        }
                        "
               :value="scope.row.status"
               active-value = "1" 
               inactive-value = "0">
    </el-switch>
 </template>
</el-table-column>
//此处为methods部分
async changeSwitch(val, id) {
    //通过status来动态获取 确认弹窗的参数
   const tryBehavior = val === "1" ? "开启" : "关闭";
    try {
      await this.$confirm(`确认${tryBehavior}`, "提示", {
        confirmButtonText: "确定",
        cancelButtonText: "取消",
        closeOnClickModal: false,
        type: "warning",
      });
    } catch (err) {
      console.log("用户点击了取消", err);
      return;
    }

    try {
      let res = await this.$http.put(`yqiot/iotconfigwarnconfig/openOrClose/${id=id}`);
      if (res.data.code === 0) {
        this.$message.success("操作成功!");
       //再刷新一次
        await this.getList();
      } else {
        this.$message.warning(`${res.data.msg}`);
      }
    } catch (error) {
      console.log("error: ", error);
    }
  },

下面再描述一下组件用的常用参数

  1. active-value 这个就是switch开关打开时的值 默认值为 true , 支持的类型有booleanstringnumber

  2. inactive-value 这个就是switch开关关闭时的值 默认值为 true , 支持的类型有booleanstringnumber

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值