123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542 |
- <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>
- </view>
- </template>
- <script>
- export default {
- 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'],
- // #endif
- // #endif
- // #ifdef MP-WEIXIN
- options: {
- addGlobalClass: true,
- virtualHost: true
- },
- // #endif
- props: {
- //是否为必填项
- required: {
- type: Boolean,
- default: false
- },
- requiredColor: {
- type: String,
- default: '#EB0909'
- },
- //左侧标题
- label: {
- type: String,
- default: ''
- },
- //标题字体大小
- labelSize: {
- type: Number,
- default: 32
- },
- labelColor: {
- type: String,
- default: '#333'
- },
- //label 最小宽度 rpx
- labelWidth: {
- type: Number,
- default: 140
- },
- clearable: {
- type: Boolean,
- default: false
- },
- //px
- clearSize: {
- type: Number,
- default: 15
- },
- clearColor: {
- type: String,
- default: '#bfbfbf'
- },
- //获取焦点
- focus: {
- type: Boolean,
- default: false
- },
- placeholder: {
- type: String,
- default: ''
- },
- placeholderStyle: {
- type: String,
- default: ''
- },
- //输入框名称
- name: {
- type: String,
- default: ''
- },
- //输入框值
- value: {
- type: [Number, String],
- default: ''
- },
- // #ifdef VUE3
- //输入框值
- modelValue: {
- type: [Number, String],
- default: ''
- },
- // #endif
- modelModifiers: {
- default: () => ({})
- },
- //与官方input type属性一致
- type: {
- type: String,
- default: 'text'
- },
- password: {
- type: Boolean,
- default: false
- },
- disabled: {
- type: Boolean,
- default: false
- },
- maxlength: {
- type: [Number, String],
- default: 140
- },
- min: {
- type: [Number, String],
- default: 'NaN'
- },
- max: {
- type: [Number, String],
- default: 'NaN'
- },
- cursorSpacing: {
- type: Number,
- default: 0,
- },
- confirmType: {
- type: String,
- default: 'done'
- },
- confirmHold: {
- type: Boolean,
- default: false,
- },
- cursor: {
- type: Number,
- default: -1
- },
- selectionStart: {
- type: Number,
- default: -1
- },
- selectionEnd: {
- type: Number,
- default: -1
- },
- adjustPosition: {
- type: Boolean,
- default: true
- },
- holdKeyboard: {
- type: Boolean,
- default: false
- },
- autoBlur: {
- type: Boolean,
- default: false
- },
- //输入框字体大小 rpx
- size: {
- type: [Number,String],
- default: 32
- },
- //输入框字体颜色
- color: {
- type: String,
- default: '#333'
- },
- // 是否显示 input 边框
- inputBorder: {
- type: Boolean,
- default: false
- },
- //input是否显示为圆角
- isFillet: {
- type: Boolean,
- default: false
- },
- // 是否显示上边框
- borderTop: {
- type: Boolean,
- default: false
- },
- // 是否显示下边框
- borderBottom: {
- type: Boolean,
- default: true
- },
- //下边框线条是否有左偏移距离
- lineLeft: {
- type: Boolean,
- default: true
- },
- // 是否自动去除两端的空格
- trim: {
- type: Boolean,
- default: true
- },
- textRight: {
- type: Boolean,
- default: false
- },
- //输入框padding值
- padding: {
- type: String,
- default: '26rpx 30rpx'
- },
- //输入框背景颜色
- backgroundColor: {
- type: String,
- default: '#FFFFFF'
- },
- //输入框margin-top值 rpx
- marginTop: {
- type: Number,
- default: 0
- }
- },
- data() {
- return {
- placeholderStyl: '',
- focused: false,
- inputVal: ''
- }
- },
- watch: {
- focus(val) {
- this.$nextTick(() => {
- this.focused = val
- })
- },
- placeholderStyle() {
- this.fieldPlaceholderStyle()
- },
- // #ifdef VUE3
- modelValue(newVal) {
- this.inputVal = newVal
- },
- // #endif
- value(newVal) {
- this.inputVal = newVal
- }
- },
- 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()
- },
- mounted() {
- this.$nextTick(() => {
- // #ifdef MP-TOUTIAO
- setTimeout(() => {
- this.focused = this.focus
- }, 300)
- // #endif
- // #ifndef MP-TOUTIAO
- setTimeout(() => {
- this.focused = this.focus
- }, 120)
- // #endif
- })
- },
- methods: {
- fieldPlaceholderStyle() {
- if (this.placeholderStyle) {
- this.placeholderStyl = this.placeholderStyle
- } else {
- const size = uni.upx2px(this.size)
- this.placeholderStyl = `font-size:${size}px`
- }
- },
- onInput(event) {
- 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 min = Number(this.min)
- const max = Number(this.max)
- if (typeof min === 'number' && eVal < min) {
- eVal = min
- } else if (typeof max === 'number' && max < eVal) {
- eVal = max
- }
- }
- value = isNaN(eVal) ? value : eVal
- }
- this.$nextTick(() => {
- event.detail.value !== '' && (this.inputVal = value);
- })
-
- this.$emit('input', value);
- // #ifdef VUE3
- this.$emit('update:modelValue', value)
- // #endif
- },
- onFocus(event) {
- this.$emit('focus', event);
- },
- onBlur(event) {
- this.$emit('blur', event);
- },
- onConfirm(e) {
- this.$emit('confirm', e);
- },
- onClear(event) {
- if(this.disabled) return;
- uni.hideKeyboard()
- this.inputVal = '';
- this.$emit('input', '');
- // #ifdef VUE3
- this.$emit('update:modelValue', '')
- // #endif
- },
- fieldClick() {
- this.$emit('click', {
- name: this.name
- });
- },
- onKeyboardheightchange(e) {
- this.$emit('keyboardheightchange', e.detail)
- },
- trimStr(str) {
- return str.replace(/^\s+|\s+$/g, '');
- }
- }
- }
- </script>
- <style scoped>
- .tui-input__wrap {
- /* #ifndef APP-NVUE */
- width: 100%;
- box-sizing: border-box;
- display: flex;
- /* #endif */
- flex-direction: row;
- flex: 1;
- align-items: center;
- position: relative;
- /* #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 */
- }
- /* #ifndef APP-NVUE */
- .tui-input__wrap::before {
- content: ' ';
- position: absolute;
- top: 0;
- right: 0;
- left: 0;
- border-top: 1px solid var(--thorui-line-color, rgba(0, 0, 0, 0.1));
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- transform-origin: 0 0;
- z-index: 2;
- pointer-events: none;
- }
- .tui-input__wrap::after {
- content: ' ';
- position: absolute;
- border-bottom: 1px solid var(--thorui-line-color, rgba(0, 0, 0, 0.1));
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- transform-origin: 0 100%;
- bottom: 0;
- right: 0;
- left: 0;
- z-index: 2;
- pointer-events: none;
- }
- .tui-line__left::after {
- 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;
- }
- .tui-border__bottom {
- border-bottom-width: 0;
- }
- /* #endif */
- .tui-input__required {
- position: absolute;
- left: 12rpx;
- /* #ifndef APP-NVUE */
- height: 30rpx;
- top: 50%;
- transform: translateY(-50%);
- line-height: 1.15;
- /* #endif */
- /* #ifdef APP-NVUE */
- flex: 1;
- align-items: center;
- justify-content: center;
- line-height: 1;
- /* #endif */
- }
- .tui-input__label {
- padding-right: 12rpx;
- /* #ifndef APP-NVUE */
- flex-shrink: 0;
- /* #endif */
- }
- .tui-input__self {
- flex: 1;
- padding-right: 12rpx;
- /* #ifndef APP-NVUE */
- box-sizing: border-box;
- overflow: visible;
- /* #endif */
- background-color: transparent;
- }
- .tui-input__placeholder {
- /* #ifndef APP-NVUE */
- color: var(--thorui-text-color-placeholder, #ccc);
- overflow: visible;
- /* #endif */
- /* #ifdef APP-NVUE */
- color: #ccc;
- font-size: 32rpx;
- /* #endif */
- }
- /* #ifdef MP */
- ::v-deep .tui-input__placeholder {
- color: var(--thorui-text-color-placeholder, #ccc);
- overflow: visible;
- }
- /* #endif */
- .tui-input__border {
- border-radius: 4rpx;
- position: relative;
- /* #ifdef APP-NVUE */
- border-style: solid;
- border-width: 0.5px;
- border-color: #d1d1d1;
- /* #endif */
- /* #ifndef APP-NVUE */
- border-width: 0;
- /* #endif */
- }
- /* #ifndef APP-NVUE */
- .tui-input__border::after {
- content: ' ';
- position: absolute;
- height: 200%;
- width: 200%;
- border: 1px solid var(--thorui-border-color, #d1d1d1);
- transform-origin: 0 0;
- transform: scale(0.5);
- left: 0;
- top: 0;
- border-radius: 8rpx;
- pointer-events: none;
- }
- .tui-radius__fillet::after {
- border-radius: 100px !important;
- }
- /* #endif */
- .tui-radius__fillet {
- border-radius: 100px !important;
- }
- .tui-text__right {
- text-align: right;
- }
- </style>
|