antd 中 穿梭框的使用


穿梭选择框用直观的方式在两栏中移动元素,完成选择行为。

选择一个或以上的选项后,点击对应的方向键,可以把选中的选项移动到另一栏。
其中,左边一栏为 source,右边一栏为 target

 

<template>
  <div>
    <a-transfer
      show-search
      :data-source="mockData"
      :target-keys="targetKeys"
      :render="(item) => item.title"
      :filter-option="filterOption"
      @search="handleSearch"
      @change="handleChange"
    />
  </div>
</template>
<script>
export default {
  data() {
    return {
      mockData: [],
      targetKeys: [],
    };
  },
  mounted() {
    this.getMockData();
  },
  methods: {
    getMockData() {
      const targetKeys = [];
      const mockData = [];
      for (let i = 0; i < 20; i++) {
        const data = {
          key: i.toString(),
          title: `content${i + 1}`,
          description: `description of content ${i + 1}`,
          chosen: Math.random() * 2 > 1,
        };
        if (data.chosen) {
          console.log(1132);
          targetKeys.push(data.key);
        }
        mockData.push(data);
      }
      this.mockData = mockData;
      this.targetKeys = targetKeys;
    },
    handleSearch(dir, value) {
      console.log("dir", dir); //左边||右边
      console.log("value", value); //搜索的值
    },
    handleChange(targetKeys, direction, moveKeys) {
      console.log("targetKeys",targetKeys);
      console.log("direction",direction);
      console.log("moveKeys",moveKeys);
      this.targetKeys = targetKeys;
    },
    filterOption(inputValue,option){
      console.log("inputValue",inputValue);
      console.log("option",option);
      return option.description.indexOf(inputValue)>-1
    }
  },
};
</script>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM