溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

使用vue.js封裝switch開關(guān)組件的方法

發(fā)布時(shí)間:2020-10-28 02:42:45 來(lái)源:億速云 閱讀:1053 作者:Leah 欄目:開發(fā)技術(shù)

這篇文章運(yùn)用簡(jiǎn)單易懂的例子給大家介紹使用vue.js封裝switch開關(guān)組件的方法,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

我的項(xiàng)目本來(lái)用的element,但是switch開關(guān)不符合設(shè)計(jì)要求,于是自己封裝了一個(gè)switch組件,并且實(shí)現(xiàn)了switch開關(guān)的雙向數(shù)據(jù)綁定

使用vue.js封裝switch開關(guān)組件的方法

<template>
<label role="checkbox" :class="['switch', { toggled }]">
<input type="checkbox" class="switch-input" @change="toggle" />
<div
class="switch-core"
:
>
<div
class="switch-button"
:style="{
transition: `transform ${speed}ms`,
transform: toggled &#63; null : `translate3d(32px, 0px, 0px)`
}"
></div>
</div>
<span class="switch-label label-right" v-if="toggled" v-html="labelChecked">
</span>
<span class="switch-label label-left" v-html="labelUnchecked" v-else>
</span>
</label>
</template>
<script>
export default {
 name: "ToggleSwitch",
 data() {
  return {
   toggled: this.value
  };
 },
 props: {
  value: {
   type: Boolean,
   default: true
  },
  speed: {
   type: Number,
   default: 100
  },
  labelChecked: {
   type: String,
   default: "啟用"
  },
  labelUnchecked: {
   type: String,
   default: "停用"
  },
  colorChecked: {
   type: String,
   default: "#11CED2"
  },
  colorUnchecked: {
   type: String,
   default: "#E6EAF1"
  }
 },
 watch: {
  value: function(val) {
   this.value = val;
  }
 },
 methods: {
  toggle(event) {
   this.toggled = !this.toggled;
   this.$emit("update:value", this.toggled);
   this.$emit("change", event);
  }
 }
};
</script>
<style lang="scss" scoped>
.switch {
 display: inline-block;
 position: relative;
 overflow: hidden;
 vertical-align: middle;
 user-select: none;
 font-size: 10px;
 cursor: pointer;
 
 .switch-input {
  display: none;
 }
 
 .switch-label {
  position: absolute;
  top: 0;
  font-weight: 600;
  color: white;
 
  z-index: 2;
 
  &.label-left {
   left: 10px;
   line-height: 20px;
   border-top-left-radius: 2px;
   border-bottom-left-radius: 2px;
   color: #b5bdc8;
  }
 
  &.label-right {
   right: 10px;
   line-height: 20px;
   border-top-right-radius: 2px;
   border-bottom-right-radius: 2px;
  }
 }
 
 .switch-core {
  display: block;
  position: relative;
  box-sizing: border-box;
  outline: 0;
  margin: 0;
  transition: border-color 0.3s, background-color 0.3s;
  user-select: none;
  width: 46px;
  height: 20px;
  border-radius: 4px;
  line-height: 20px;
 
  .switch-button {
   width: 8px;
   height: 16px;
   display: block;
   position: absolute;
   overflow: hidden;
   top: 2;
   left: 2;
   z-index: 3;
   transform: translate3d(0, 0, 0);
   background-color: rgba(255, 255, 255, 1);
   border-radius: 4px;
   margin-top: 2px;
   margin-left: 2px;
  }
 }
}
</style>

調(diào)用開關(guān)組件

<toggle-switch
       v-model="value"
       :value.sync="value"
       @change="switchChange"
      >
      </toggle-switch>

組件實(shí)現(xiàn)了switch開關(guān)的雙向數(shù)據(jù)綁定,在父組件的methods中寫一個(gè)@change事件

switchChange() {
   console.log("switch值改變");
  },

補(bǔ)充知識(shí):vue 監(jiān)控el-switch控件值的變化

我要的效果是根據(jù)系統(tǒng)消息的推送范圍決定推送人標(biāo)簽的顯示,如下圖兩種情況:

——選擇全站推送

使用vue.js封裝switch開關(guān)組件的方法

——選擇個(gè)人推送

使用vue.js封裝switch開關(guān)組件的方法

——頁(yè)面定義的data對(duì)象

使用vue.js封裝switch開關(guān)組件的方法

el-switch標(biāo)簽控件的代碼, v-model="entity.pushRange"綁定的是推送范圍字段

 <el-form-item label="推送范圍:" :label-width="formLabelWidth" prop="pushRange">
    <el-switch
     v-model="entity.pushRange"
     active-color="#13ce66"
     inactive-color="#ff4949"
     active-text="全站"
     inactive-text="個(gè)人"
     @change="parens2($event)">
    </el-switch>
 </el-form-item>

下面的推送人id文本框,v-if=“FalgpushId”用來(lái)控制該文本框的顯示,等于false時(shí)隱藏,true時(shí)顯示(默認(rèn)值為初始化時(shí)定義的FalgpushId = false,所以隱藏掉了)

 <!-- 推送人id -->
 <el-form-item label="推送人ID:" :label-width="formLabelWidth" prop="pushId" v-if="FalgpushId">
   <el-input v-model="entity.pushId" :disabled="disabled" clearable></el-input>
 </el-form-item>

methods中的方法,通過$event寫法來(lái)監(jiān)控該控件值的變化

 methods:{
 
  //該方法傳入推送范圍值,根據(jù)判斷,決定是否展示其下面的推送人ID文本框
     parens2(value){
      let self = this ;
      if(value == false){
       //el-switch控件為 個(gè)人推送時(shí),value為false
       self.FalgpushId = true;   //推送人id文本框顯示  
       self.entity.pushRange = false; 
      }else if(value == true){
       //el-switch控件為 true 全站推送,value為true
       self.FalgpushId = false;   //推送人id文本框隱藏
       self.entity.pushRange = true;
      }
     },
 }

關(guān)于使用vue.js封裝switch開關(guān)組件的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI