# 开关(form-switch)

表示两种相互对立的状态间的切换,多用于触发「开/关」。

TIP

参考ElementUI文档Switch 开关 (opens new window)

# 基本用法

绑定 v-model 到一个 Boolean 类型的变量。可以使用 active-color 属性与 inactive-color 属性来设置开关的背景色。

<itv-form label-position="top">
  <itv-form-switch v-model="value" active-color="#13ce66" inactive-color="#ff4949"></itv-form-switch>
</itv-form>

<script>
  export default {
    data() {
      return {
        value: true
      }
    }
  };
</script>
Expand Copy

# 文字描述

使用 active-text 属性与 inactive-text 属性来设置开关的文字描述。

<itv-form label-position="top">
  <itv-form-switch v-model="value1" active-text="按月付费" inactive-text="按年付费"></itv-form-switch>
  <itv-form-switch v-model="value2" active-text="按月付费" active-color="#13ce66" inactive-text="按年付费" inactive-color="#ff4949"></itv-form-switch>
</itv-form>

<script>
  export default {
    data() {
      return {
        value1: true,
        value2: true
      }
    }
  };
</script>
Expand Copy

# 扩展的 value 类型

设置 active-valueinactive-value 属性,接受 Boolean , StringNumber 类型的值。

<itv-form label-position="top">
  <el-tooltip :content="'Switch value: ' + value" placement="top">
    <itv-form-switch v-model="value" active-color="#13ce66" inactive-color="#ff4949" active-value="100" inactive-value="0"></itv-form-switch>
  </el-tooltip>
</itv-form>

<script>
  export default {
    data() {
      return {
        value: '100'
      }
    }
  };
</script>
Expand Copy

# 禁用状态

设置 disabled 属性,接受一个 Boolean ,设置 true 即可禁用。

<itv-form label-position="top">
  <itv-form-switch v-model="value1" disabled></itv-form-switch>
  <itv-form-switch v-model="value2" disabled></itv-form-switch>
</itv-form>
<script>
  export default {
    data() {
      return {
        value1: true,
        value2: false
      }
    }
  };
</script>
Expand Copy

# Attributes

TIP

默认继承FormItem基础属性FormItem组件

参数 说明 类型 可选值 默认值
value / v-model 绑定值 boolean / string / number
disabled 是否禁用 boolean false
width switch 的宽度(像素) number 40
active-icon-class switch 打开时所显示图标的类名,设置此项会忽略 active-text string
inactive-icon-class switch 关闭时所显示图标的类名,设置此项会忽略 inactive-text string
active-text switch 打开时的文字描述 string
inactive-text switch 关闭时的文字描述 string
active-value switch 打开时的值 boolean / string / number true
inactive-value switch 关闭时的值 boolean / string / number false
active-color switch 打开时的背景色 string #409EFF
inactive-color switch 关闭时的背景色 string #C0CCDA
name switch 对应的 name 属性 string
validate-event 改变 switch 状态时是否触发表单的校验 boolean - true

# Events

事件名称 说明 回调参数
change switch 状态发生变化时的回调函数 新状态的值

# Methods

方法名 说明 参数
focus 使 Switch 获取焦点 -
上次更新: 12/28/2023, 5:33:41 PM