首页 > 其他分享 >自定义穿梭框封装

自定义穿梭框封装

时间:2024-09-14 10:46:15浏览次数:1  
标签:封装 自定义 item 穿梭 result key citiesCheck return cities

 

 后面有时间再来慢慢搞吧,暂且先这样, 有需要的可以把代码考过去继续弄

<template>
  <div id="app">
    <div class="f-transfer flex">
      <!-- left -->
      <div class="f-left">
        <div class="f-top flex flex-justify-between">
          <el-checkbox
            :indeterminate="isIndeterminate"
            v-model="checkAll"
            @change="handleCheckAllChange"
            >全选</el-checkbox
          >

          <span style="color: #606266"
            >{{ SelectNumLeft }}/{{ cities.length }}</span
          >
        </div>
        <div class="f-search">
          <el-input
            placeholder="请输入内容"
            prefix-icon="el-icon-search"
            @input="search"
            v-model="input2"
          >
          </el-input>
        </div>
        <div class="f-container">
          <el-checkbox-group
            v-model="checkedCities"
            @change="handleCheckedCitiesChange"
          >
            <el-checkbox
              v-for="city in cities"
              :label="city.key"
              :key="city.key"
              class="flex"
            >
              <el-row :gutter="20">
                <el-col :span="8">
                  <el-tooltip
                    class="item"
                    effect="dark"
                    :content="city.label"
                    placement="top"
                  >
                    <p class="emtys">{{ city.label }}</p>
                  </el-tooltip>
                </el-col>
                <el-col :span="12">
                  {{ city.phone }}
                </el-col>
                <el-col :span="2">
                  <span style="color: #76b9ed" @click="operate(city.key)"
                    >操作</span
                  >
                </el-col>
              </el-row>
            </el-checkbox>
          </el-checkbox-group>
        </div>

        <div style="padding: 8px 0">
          <el-pagination
            @size-change="handleSizeChange"
            @current-change="handleCurrentChange"
            :current-page.sync="currentPage"
            :pager-count="5"
            :page-sizes="[10, 20, 30]"
            :page-size="pageSize"
            small
            layout="prev, pager, next,sizes"
            :total="total"
          ></el-pagination>
        </div>
      </div>
      <!-- middle -->
      <div class="f-middle flex-column">
        <el-button style="margin: 10px" @click="leftDataFunc">
          <i class="el-icon-arrow-left"></i>
        </el-button>
        <el-button style="margin: 10px" @click="rightDataFunc">
          <i class="el-icon-arrow-right"></i>
        </el-button>
      </div>
      <!-- right -->
      <div class="f-right f-left">
        <div class="f-top flex flex-justify-between">
          <el-checkbox
            :indeterminate="isIndeterminateCheck"
            v-model="checkAllCheck"
            @change="handleCheckAllChangeCheck"
            >全选</el-checkbox
          >
          <span style="color: #606266"
            >{{ SelectNumRight }}/{{ citiesCheck.length }}</span
          >
        </div>
        <div class="f-search">
          <el-input
            placeholder="请输入内容"
            prefix-icon="el-icon-search"
            @input="searchCheck"
            v-model="input2Check"
          >
          </el-input>
        </div>
        <div class="f-container">
          <el-checkbox-group
            v-model="checkedCitiesCheck"
            @change="handleCheckedCitiesChangeCheck"
          >
            <el-checkbox
              v-for="city in citiesCheck"
              :label="city.key"
              :key="city.key"
              class="flex"
            >
              <el-row :gutter="20">
                <el-col :span="8">
                  <p class="emtys">{{ city.label }}</p>
                </el-col>
                <el-col :span="12">
                  {{ city.phone }}
                </el-col>
                <el-col :span="2">
                  <span style="color: #76b9ed" @click="operateCheck(city.key)"
                    >操作</span
                  >
                </el-col>
              </el-row>
            </el-checkbox>
          </el-checkbox-group>
        </div>
      </div>
    </div>
  </div>
</template>

<script>
export default {
  name: "App",
  data() {
    return {
      checkAll: false, //左侧全选状态
      checkedCities: [], //左侧勾选中的key数组
      cities: [], //左侧列表数据列表
      isIndeterminate: false, //左侧顶部选择状态
      input2: "", //左侧搜索value
      newCities: [], //左侧搜索时,数据暂存
      citiesStatus: true, //左侧是否进行暂存数据的状态
      currentPage: 1, //左侧当前第几页
      pageSize: 30, //左侧每页显示多少条数据
      total: 90, //左侧总条数
      //----------------------------
      checkAllCheck: false, //右侧全选状态
      checkedCitiesCheck: [], //右侧勾选中的key数组
      citiesCheck: [], //右侧列表数据列表
      isIndeterminateCheck: false, //右侧顶部选择状态
      input2Check: "", //右侧搜索value
      newCitiesCheck: [], //右侧搜索时,数据暂存
      citiesStatusCheck: true, //右侧是否进行暂存数据的状态
      //----------------------------------------
    };
  },
  mounted() {
    this.dataAdd();
  },
  watch: {
    checkedCities: {
      handler(newval) {
        if (newval.length == 0) {
          this.checkAll = false;
          this.isIndeterminate = false;
        }
      },
      deep: true,
      immediate: true,
    },
    checkedCitiesCheck: {
      handler(newval) {
        if (newval.length == 0) {
          this.checkAllCheck = false;
          this.isIndeterminateCheck = false;
        }
      },
      deep: true,
      immediate: true,
    },
  },
  computed: {
    SelectNumLeft() {
      return [...new Set(this.checkedCities)].length;
    },
    SelectNumRight() {
      return [...new Set(this.checkedCitiesCheck)].length;
    },
  },
  methods: {
    operate(key) {
      let result = this.cities.filter((item) => {
        return item.key == key;
      });
      let arry = this.citiesCheck;
      arry.push(result[0]);
      this.checkedCities = this.checkedCities.filter((key) => {
        return key != result[0].key;
      });
      this.cities = this.deleteObjectById(this.cities, result[0].key);
      this.citiesCheck = this.Deduplication(arry, "key");
    },
    //根据id删除对象
    deleteObjectById(arr, key) {
      return arr.filter((obj) => obj.key != key);
    },
    Deduplication(data, key) {
      var arr1 = data.filter(function (element, index, self) {
        return self.findIndex((el) => el[key] == element[key]) === index; 
      });
      // 在重新赋值给data
      return arr1;
    },
    search(val) {
      if (this.citiesStatus) {
        this.citiesStatus = false;
        this.newCities = this.cities;
      }
      let result = this.newCities.filter((item) => {
        return item.label.includes(val);
      });
      console.log(result, "======result");
      this.cities = result;

      if (!val) {
        this.cities = this.newCities;
      }
    },
    handleCheckAllChange(val) {
      if (val) {
        this.cities.forEach((item) => {
          this.checkedCities.push(item.key);
        });
      } else {
        this.checkedCities = [];
      }
      this.isIndeterminate = false;
    },
    handleCheckedCitiesChange(value) {
      let checkedCount = value.length;
      this.checkAll = checkedCount === this.cities.length;
      this.isIndeterminate =
        checkedCount > 0 && checkedCount < this.cities.length;
    },
    rightDataFunc() {
      this.checkedCities = [...new Set(this.checkedCities)];
      this.checkedCities.forEach((key) => {
        let result = this.cities.filter((item) => {
          return key == item.key;
        })[0];
        this.citiesCheck.push(result);
        this.cities = this.deleteObjectById(this.cities, result.key);
        this.checkedCities = this.checkedCities.filter((key) => {
          return key != result.key;
        });
      });
    },
    handleSizeChange(val) {
      console.log(`每页 ${val} 条`);
      this.pageSize = val;
      this.dataAdd();
    },
    handleCurrentChange(val) {
      console.log(`当前页: ${val}`);
      this.currentPage = val;
      this.dataAdd();
    },

    // ------------------------------------------------------
    leftDataFunc() {
      this.checkedCitiesCheck = [...new Set(this.checkedCitiesCheck)];
      this.checkedCitiesCheck.forEach((key) => {
        let result = this.citiesCheck.filter((item) => {
          return key == item.key;
        })[0];
        this.cities.push(result);
        this.citiesCheck = this.deleteObjectById(this.citiesCheck, result.key);
        this.checkedCitiesCheck = this.checkedCitiesCheck.filter((key) => {
          return key != result.key;
        });
      });
    },
    operateCheck(key) {
      let result = this.citiesCheck.filter((item) => {
        return item.key == key;
      });
      let arry = this.cities;
      arry.push(result[0]);
      this.checkedCitiesCheck = this.checkedCitiesCheck.filter((key) => {
        return key != result[0].key;
      });
      this.citiesCheck = this.deleteObjectById(this.citiesCheck, result[0].key);
      this.cities = this.Deduplication(arry, "key");
    },
    searchCheck(val) {
      if (this.citiesStatusCheck) {
        this.citiesStatusCheck = false;
        this.newCitiesCheck = this.citiesCheck;
      }
      let result = this.newCitiesCheck.filter((item) => {
        return item.label.includes(val);
      });
      console.log(result, "======result");
      this.citiesCheck = result;

      if (!val) {
        this.citiesCheck = this.newCitiesCheck;
      }
    },
    handleCheckAllChangeCheck(val) {
      if (val) {
        this.citiesCheck.forEach((item) => {
          this.checkedCitiesCheck.push(item.key);
        });
      } else {
        this.checkedCitiesCheck = [];
      }
      this.isIndeterminateCheck = false;
    },
    handleCheckedCitiesChangeCheck(value) {
      let checkedCountCheck = value.length;
      this.checkAllCheck = checkedCountCheck === this.citiesCheck.length;
      this.isIndeterminateCheck =
        checkedCountCheck > 0 && checkedCountCheck < this.citiesCheck.length;
    },

    //------------------------------------------
    dataAdd() {
      let array = [];
      for (let i = 0; i < this.pageSize; i++) {
        let s = (this.currentPage - 1) * this.pageSize + i;
        let obj = {
          key: s + 1,
          label: "王麻子" + (s + 1),
          phone: "15666667" + (s + 1),
          status: true,
        };
        array.push(obj);
      }
      this.cities = array;
    },
  },
};
</script>

