91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用vue3和typeScript怎么實現一個穿梭框功能

發布時間:2020-12-29 14:03:34 來源:億速云 閱讀:227 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關使用vue3和typeScript怎么實現一個穿梭框功能,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

思路:用兩個數組分別記錄左右框框里面的值,根據復選框選中狀態來實現刪除增加即可

html部分

<div class="shuttle">
  <!-- 左邊列表 -->
  <div class="shuttle-box">
    <div class="shuttle-box-title">
      <div>列表一</div>
      <div class="index-num">{{itemLeft.length}}</div>
    </div>
    <div class="shuttle-box-list">
      <div class="shuttle-box-item" v-for="(vo,inx) in itemLeft" :key="inx">
        <input type="checkbox" :value="inx" v-model="checkLeft" :disabled="vo.disabled" /> {{vo.label}}
      </div>
    </div>
  </div>
  <!-- 左右操作按鈕 -->
  <div class="shuttle-click">
    <span @click="goLeft">←</span>
    <span @click="goRight">→</span>
  </div>
  <!-- 右邊列表 -->
  <div class="shuttle-box">
    <div class="shuttle-box-title">
      <div>列表二</div>
      <div class="index-num">{{itemRight.length}}</div>
    </div>
    <div class="shuttle-box-list">
      <div class="shuttle-box-item" v-for="(vo,inx) in itemRight" :key="inx">
        <input type="checkbox" :value="inx" v-model="checkRight" :disabled="vo.disabled" /> {{vo.label}}
      </div>
    </div>
  </div>
</div>

ts部分

<script lang="ts">
import {
  defineComponent,
  reactive,
  toRefs
} from 'vue'

export default defineComponent({
  setup() {

    const data = reactive({
      itemLeft: [{
        label: '列表1的第一條數據',
        disabled: true,
      }, {
        label: '列表1的第二條數據',
        disabled: false,
      }],
      itemRight: [{
        label: '列表2的第一條數據',
        disabled: false,
      }, {
        label: '列表2的第二條數據',
        disabled: false,
      }],
      checkLeft: [],
      checkRight: [],
      goLeft: () => {
        //數組排序
        data.checkRight.sort(data.sortIndex);
        data.checkRight.forEach((item) => {
          //將itemRight對應索引的數據移動到左邊去
          data.itemLeft.push(data.itemRight[item]);
          //移除
          data.itemRight.splice(item, 1);
        });
        //清空
        data.checkLeft = [];
        data.checkRight = [];
      },
      goRight: () => {
        //數組排序
        data.checkLeft.sort(data.sortIndex);
        data.checkLeft.forEach((item) => {
          //將itemLeft對應索引的數據移動到右邊去
          data.itemRight.push(data.itemLeft[item]);
          //移除
          data.itemLeft.splice(item, 1);
        });
        //清空
        data.checkLeft = [];
        data.checkRight = [];
      },
      //checkbox是綁定的是的數組的索引,所以checkbox的點擊的順序不同的話索引的順序是不同的,這樣刪除有可能找不到會報錯,排個序從大到小刪除就可以
      //這個是排序參數
      sortIndex: (a, b) => {
        return b - a;
      }
    })
    return {
      ...toRefs(data),
    }
  }
})
</script>

css部分

.shuttle {
  width: 800px;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  //整個穿梭框
  .shuttle-box {
    width: 300px;
    height: 500px;
    border: 1px solid #ddd;
    //標題
    .shuttle-box-title {
      background: #f5f7fa;
      padding: 0 20px;
      height: 40px;
      line-height: 40px;
      display: flex;
      justify-content: space-between;
      .index-num {
        color: #909399;
        font-size: 12px;
        font-weight: 400;
      }
    }
    //列表
    .shuttle-box-list {
      padding: 20px;
      //一個列表item
      .shuttle-box-item {
        line-height: 2.0;
      }
    }
  }
  //左右穿梭按鈕
  .shuttle-click {
    padding-top: 60px;
    cursor: pointer;
    span {
      padding: 5px 10px;
      display: inline-block;
      background: #409eff;
      color: #ffffff;
      margin: 0 5px;
      text-align: center;
    }
  }
}

上述就是小編為大家分享的使用vue3和typeScript怎么實現一個穿梭框功能了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

凌云县| 神农架林区| 高安市| 云霄县| 司法| 徐水县| 乡宁县| 儋州市| 乐昌市| 钦州市| 尉氏县| 太湖县| 无锡市| 镇安县| 义马市| 沧源| 三台县| 石城县| 伊吾县| 平潭县| 略阳县| 奉贤区| 福建省| 年辖:市辖区| 申扎县| 松阳县| 邵阳市| 康乐县| 米林县| 临洮县| 金沙县| 台江县| 临清市| 大余县| 讷河市| 侯马市| 崇文区| 永平县| 大渡口区| 江阴市| 台东市|