vue 标签管理 远程搜索

vue yekong 682℃

wanjunshijiecom20220529DfLuaP
wanjunshijiecom20220529kXHHAZ

代码

/**
* @Author: 858834013@qq.com
* @Name: labelList
* @Date: 2022-05-25
* @Desc:
*/
<template>
  <div class="labelList">
    <div class="labels">
      <img src="../assets/icon_search.png" alt="">
      <el-autocomplete
        :fetch-suggestions="querySearch"
        placeholder="请输入关键词"
        v-model="name"
        @select="handleSelect"
      ></el-autocomplete>
    </div>
    <p class="tips">*您可添加最多3个作品话题</p>
    <div class="enumeratedValuesList">
      <div class="tag" v-for="(item,index) in list" :key="index">
        <span>#{{ item.value }}</span>
        <img class="cur" @click="handleClose(item)" src="../assets/icon_delete.png" alt="">
      </div>
    </div>
  </div>
</template>

<script>
import { labelFindList } from '@/api/user'

export default {
  name: 'labelList',
  components: {},
  props: {
    enumerationValue: {
      type: String,
      default () {
        return ''
      }
    }
  },
  data () {
    return {
      list: [],
      name: ''
    }
  },
  mounted () {
    // this.getList()
  },
  methods: {
    handleSelect (item) {
      this.name = ''
      if (item.noId) {
        return
      }
      var haskey = false
      this.list.forEach((type) => {
        if (type.name === item.name) {
          haskey = true
        }
      })
      if (haskey) {
        this.$message.error('已添加此关键词')
        return
      }
      if (this.list.length < 3) {
        this.list.push(item)
      } else {
        this.$message.error('最多可添加3个标签')
      }
      this.getEnumeratedValues()
    },
    getList () {
      if (this.enumerationValue) {
        this.list = this.enumerationValue.split(',')
      }
    },
    getData (data) {
      console.log(data)
      this.list = data
    },
    // 搜索(模糊搜索)
    querySearch (queryString, cb) {
      if (queryString !== '') {
        this.getPlanTypeData(queryString, (data) => {
          let results = ''
          if (queryString && !data[0].noId) {
            // 输入框有值且有匹配数据时
            results = data.filter(this.createFilter(queryString))
          } else {
            // 没有匹配数据时显示自定义的字段
            results = data
          }
          cb(results)
        })
      }
    },
    createFilter (queryString) {
      return (restaurant) => {
        // 后台已做筛选,不需再过滤
        return restaurant.value
      }
    },
    // 获取国家数据
    async getPlanTypeData (val, fun) {
      // var that = this
      const dataArr = []
      labelFindList({
        name: val,
        pageNum: 1,
        pageSize: 1000
      }).then(res => {
        if (res.code === 200) {
          var dataList = res.data.list
          if (dataList.length > 0) {
            dataList.forEach((item, index) => {
              dataArr.push({
                value: item.name,
                name: item.id
              })
            })
          } else {
            dataArr.push({
              value: '未找到相关结果',
              noId: '未找到相关结果'
            })
          }
          fun(dataArr)
        }
      })
    },
    handleClose (tag) {
      this.list.splice(this.list.indexOf(tag), 1)
      this.getEnumeratedValues()
    },
    getEnumeratedValues () {
      var list = []
      this.list.forEach((type) => {
        list.push(type.name)
      })
      this.$emit('getdata', list.join(','))
      return list.join(',')
    }
  }
}

</script>
<style lang="scss" scoped>
.enumeratedValuesList {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: flex-start;
  width: 480px;
  height: 50px;
  background: #EDEDED;
  border-radius: 5px 5px 5px 5px;
  opacity: 1;
  border: 1px solid #ACACAC;
  padding-left: 20px;

  .tag {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: flex-start;
    height: 50px;
  }
}

.labelList {
  width: 500px;
}

.tips {
  width: 500px;
  text-align: right;
  font-size: 18px;
  font-family: Heiti SC-Light, Heiti SC;
  font-weight: 300;
  color: #7D7D7D;
  margin-bottom: 23px;
  margin-top: 11px;
}

.labels {
  height: 50px;
  background: #FFFFFF;
  border-radius: 20px 20px 20px 20px;
  opacity: 1;
  border: 1px solid #ACACAC;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: flex-start;
  overflow: hidden;
  width: 500px;

  img {
    width: 24px;
    height: 24px;
    margin-left: 22px;
    margin-right: 10px;
  }

  :deep(.el-autocomplete) {
    height: 50px;
    width: 400px;
    outline: none;
    line-height: 50px;
    border: none;
    font-size: 24px;
    resize: none;
    box-shadow: none;
  }

  :deep(.el-input) {
    height: 50px;
    width: 400px;
    outline: none;
    line-height: 50px;
    border: none;
    font-size: 24px;
    resize: none;
    box-shadow: none;
  }

  :deep(.el-input__wrapper) {
    height: 50px;
    width: 400px;
    outline: none;
    line-height: 50px;
    border: none;
    font-size: 24px;
    resize: none;
    box-shadow: none;
  }

  :deep(.el-input__inner) {
    height: 50px;
    width: 400px;
    outline: none;
    line-height: 50px;
    border: none;
    resize: none;
    box-shadow: none;
  }
}

.tag {
  font-size: 24px;
  font-family: Heiti SC-Light, Heiti SC;
  font-weight: 300;
  color: #245EDC;
  margin-right: 10px;

  img {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
}

</style>

使用实例

<labelList ref="labelList" :enumerationValue="data.labelIds"
                           @getdata="getEnumeratedValues"></labelList>
喜欢 (0)