input-box.vue 3.9 KB
Newer Older
1 2
<template>
  <div class="input-unit">
3
    <InputNumber v-if="type === 'number'"
4
      :id="numberId"
5 6 7 8 9
      :placeholder="placeholder"
      :size="size"
      :precision="precision"
      v-model="CurrentVal"
      :disabled="disabled ? true : false"
10
      :active-change="false"
11 12
    ></InputNumber>
    <i-input v-else
13 14 15 16 17
      :placeholder="placeholder"
      :size="size"
      :type="type"
      v-model="CurrentVal"
      :disabled="disabled ? true : false"
18
      :element-id="textareaId"
19 20 21 22 23 24 25 26 27 28 29 30 31
      @on-enter="enter"
    ></i-input>
    <div class="unit-text">{{unit}}</div>
  </div>
</template>

<script lang="ts">
import { Vue, Component, Prop, Model, Emit } from "vue-property-decorator";
import { Subject } from "rxjs";
import { debounceTime, distinctUntilChanged } from "rxjs/operators";

@Component({})
export default class InputBox extends Vue {
32
  
33 34 35 36 37 38 39
  /**
   * 双向绑定值
   * @type {any}
   * @memberof InputBox
   */
  @Model("change") readonly itemValue?: any;

40 41 42 43 44 45
  /**
   * 生命周期 (多行文本十行高度问题)
   * @type {any}
   * @memberof InputBox
   */
  public mounted(){
46
    this.addEvent();
47
    if(this.textareaId){
48 49 50 51
      let textarea :any= document.getElementById(this.textareaId);
      if(textarea){
        textarea.style=this.textareaStyle;
      }
52 53 54
    }
  }

55 56 57 58 59 60 61
  /**
   * 单位
   * @type {String}
   * @memberof InputBoxUnit
   */
  @Prop() public unit?: string;

62 63 64 65 66 67 68 69 70 71 72 73 74 75

  /**
   * 多行文本十行 特殊参数样式(模型高度自带)
   * @type {String}
   * @memberof InputBoxUnit
   */
  @Prop() public textareaStyle?: string;

  /**
   * 多行文本十行 特殊参数id(模型高度自带)
   * @type {String}
   * @memberof InputBoxUnit
   */
  @Prop() public textareaId?: string;
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
  /**
   * 大小
   * @type {String}
   * @memberof InputBoxUnit
   */
  @Prop() public size?: string;

  /**
   * placeholder值
   * @type {String}
   * @memberof InputBox
   */
  @Prop() public placeholder?: string;

  /**
   * 是否禁用
   * @type {boolean}
   * @memberof InputBox
   */
  @Prop() public disabled?: boolean;

  /**
   * 属性类型
   *
   * @type {string}
   * @memberof InputBox
   */
  @Prop() public type?: string;

105 106 107 108 109 110 111 112
  /**
   * 精度
   *
   * @type {number}
   * @memberof InputBox
   */
  @Prop({default: 0}) public precision?: number;

113 114 115 116 117 118 119 120
  /**
   * 多行文本行数
   *
   * @type {string}
   * @memberof InputBox
   */
  @Prop() public autoSize?: any;

121 122 123 124 125
  /**
   * 数值框numberId
   */
  public numberId :string= this.$util.createUUID();

126 127 128 129 130 131
  /**
   * 当前值
   *
   * @memberof InputBox
   */
  get CurrentVal() {
132 133 134 135 136
    if(Object.is(this.type, 'number') && this.itemValue && !isNaN(this.itemValue)){
      return Number(Number(this.itemValue).toFixed(this.precision));
    }else{
      return this.itemValue;
    }
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
  }

  /**
   * 值变化
   *
   * @memberof InputBox
   */
  set CurrentVal(val: any) {
    let _data: any = val;
    if (Object.is(this.type, "number") && val && !isNaN(val)) {
      try {
        _data = isNaN(Number(val)) ? null : Number(val);
      } catch (error) {}
    }
    if (Object.is(_data, "")) {
      _data = null;
    }
    this.$emit("change", _data);
  }

  /**
   * 回车事件
   *
   * @param {*} $event
   * @memberof InputBox
   */
  @Emit()
  public enter($event: any) {
    if (!$event || $event.keyCode !== 13) {
      return;
    }
    return $event;
  }
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190

  /**
   * 给数值框中的箭头按钮添加事件
   * 
   * @memberof InputBox
   */
  public addEvent(){
    if(Object.is(this.type, "number")){
      let inputNumber :any = document.getElementById(this.numberId);
      let handlerWrap :any = inputNumber.firstElementChild;
      handlerWrap.onmouseover=()=>{
        inputNumber.style.paddingRight="15px";
        inputNumber.style.transition="all 0.2s linear";
      }
      handlerWrap.onmouseout=()=>{
        inputNumber.style.paddingRight="0px";
      }
    }
  }


191 192 193 194 195 196
}
</script>

<style lang='less'>
@import "./input-box.less";
</style>