<style>
.f-transfer .f-left {
  width: 320px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ccc;
}
.flex {
  display: flex !important;
  align-items: center;
}
.f-container::-webkit-scrollbar {
  width: 2px;
}
.f-container::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #c6d1e2;
}
.f-container::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: #f2f7ff;
  border: 1px solid #f2f7ff;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-justify-between {
  justify-content: space-between;
}
.f-transfer .f-left .f-top {
  background: #ccc;
  height: 30px;
  padding: 10px;
  line-height: 30px;
}
.emtys {
  padding: 0;
  margin: 0;
  width: 60px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.f-search {
  padding: 10px;
}
.f-transfer .f-left .f-container {
  height: 270px;
  overflow-y: auto;
  padding: 10px;
}
.el-checkbox-group {
  display: flex;
  flex-direction: column;
}
.el-checkbox {
  margin: 6px 0;
}
</style>

 

标签:封装,自定义,item,穿梭,result,key,citiesCheck,return,cities
From: https://www.cnblogs.com/tlfe/p/18413509

相关文章

  • 自定义WPF滑块样式-Slider
    在Windows应用程序开发中,滑块(Slider)是一个非常常见且有用的控件。它可以让用户通过拖动滑块来选择一个范围内的值。然而,WPF或UWP应用程序中的默认滑块样式可能并不总是符合我们的设计需求。因此,我们需要自定义滑块的样式。在本文中,我将向你展示如何使用XAML(ExtensibleApplicat......
  • C++入门基础知识65——【关于C++ 数据封装】
    成长路上不孤单......
  • 文本溢出时,悬浮显示,使用自定义指令
    单行溢出代码overflow:hidden;text-overflow:ellipsis;white-space:nowrap;多行溢出代码overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;word-break:break-all;-webkit-box-o......
  • ros 自定义消息(图像+标志位+位姿)python和c++发布和接受
      编译 脚本 v3_gaosi_img_pose_flag.sh#!/bin/bash#外部给与执行权限#sudochmod+xrun_ros_nodes.sh#定义ROS安装路径#安装时候添加到系统路径了不需要每次都sourceROS_SETUP="/opt/ros/noetic/setup.bash"#定义工作目录路径自己的工程没有加到系......
  • vue3 el-message组件封装
    背景在封装请求拦截器时,使用ElMessage进行弹窗提示成功或失败,但是如果页面用到多个接口,这时就会导致页面出现很多弹窗,导致用户体验不好,有可能出现卡顿现象。这时就需要进行一些判断,如果前面的ElMessage还没关闭并且类型是一致的就return,不再弹窗提示,类型不一致时就要弹窗提示......
  • echarts X轴文本太长 formatter自定义文本的显示方式
    如果ECharts中X轴的文本太长,可以通过设置axisLabel的rotate属性来旋转标签,或者使用formatter函数来自定义文本的显示方式。另外,可以开启axisLabel的interval属性来控制显示的标签的间隔。option={tooltip:{},xAxis:{type:'category',data:['这是一段非......
  • SAP B1 单据页面自定义 - 用户界面编辑字段
    背景接《SAPB1基础实操-用户定义字段(UDF)》,在设置完自定义字段后,如下图,通过打开【用户定义字段】可打开表单右侧的自定义字段页。然而再开打一页附加页面操作繁复,若是客户常用的定义字段,也可以把这些用户定义字段自由编辑入左侧原始表单中,本文将详细介绍。操作1.字......
  • 如何在PbootCMS前台调用自定义表单?PbootCMS自定义调用代码说明
    要在PbootCMS前台调用自定义表单,可以按照以下详细步骤进行操作:1.创建自定义表单登录后台:登录PbootCMS后台管理系统。创建表单:进入表单管理模块。点击“新建表单”,填写表单的基本信息(如表单名称)。添加所需的字段(如姓名、邮箱、电话等)。保存表单。2.在模板文件......
  • 自定义转场
    在iOS中,自定义转场动画可以通过实现UIViewControllerAnimatedTransitioning协议来为模态(modal)和推送(push)转场提供自定义动画。以下是这两种转场的具体实现方式:1.自定义模态转场Step1:创建转场代理创建一个遵循UIViewControllerAnimatedTransitioning协议的类:importUIK......
  • 3.Java面向对象第三章封装与继承
    3.Java面向对象第三章封装与继承文章目录3.Java面向对象第三章封装与继承一、封装二、包三、访问权限四、static静态五、继承一、封装什么是封装:隐藏类的内部实现细节,对外提供一个可以访问的接口。步骤:1.设置属性为private2.生成get和set方法3.可以在get或se......