|
@@ -1,34 +1,39 @@
|
|
|
<template>
|
|
|
- <view :class="{'tui-input__border':inputBorder,'tui-radius__fillet':isFillet}" :style="{marginTop:marginTop+'rpx'}"
|
|
|
- @tap="fieldClick">
|
|
|
- <view class="tui-input__wrap"
|
|
|
- :class="{'tui-line__left':lineLeft,'tui-border__top':!borderTop || inputBorder,'tui-border__bottom':!borderBottom || inputBorder,'tui-radius__fillet':isFillet}"
|
|
|
- :style="{padding:padding,backgroundColor:backgroundColor}">
|
|
|
- <!-- #ifdef APP-NVUE -->
|
|
|
- <view class="tui-input__required" v-if="required">
|
|
|
- <text :style="{color:requiredColor}">*</text>
|
|
|
- </view>
|
|
|
- <!-- #endif -->
|
|
|
- <!-- #ifndef APP-NVUE -->
|
|
|
- <view class="tui-input__required" :style="{color:requiredColor}" v-if="required">*</view>
|
|
|
- <!-- #endif -->
|
|
|
- <view class="tui-input__label"
|
|
|
- :style="{fontSize:labelSize+'rpx',color:labelColor,minWidth:labelWidth+'rpx'}" v-if="label">
|
|
|
- <text :style="{fontSize:labelSize+'rpx',color:labelColor}">{{label}}</text>
|
|
|
- </view>
|
|
|
- <slot name="left"></slot>
|
|
|
- <input class="tui-input__self" :class="{'tui-text__right':textRight}"
|
|
|
- :style="{fontSize:size+'rpx',color:color}" placeholder-class="tui-input__placeholder" :type="type"
|
|
|
- :name="name" :value="inputVal" :password="password" :placeholder="placeholder"
|
|
|
- :placeholder-style="placeholderStyl" :disabled="disabled" :cursor-spacing="cursorSpacing"
|
|
|
- :maxlength="maxlength" :focus="focused" :confirm-type="confirmType" :confirm-hold="confirmHold"
|
|
|
- :cursor="cursor" :selection-start="selectionStart" :selection-end="selectionEnd"
|
|
|
- :adjust-position="adjustPosition" :hold-keyboard="holdKeyboard" :auto-blur="autoBlur" @focus="onFocus"
|
|
|
- @blur="onBlur" @input="onInput" @confirm="onConfirm" @keyboardheightchange="onKeyboardheightchange" />
|
|
|
- <icon type="clear" :size="clearSize" :color="clearColor" v-if="clearable && inputVal != ''"
|
|
|
- @tap.stop="onClear"></icon>
|
|
|
- <slot name="right"></slot>
|
|
|
+ <view class="tui-input__wrap"
|
|
|
+ :class="{'tui-border__top':borderTop && !inputBorder,'tui-border__bottom':borderBottom && !inputBorder,'tui-radius__fillet':isFillet && !getRadius,'tui-input__border-nvue':inputBorder}"
|
|
|
+ :style="getStyles" @tap="fieldClick">
|
|
|
+ <!-- #ifndef APP-NVUE -->
|
|
|
+ <view class="tui-input__border-top" v-if="borderTop && !inputBorder" :style="{borderTopColor:borderColor}">
|
|
|
</view>
|
|
|
+ <view class="tui-input__border-bottom" :class="{'tui-line__left':lineLeft}" v-if="borderBottom && !inputBorder"
|
|
|
+ :style="{borderBottomColor:borderColor}"></view>
|
|
|
+ <view class="tui-input__border" :class="{'tui-radius__fillet':isFillet && !getRadius}" v-if="inputBorder"
|
|
|
+ :style="{borderColor:borderColor,borderRadius:(getRadius*2)+'rpx'}"></view>
|
|
|
+ <!-- #endif -->
|
|
|
+ <!-- #ifdef APP-NVUE -->
|
|
|
+ <view class="tui-input__required" v-if="required">
|
|
|
+ <text :style="{color:getRequiredColor}">*</text>
|
|
|
+ </view>
|
|
|
+ <!-- #endif -->
|
|
|
+ <!-- #ifndef APP-NVUE -->
|
|
|
+ <view class="tui-input__required" :style="{color:getRequiredColor}" v-if="required">*</view>
|
|
|
+ <!-- #endif -->
|
|
|
+ <view class="tui-input__label"
|
|
|
+ :style="{fontSize:getLabelSize+'rpx',color:getLabelColor,minWidth:labelWidth+'rpx'}" v-if="label">
|
|
|
+ <text :style="{fontSize:getLabelSize+'rpx',color:getLabelColor}">{{label}}</text>
|
|
|
+ </view>
|
|
|
+ <slot name="left"></slot>
|
|
|
+ <input class="tui-input__self" :class="{'tui-text__right':textRight,'tui-input__disabled':disabled}"
|
|
|
+ :style="{fontSize:getSize+'rpx',color:color}" placeholder-class="tui-input__placeholder" :type="type"
|
|
|
+ :name="name" :value="inputVal" :password="password" :placeholder="inputVal?'':placeholder"
|
|
|
+ :placeholder-style="placeholderStyl" :disabled="disabled" :cursor-spacing="cursorSpacing"
|
|
|
+ :maxlength="maxlength" :focus="focused" :confirm-type="confirmType" :confirm-hold="confirmHold"
|
|
|
+ :cursor="cursor" :selection-start="selectionStart" :selection-end="selectionEnd"
|
|
|
+ :adjust-position="adjustPosition" :hold-keyboard="holdKeyboard" :auto-blur="autoBlur" @focus="onFocus"
|
|
|
+ @blur="onBlur" @input="onInput" @confirm="onConfirm" @keyboardheightchange="onKeyboardheightchange" />
|
|
|
+ <icon type="clear" :size="clearSize" :color="clearColor" v-if="clearable && inputVal != ''" @tap.stop="onClear">
|
|
|
+ </icon>
|
|
|
+ <slot name="right"></slot>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
@@ -37,14 +42,17 @@
|
|
|
name: "tui-input",
|
|
|
emits: ['input', 'update:modelValue', 'focus', 'blur', 'confirm', 'click', 'keyboardheightchange'],
|
|
|
//这里加group是为了避免在表单中使用时给组件加value属性
|
|
|
- // #ifndef VUE3
|
|
|
// #ifdef MP-WEIXIN
|
|
|
behaviors: ['wx://form-field-group'],
|
|
|
// #endif
|
|
|
- // #ifdef MP-BAIDU || MP-QQ
|
|
|
- //如果在这些平台不需要也能识别,则删除
|
|
|
- behaviors: ['uni://form-field'],
|
|
|
+ // #ifdef MP-BAIDU
|
|
|
+ behaviors: ['swan://form-field'],
|
|
|
// #endif
|
|
|
+ // #ifdef MP-QQ
|
|
|
+ behaviors: ['qq://form-field'],
|
|
|
+ // #endif
|
|
|
+ // #ifdef H5
|
|
|
+ behaviors: ['uni://form-field'],
|
|
|
// #endif
|
|
|
// #ifdef MP-WEIXIN
|
|
|
options: {
|
|
@@ -60,7 +68,7 @@
|
|
|
},
|
|
|
requiredColor: {
|
|
|
type: String,
|
|
|
- default: '#EB0909'
|
|
|
+ default: ''
|
|
|
},
|
|
|
//左侧标题
|
|
|
label: {
|
|
@@ -69,12 +77,12 @@
|
|
|
},
|
|
|
//标题字体大小
|
|
|
labelSize: {
|
|
|
- type: Number,
|
|
|
- default: 32
|
|
|
+ type: [Number, String],
|
|
|
+ default: 0
|
|
|
},
|
|
|
labelColor: {
|
|
|
type: String,
|
|
|
- default: '#333'
|
|
|
+ default: ''
|
|
|
},
|
|
|
//label 最小宽度 rpx
|
|
|
labelWidth: {
|
|
@@ -190,19 +198,23 @@
|
|
|
},
|
|
|
//输入框字体大小 rpx
|
|
|
size: {
|
|
|
- type: [Number,String],
|
|
|
- default: 32
|
|
|
+ type: [Number, String],
|
|
|
+ default: 0
|
|
|
},
|
|
|
//输入框字体颜色
|
|
|
color: {
|
|
|
type: String,
|
|
|
- default: '#333'
|
|
|
+ default: ''
|
|
|
},
|
|
|
// 是否显示 input 边框
|
|
|
inputBorder: {
|
|
|
type: Boolean,
|
|
|
default: false
|
|
|
},
|
|
|
+ borderColor: {
|
|
|
+ type: String,
|
|
|
+ default: 'rgba(0, 0, 0, 0.1)'
|
|
|
+ },
|
|
|
//input是否显示为圆角
|
|
|
isFillet: {
|
|
|
type: Boolean,
|
|
@@ -235,19 +247,61 @@
|
|
|
//输入框padding值
|
|
|
padding: {
|
|
|
type: String,
|
|
|
- default: '26rpx 30rpx'
|
|
|
+ default: ''
|
|
|
},
|
|
|
//输入框背景颜色
|
|
|
backgroundColor: {
|
|
|
type: String,
|
|
|
- default: '#FFFFFF'
|
|
|
+ default: ''
|
|
|
+ },
|
|
|
+ radius: {
|
|
|
+ type: [Number, String],
|
|
|
+ default: -1
|
|
|
},
|
|
|
//输入框margin-top值 rpx
|
|
|
marginTop: {
|
|
|
- type: Number,
|
|
|
+ type: [Number, String],
|
|
|
default: 0
|
|
|
}
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ getLabelSize() {
|
|
|
+ return this.labelSize || (uni && uni.$tui && uni.$tui.tuiInput.labelSize) || 32
|
|
|
+ },
|
|
|
+ getLabelColor() {
|
|
|
+ return this.labelColor || (uni && uni.$tui && uni.$tui.tuiInput.labelColor) || '#333'
|
|
|
+ },
|
|
|
+ getSize() {
|
|
|
+ return this.size || (uni && uni.$tui && uni.$tui.tuiInput.size) || 32
|
|
|
+ },
|
|
|
+ getColor() {
|
|
|
+ return this.color || (uni && uni.$tui && uni.$tui.tuiInput.color) || '#333'
|
|
|
+ },
|
|
|
+ getRadius() {
|
|
|
+ let radius = this.radius
|
|
|
+ if (radius === -1 || radius === true) {
|
|
|
+ radius = uni && uni.$tui && uni.$tui.tuiInput.radius
|
|
|
+ }
|
|
|
+ return Number(radius || 0)
|
|
|
+ },
|
|
|
+ getStyles() {
|
|
|
+ const padding = this.padding || (uni && uni.$tui && uni.$tui.tuiInput.padding) || '26rpx 30rpx';
|
|
|
+ const bgColor = this.backgroundColor || (uni && uni.$tui && uni.$tui.tuiInput.backgroundColor) ||
|
|
|
+ '#FFFFFF';
|
|
|
+ let radius = this.getRadius;
|
|
|
+ let styles = `padding:${padding};background:${bgColor};margin-top:${this.marginTop}rpx;`
|
|
|
+ if (radius && radius !== true && radius !== -1) {
|
|
|
+ styles += `border-radius:${radius}rpx;`
|
|
|
+ }
|
|
|
+ if (this.borderTop || this.borderBottom || this.inputBorder) {
|
|
|
+ styles += `border-color:${this.borderColor};`
|
|
|
+ }
|
|
|
+ return styles
|
|
|
+ },
|
|
|
+ getRequiredColor() {
|
|
|
+ return this.requiredColor || (uni && uni.$tui && uni.$tui.tuiInput.requiredColor) || '#EB0909'
|
|
|
+ }
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
placeholderStyl: '',
|
|
@@ -258,7 +312,9 @@
|
|
|
watch: {
|
|
|
focus(val) {
|
|
|
this.$nextTick(() => {
|
|
|
- this.focused = val
|
|
|
+ setTimeout(() => {
|
|
|
+ this.focused = val
|
|
|
+ }, 50)
|
|
|
})
|
|
|
},
|
|
|
placeholderStyle() {
|
|
@@ -274,31 +330,26 @@
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
- // #ifndef VUE3
|
|
|
- this.inputVal = this.value
|
|
|
- // #endif
|
|
|
-
|
|
|
- // #ifdef VUE3
|
|
|
- if (this.value && !this.modelValue) {
|
|
|
- this.inputVal = this.value
|
|
|
- } else {
|
|
|
- this.inputVal = this.modelValue
|
|
|
- }
|
|
|
- // #endif
|
|
|
this.fieldPlaceholderStyle()
|
|
|
+ setTimeout(() => {
|
|
|
+ // #ifndef VUE3
|
|
|
+ this.inputVal = this.value
|
|
|
+ // #endif
|
|
|
+
|
|
|
+ // #ifdef VUE3
|
|
|
+ if (this.value && !this.modelValue) {
|
|
|
+ this.inputVal = this.value
|
|
|
+ } else {
|
|
|
+ this.inputVal = this.modelValue
|
|
|
+ }
|
|
|
+ // #endif
|
|
|
+ }, 50)
|
|
|
},
|
|
|
mounted() {
|
|
|
this.$nextTick(() => {
|
|
|
- // #ifdef MP-TOUTIAO
|
|
|
setTimeout(() => {
|
|
|
this.focused = this.focus
|
|
|
}, 300)
|
|
|
- // #endif
|
|
|
- // #ifndef MP-TOUTIAO
|
|
|
- setTimeout(() => {
|
|
|
- this.focused = this.focus
|
|
|
- }, 120)
|
|
|
- // #endif
|
|
|
})
|
|
|
},
|
|
|
methods: {
|
|
@@ -306,7 +357,7 @@
|
|
|
if (this.placeholderStyle) {
|
|
|
this.placeholderStyl = this.placeholderStyle
|
|
|
} else {
|
|
|
- const size = uni.upx2px(this.size)
|
|
|
+ const size = uni.upx2px(this.size || (uni && uni.$tui && uni.$tui.tuiInput.size) || 32)
|
|
|
this.placeholderStyl = `font-size:${size}px`
|
|
|
}
|
|
|
},
|
|
@@ -314,14 +365,17 @@
|
|
|
let value = event.detail.value;
|
|
|
if (this.trim) value = this.trimStr(value);
|
|
|
this.inputVal = value
|
|
|
- if (this.modelModifiers.number || this.type === 'digit' || this.type === 'number') {
|
|
|
- let eVal = Number(value)
|
|
|
- if (typeof eVal === 'number') {
|
|
|
+ //数字类型 数值不能超过最大整数安全范围,一但超过则返回字符串
|
|
|
+ const cVal = Number(value)
|
|
|
+ if ((this.modelModifiers.number || this.type === 'digit' || this.type === 'number') && !isNaN(cVal) &&
|
|
|
+ Number.isSafeInteger(cVal)) {
|
|
|
+ let eVal = this.type === 'digit' ? value : cVal
|
|
|
+ if (typeof cVal === 'number') {
|
|
|
const min = Number(this.min)
|
|
|
const max = Number(this.max)
|
|
|
- if (typeof min === 'number' && eVal < min) {
|
|
|
+ if (typeof min === 'number' && cVal < min) {
|
|
|
eVal = min
|
|
|
- } else if (typeof max === 'number' && max < eVal) {
|
|
|
+ } else if (typeof max === 'number' && max < cVal) {
|
|
|
eVal = max
|
|
|
}
|
|
|
}
|
|
@@ -330,10 +384,10 @@
|
|
|
this.$nextTick(() => {
|
|
|
event.detail.value !== '' && (this.inputVal = value);
|
|
|
})
|
|
|
-
|
|
|
- this.$emit('input', value);
|
|
|
+ const inputValue = event.detail.value !== '' ? value : ''
|
|
|
+ this.$emit('input', inputValue);
|
|
|
// #ifdef VUE3
|
|
|
- this.$emit('update:modelValue', value)
|
|
|
+ this.$emit('update:modelValue', inputValue)
|
|
|
// #endif
|
|
|
},
|
|
|
onFocus(event) {
|
|
@@ -346,7 +400,7 @@
|
|
|
this.$emit('confirm', e);
|
|
|
},
|
|
|
onClear(event) {
|
|
|
- if(this.disabled) return;
|
|
|
+ if (this.disabled) return;
|
|
|
uni.hideKeyboard()
|
|
|
this.inputVal = '';
|
|
|
this.$emit('input', '');
|
|
@@ -377,24 +431,18 @@
|
|
|
display: flex;
|
|
|
/* #endif */
|
|
|
flex-direction: row;
|
|
|
- flex: 1;
|
|
|
align-items: center;
|
|
|
position: relative;
|
|
|
-
|
|
|
+ flex: 1;
|
|
|
/* #ifdef APP-NVUE */
|
|
|
- border-top-width: 0.5px;
|
|
|
- border-top-style: solid;
|
|
|
- border-top-color: rgba(0, 0, 0, 0.1);
|
|
|
- border-bottom-width: 0.5px;
|
|
|
- border-bottom-style: solid;
|
|
|
- border-bottom-color: rgba(0, 0, 0, 0.1);
|
|
|
padding: 26rpx 30rpx;
|
|
|
/* #endif */
|
|
|
+ border-width: 0;
|
|
|
}
|
|
|
|
|
|
/* #ifndef APP-NVUE */
|
|
|
- .tui-input__wrap::before {
|
|
|
- content: ' ';
|
|
|
+
|
|
|
+ .tui-input__border-top {
|
|
|
position: absolute;
|
|
|
top: 0;
|
|
|
right: 0;
|
|
@@ -407,8 +455,7 @@
|
|
|
pointer-events: none;
|
|
|
}
|
|
|
|
|
|
- .tui-input__wrap::after {
|
|
|
- content: ' ';
|
|
|
+ .tui-input__border-bottom {
|
|
|
position: absolute;
|
|
|
border-bottom: 1px solid var(--thorui-line-color, rgba(0, 0, 0, 0.1));
|
|
|
-webkit-transform: scaleY(0.5);
|
|
@@ -421,27 +468,21 @@
|
|
|
pointer-events: none;
|
|
|
}
|
|
|
|
|
|
- .tui-line__left::after {
|
|
|
+ .tui-line__left {
|
|
|
left: 30rpx !important;
|
|
|
}
|
|
|
|
|
|
- .tui-border__top::before {
|
|
|
- border-top: 0;
|
|
|
- }
|
|
|
-
|
|
|
- .tui-border__bottom::after {
|
|
|
- border-bottom: 0;
|
|
|
- }
|
|
|
-
|
|
|
/* #endif */
|
|
|
|
|
|
/* #ifdef APP-NVUE */
|
|
|
.tui-border__top {
|
|
|
- border-top-width: 0;
|
|
|
+ border-top-width: 0.5px;
|
|
|
+ border-top-style: solid;
|
|
|
}
|
|
|
|
|
|
.tui-border__bottom {
|
|
|
- border-bottom-width: 0;
|
|
|
+ border-top-width: 0.5px;
|
|
|
+ border-top-style: solid;
|
|
|
}
|
|
|
|
|
|
/* #endif */
|
|
@@ -499,22 +540,20 @@
|
|
|
|
|
|
/* #endif */
|
|
|
|
|
|
- .tui-input__border {
|
|
|
- border-radius: 4rpx;
|
|
|
- position: relative;
|
|
|
- /* #ifdef APP-NVUE */
|
|
|
- border-style: solid;
|
|
|
+ /* #ifdef APP-NVUE */
|
|
|
+ .tui-input__border-nvue {
|
|
|
border-width: 0.5px;
|
|
|
- border-color: #d1d1d1;
|
|
|
- /* #endif */
|
|
|
- /* #ifndef APP-NVUE */
|
|
|
- border-width: 0;
|
|
|
- /* #endif */
|
|
|
+ border-style: solid;
|
|
|
}
|
|
|
|
|
|
+ /* #endif */
|
|
|
+
|
|
|
/* #ifndef APP-NVUE */
|
|
|
- .tui-input__border::after {
|
|
|
- content: ' ';
|
|
|
+ .tui-input__disabled {
|
|
|
+ pointer-events: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .tui-input__border {
|
|
|
position: absolute;
|
|
|
height: 200%;
|
|
|
width: 200%;
|
|
@@ -527,11 +566,8 @@
|
|
|
pointer-events: none;
|
|
|
}
|
|
|
|
|
|
- .tui-radius__fillet::after {
|
|
|
- border-radius: 100px !important;
|
|
|
- }
|
|
|
-
|
|
|
/* #endif */
|
|
|
+
|
|
|
.tui-radius__fillet {
|
|
|
border-radius: 100px !important;
|
|
|
}
|
|
@@ -539,4 +575,4 @@
|
|
|
.tui-text__right {
|
|
|
text-align: right;
|
|
|
}
|
|
|
-</style>
|
|
|
+</style>
|