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

溫馨提示×

溫馨提示×

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

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

Ant Design Vue中如何實現省市穿梭框

發布時間:2021-12-24 09:02:41 來源:億速云 閱讀:287 作者:iii 欄目:編程語言

本篇內容主要講解“Ant Design Vue中如何實現省市穿梭框”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Ant Design Vue中如何實現省市穿梭框”吧!

Ant Design Vue中如何實現省市穿梭框

樹形穿梭框

官方樹穿梭框如下,左右是樹結構,右邊是列表。

本質上是有兩套數據源,tree 使用的是樹狀數據源,transfer 使用的是列表數據源,將多維的樹狀數據源轉為一維的,就是列表數據了。

具體使用可以查看官方文檔之 帶搜索框的穿梭框(https://antdv.com/components/transfer-cn/)

Ant Design Vue中如何實現省市穿梭框

城市穿梭框

改造穿梭框的原因:

  • targetKeys只需要城市數據,不需要省份數據

  • 源穿梭框中,子節點和父節點沒有關聯選中關系,需要處理,畢竟省市級是需要聯動的

  • 目標穿梭框,也要支持樹狀結構

主要實現功能點:

  • 樹形結構數據處理:關鍵詞過濾;已選數據禁用狀態;

  • 實現父節點和節點的關聯選中

  • 穿梭框右側僅展示城市數據,不顯示省份數據

  • 選中城市數據:帶省級信息返回,滿足接口要求,即返回樹狀結構

Ant Design Vue中如何實現省市穿梭框

改造的本質:基于transfer的二次改造,主要是對數據的處理,組件基本沒啥改變

組件參數和事件

自定義參數:考慮對外暴露的參數,參數的作用,屬性等 自定義事件:考慮暴露出去的回調事件

// 自定義參數
export default {
  props: {
    dataSource: {
      // 數據源
      type: Array,
      default: () => [],
    },
    targetKey: {
      // 右側框數據的 key 集合
      type: Array,
      default: () => [],
    },
  },
};

// handleChange回調函數:treeData-左側樹結構數據,toArray-右側樹結構數據,targetKeys-選中城市key集合
this.$emit("handleChange", this.treeData, toArray, this.targetKeys);

穿梭框處理

<template>
  <!-- 穿梭框組件,數據源為列表形式 -->
  <a-transfer
    class="mcd-transfer"
    ref="singleTreeTransfer"
    show-search
    :locale="localeConfig"
    :titles="['所有城市', '已選城市']"
    :data-source="transferDataSource"
    :target-keys="targetKeys"
    :render="(item) => item.label"
    :show-select-all="true"
    @change="handleTransferChange"
    @search="handleTransferSearch"
  >
    <template
      slot="children"
      slot-scope="{
        props: { direction, selectedKeys },
        on: { itemSelect, itemSelectAll },
      }"
    >
      <!-- 左邊源數據框:樹形控件 -->
      <a-tree
        v-if="direction === 'left'"
        class="mcd-tree"
        blockNode
        checkable
        :checked-keys="[...selectedKeys, ...targetKeys]"
        :expanded-keys="expandedKeys"
        :tree-data="treeData"
        @expand="handleTreeExpanded"
        @check="
          (_, props) => {
            handleTreeChecked(
              _,
              props,
              [...selectedKeys, ...targetKeys],
              itemSelect,
              itemSelectAll
            );
          }
        "
        @select="
          (_, props) => {
            handleTreeChecked(
              _,
              props,
              [...selectedKeys, ...targetKeys],
              itemSelect,
              itemSelectAll
            );
          }
        "
      />
    </template>
  </a-transfer>
</template>

數據源處理

  • 穿梭框數據處理(transferDataSource):多維數據轉為一維數據

  • 樹數據處理(treeData):數據源過濾處理,數據禁止操作處理

// 數據源示例
const dataSource = [
  {
    pid: "0",
    key: "1000",
    label: "黑龍江省",
    title: "黑龍江省",
    children: [
      {
        pid: "1000",
        key: "1028",
        label: "大興安嶺地區",
        title: "大興安嶺地區",
      },
    ],
  },
];

// ant-transfer穿梭框數據源
transferDataSource() {
  // 穿梭框數據源
  let transferDataSource = [];
  // 穿梭框數據轉換,多維轉為一維
  function flatten(list = []) {
    list.forEach((item) => {
      transferDataSource.push(item);
      // 子數據處理
      if (item.children && item.children.length) {
        flatten(item.children);
      }
    });
  }
  if (this.dataSource && this.dataSource.length) {
    flatten(JSON.parse(JSON.stringify(this.dataSource)));
  }
  return transferDataSource;
}

