vue-基于el-tag做的动态输入框

文章介绍了如何使用Vue组件`el-dynamic-tags`避免用户在input框中输入逗号分隔的字符串,通过创建公共组件实现动态添加和删除标签的功能,从而提高配置的正确性。组件利用`split()`方法处理输入值,并提供错误提示。
摘要由CSDN通过智能技术生成

避免在input框中输入通过","分割的字符串。通过手动添加的方式进行配置。降低配置失败的概率

效果图

一:使用方式

          <el-form-item label="简称" prop="id" :class="reviewList.cooperatorId">
            <!--            为了让前端提示错误信息 -->
            <el-input v-model="ruleForm.cooperatorId" v-show="false"></el-input>
            <el-dynamic-tags v-model="ruleForm.id" :updateValue="id" :closable="!isDisabled"
                             placeholder="请输入简称"></el-dynamic-tags>
          </el-form-item>

二:创建公共组件

<template>
  <div>
    <el-container>
      <el-aside>
        <el-tag
          :key="tag"
          effect="plain"
          :closable="closable"
          v-for="tag in dynamicValue"
          :style="closable?'':{'color':'#c0c4cc','background-color':'#F5F7FA'}"
          :disable-transitions="disableTransitions"
          @close="handleClose(tag)">
          {{ tag }}
        </el-tag>

        <el-input
          class="input-new-tag"
          v-if="inputVisible"
          v-model.trim="inputValue"
          ref="saveTagInput"
          size="small"
          :autofocus="true"
          @keyup.enter.native="handleInputConfirm"
          @blur="handleInputConfirm"
        >
        </el-input>
        <el-button v-else class="button-new-tag" size="small" @click="showInput"></el-button>
      </el-aside>

    </el-container>
  </div>
</template>
<script>
export default {
  props: {
    value: {
      type: String,
      defalut: ''
    },
    disableTransitions: {
      type: Boolean,
      defalut: false
    },
    closable: {
      type: Boolean,
      defalut: true,
      require: false
    },
    updateValue: {
      type: Function,
      require: true
    }
  },
  data() {
    return {
      updateCount: 0,
      dynamicValue: [],
      inputVisible: false,
      inputValue: ''
    };
  },
  mounted() {
    // 这样写的目的是为了只watch一次,因为网络原因导致value 的值没有实时同步过来.用mounted.watch代替created
    const unwatch = this.$watch('value', function (newValue, oldValue) {
      this.dynamicValue = newValue.split(",");
      unwatch();
    });
  },
  watch: {
    'dynamicValue'(newData) {
      // 回调父组件方法,更新变量
      this.updateValue(this.dynamicValue.join(","));
    }
  },
  methods: {
    handleClose(tag) {
      this.dynamicValue.splice(this.dynamicValue.indexOf(tag), 1);
    },

    showInput() {
      this.inputVisible = true;
      this.$nextTick(_ => {
        this.$refs.saveTagInput.$refs.input.focus();
      });
    },

    handleInputConfirm() {
      let inputValue = this.inputValue;
      let existence = this.dynamicValue.includes(inputValue);
      if (existence) {
        this.$message.error("存在相同的值,请检查后重新输入");
      } else {
        if (inputValue) {
          this.dynamicValue.push(inputValue);
        }
      }
      this.inputVisible = false;
      this.inputValue = '';
    }
  }
}
</script>

<style scoped>
.el-tag + .el-tag {
  margin-right: 3px;
}

.el-tag--plain {
  background-color: #fff;
  border-color: #dcdfe6;
  color: #606266;
  margin-right: 3px;
  margin-bottom: 3px;
}

.el-tag--plain .el-tag__close {
  color: #606266;
}

.button-new-tag {
  margin-right: 5px;
  height: 32px;
  line-height: 30px;
  padding-top: 0;
  padding-bottom: 0;
}

.input-new-tag {
  width: 100%;
  /*margin-left: 10px;*/
  vertical-align: bottom;
}
</style>

三:注册成全局组件

main.js 文件

import ElDynamicTags from '@/components/common/elDynamicTags' // - 动态输入框
Vue.component('ElDynamicTags', ElDynamicTags);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

b0b0大魔王

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值