// ant-tree樹數據源
treeData() {
  // 樹形控件數據源
  const validate = (node, map) => {
    // 數據過濾處理 includes
    return node.title.includes(this.keyword);
  };
  const result = filterTree(
    this.dataSource,
    this.targetKeys,
    validate,
    this.keyword
  );
  return result;
}

// 樹形結構數據過濾
const filterTree = (tree = [], targetKeys = [], validate = () => {}) => {
  if (!tree.length) {
    return [];
  }
  const result = [];
  for (let item of tree) {
    if (item.children && item.children.length) {
      let node = {
        ...item,
        children: [],
        disabled: targetKeys.includes(item.key), // 禁用屬性
      };
      // 子級處理
      for (let o of item.children) {
        if (!validate.apply(null, [o, targetKeys])) continue;
        node.children.push({ ...o, disabled: targetKeys.includes(o.key) });
      }
      if (node.children.length) {
        result.push(node);
      }
    }
  }
  return result;
};

穿梭框事件處理

  • change 事件,回調數據(handleTransferChange)

  • search 搜索事件(handleTransferSearch)

// 穿梭框:change事件
handleTransferChange(targetKeys, direction, moveKeys) {
  // 過濾:避免頭部操作欄“全選”將省級key選中至右邊
  this.targetKeys = targetKeys.filter((o) => !this.pidKeys.includes(o));
  // 選中城市數據:帶省級信息返回,滿足接口要求
  const validate = (node, map) => {
    return map.includes(node.key) && node.title.includes(this.keyword);
  };
  let toArray = filterTree(this.dataSource, this.targetKeys, validate);
  // handleChange回調函數:treeData-左側樹結構數據,toArray-右側樹結構數據,targetKeys-選中城市key集合
  this.$emit("handleChange", this.treeData, toArray, this.targetKeys);
},

// 穿梭框:搜索事件
handleTransferSearch(dir, value) {
  if (dir === "left") {
    this.keyword = value;
  }
},

樹事件

  • change 事件,處理父節點和子節點的聯動關系(handleTreeChecked)

  • expand 事件:樹的展開和收縮(handleTreeExpanded)

// 樹形控件:change事件
handleTreeChecked(keys, e, checkedKeys, itemSelect, itemSelectAll) {
  const {
    eventKey,
    checked,
    dataRef: { children },
  } = e.node;
  if (this.pidKeys && this.pidKeys.includes(eventKey)) {
    // 父節點選中:將所有子節點也選中
    let childKeys = children ? children.map((item) => item.key) : [];
    if (childKeys.length) itemSelectAll(childKeys, !checked);
  }
  itemSelect(eventKey, !isChecked(checkedKeys, eventKey)); // 子節點選中
},
// 樹形控件:expand事件
handleTreeExpanded(expandedKeys) {
  this.expandedKeys = expandedKeys;
},

清除事件

重新打開時,需要還原組件狀態,例如滾動條位置,搜索框關鍵字等

handleReset() {
  this.keyword = "";
  this.$nextTick(() => {
    // 搜索框關鍵字清除
    const ele = this.$refs.singleTreeTransfer.$el.getElementsByClassName(
      "anticon-close-circle"
    );
    if (ele && ele.length) {
      ele[0] && ele[0].click();
      ele[1] && ele[1].click();
    }
    // 滾動條回到頂部
    if (this.$el.querySelector(".mcd-tree")) {
      this.$el.querySelector(".mcd-tree").scrollTop = 0;
    }
    // 展開數據還原
    this.expandedKeys = [];
  });
}

到此,相信大家對“Ant Design Vue中如何實現省市穿梭框”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

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

AI

汉阴县| 大化| 凤城市| 新密市| 镇远县| 桃园县| 阜康市| 金昌市| 健康| 永寿县| 余江县| 巴楚县| 武城县| 潼关县| 通许县| 黄平县| 南投县| 卢湾区| 咸宁市| 峨眉山市| 贡山| 兰坪| 根河市| 望城县| 修武县| 明光市| 英超| 丰镇市| 和林格尔县| 青阳县| 磐安县| 长治市| 康马县| 衡阳市| 闵行区| 积石山| 山西省| 温泉县| 屏东市| 安新县| 苍梧县|