Browse Source

反馈表单

master
parent
commit
388229b588
  1. 3
      pages.json
  2. 29
      sub/task/enforce.vue
  3. 412
      uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue

3
pages.json

@ -133,7 +133,8 @@
"van-action-sheet": "/wxcomponents/vant/action-sheet/index" "van-action-sheet": "/wxcomponents/vant/action-sheet/index"
}, },
"componentPlaceholder": { "componentPlaceholder": {
"u-modal": "view" "u-modal": "view",
"uni-easyinput": "view"
} }
} }
} }

29
sub/task/enforce.vue

@ -1,6 +1,6 @@
<template> <template>
<view class="view-container"> <view class="view-container">
<view class="box"> <view class="box wd-flex wd-flex-col" style="gap: 12px">
<view <view
class="wd-flex" class="wd-flex"
style="justify-content: space-between; align-items: center" style="justify-content: space-between; align-items: center"
@ -14,8 +14,30 @@
<uni-easyinput <uni-easyinput
type="textarea" type="textarea"
v-model="form.advice" v-model="form.advice"
placeholder="请输入内容" placeholder="请输入..."
:maxlength="500"
:autoHeight="true"
:styles="{
backgroundColor: '#F9F9F9',
borderColor: '#F1F1F4'
}"
></uni-easyinput> ></uni-easyinput>
<view
class="wd-flex"
style="justify-content: space-between; align-items: center"
>
<view style="font-weight: bold">
<text style="color: #f8285a; margin-right: 4px">*</text>
上传证明
</view>
</view>
<u-upload
:fileList="fileList1"
@afterRead="afterRead"
@delete="deletePic"
multiple
:maxCount="10"
></u-upload>
</view> </view>
<cs-bottom-wrapper> <cs-bottom-wrapper>
@ -81,4 +103,7 @@ export default {
} }
} }
} }
::v-deep .uni-easyinput__content-textarea {
min-height: 400rpx;
}
</style> </style>

412
uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue

@ -1,27 +1,150 @@
<template> <template>
<view class="uni-easyinput" :class="{ 'uni-easyinput-error': msg }" :style="boxStyle"> <view
<view class="uni-easyinput__content" :class="inputContentClass" :style="inputContentStyle"> class="uni-easyinput"
<uni-icons v-if="prefixIcon" class="content-clear-icon" :type="prefixIcon" color="#c0c4cc" @click="onClickIcon('prefix')" size="22"></uni-icons> :class="{ 'uni-easyinput-error': msg }"
<slot name="left"> :style="boxStyle"
</slot> >
<view
class="uni-easyinput__content"
:class="inputContentClass"
:style="inputContentStyle"
>
<uni-icons
v-if="prefixIcon"
class="content-clear-icon"
:type="prefixIcon"
color="#c0c4cc"
@click="onClickIcon('prefix')"
size="22"
></uni-icons>
<slot name="left"></slot>
<!-- #ifdef MP-ALIPAY --> <!-- #ifdef MP-ALIPAY -->
<textarea :enableNative="enableNative" v-if="type === 'textarea'" class="uni-easyinput__content-textarea" :class="{ 'input-padding': inputBorder }" :name="name" :value="val" :placeholder="placeholder" :placeholderStyle="placeholderStyle" :disabled="disabled" placeholder-class="uni-easyinput__placeholder-class" :maxlength="inputMaxlength" :focus="focused" :autoHeight="autoHeight" :cursor-spacing="cursorSpacing" :adjust-position="adjustPosition" @input="onInput" @blur="_Blur" @focus="_Focus" @confirm="onConfirm" @keyboardheightchange="onkeyboardheightchange"></textarea> <textarea
<input :enableNative="enableNative" v-else :type="type === 'password' ? 'text' : type" class="uni-easyinput__content-input" :style="inputStyle" :name="name" :value="val" :password="!showPassword && type === 'password'" :placeholder="placeholder" :placeholderStyle="placeholderStyle" placeholder-class="uni-easyinput__placeholder-class" :disabled="disabled" :maxlength="inputMaxlength" :focus="focused" :confirmType="confirmType" :cursor-spacing="cursorSpacing" :adjust-position="adjustPosition" @focus="_Focus" @blur="_Blur" @input="onInput" @confirm="onConfirm" @keyboardheightchange="onkeyboardheightchange" /> :enableNative="enableNative"
v-if="type === 'textarea'"
class="uni-easyinput__content-textarea"
:class="{ 'input-padding': inputBorder }"
:name="name"
:value="val"
:placeholder="placeholder"
:placeholderStyle="placeholderStyle"
:disabled="disabled"
placeholder-class="uni-easyinput__placeholder-class"
:maxlength="inputMaxlength"
:focus="focused"
:autoHeight="autoHeight"
:cursor-spacing="cursorSpacing"
:adjust-position="adjustPosition"
@input="onInput"
@blur="_Blur"
@focus="_Focus"
@confirm="onConfirm"
@keyboardheightchange="onkeyboardheightchange"
></textarea>
<input
:enableNative="enableNative"
v-else
:type="type === 'password' ? 'text' : type"
class="uni-easyinput__content-input"
:style="inputStyle"
:name="name"
:value="val"
:password="!showPassword && type === 'password'"
:placeholder="placeholder"
:placeholderStyle="placeholderStyle"
placeholder-class="uni-easyinput__placeholder-class"
:disabled="disabled"
:maxlength="inputMaxlength"
:focus="focused"
:confirmType="confirmType"
:cursor-spacing="cursorSpacing"
:adjust-position="adjustPosition"
@focus="_Focus"
@blur="_Blur"
@input="onInput"
@confirm="onConfirm"
@keyboardheightchange="onkeyboardheightchange"
/>
<!-- #endif --> <!-- #endif -->
<!-- #ifndef MP-ALIPAY --> <!-- #ifndef MP-ALIPAY -->
<textarea v-if="type === 'textarea'" class="uni-easyinput__content-textarea" :class="{ 'input-padding': inputBorder }" :name="name" :value="val" :placeholder="placeholder" :placeholderStyle="placeholderStyle" :disabled="disabled" placeholder-class="uni-easyinput__placeholder-class" :maxlength="inputMaxlength" :focus="focused" :autoHeight="autoHeight" :cursor-spacing="cursorSpacing" :adjust-position="adjustPosition" @input="onInput" @blur="_Blur" @focus="_Focus" @confirm="onConfirm" @keyboardheightchange="onkeyboardheightchange"></textarea> <textarea
<input v-else :type="type === 'password' ? 'text' : type" class="uni-easyinput__content-input" :style="inputStyle" :name="name" :value="val" :password="!showPassword && type === 'password'" :placeholder="placeholder" :placeholderStyle="placeholderStyle" placeholder-class="uni-easyinput__placeholder-class" :disabled="disabled" :maxlength="inputMaxlength" :focus="focused" :confirmType="confirmType" :cursor-spacing="cursorSpacing" :adjust-position="adjustPosition" @focus="_Focus" @blur="_Blur" @input="onInput" @confirm="onConfirm" @keyboardheightchange="onkeyboardheightchange" /> v-if="type === 'textarea'"
class="uni-easyinput__content-textarea"
:class="{ 'input-padding': inputBorder }"
:name="name"
:value="val"
:placeholder="placeholder"
:placeholderStyle="placeholderStyle"
:disabled="disabled"
placeholder-class="uni-easyinput__placeholder-class"
:maxlength="inputMaxlength"
:focus="focused"
:autoHeight="autoHeight"
:cursor-spacing="cursorSpacing"
:adjust-position="adjustPosition"
@input="onInput"
@blur="_Blur"
@focus="_Focus"
@confirm="onConfirm"
@keyboardheightchange="onkeyboardheightchange"
></textarea>
<input
v-else
:type="type === 'password' ? 'text' : type"
class="uni-easyinput__content-input"
:style="inputStyle"
:name="name"
:value="val"
:password="!showPassword && type === 'password'"
:placeholder="placeholder"
:placeholderStyle="placeholderStyle"
placeholder-class="uni-easyinput__placeholder-class"
:disabled="disabled"
:maxlength="inputMaxlength"
:focus="focused"
:confirmType="confirmType"
:cursor-spacing="cursorSpacing"
:adjust-position="adjustPosition"
@focus="_Focus"
@blur="_Blur"
@input="onInput"
@confirm="onConfirm"
@keyboardheightchange="onkeyboardheightchange"
/>
<!-- #endif --> <!-- #endif -->
<template v-if="type === 'password' && passwordIcon"> <template v-if="type === 'password' && passwordIcon">
<!-- 开启密码时显示小眼睛 --> <!-- 开启密码时显示小眼睛 -->
<uni-icons v-if="isVal" class="content-clear-icon" :class="{ 'is-textarea-icon': type === 'textarea' }" :type="showPassword ? 'eye-slash-filled' : 'eye-filled'" :size="22" :color="focusShow ? primaryColor : '#c0c4cc'" @click="onEyes"></uni-icons> <uni-icons
v-if="isVal"
class="content-clear-icon"
:class="{ 'is-textarea-icon': type === 'textarea' }"
:type="showPassword ? 'eye-slash-filled' : 'eye-filled'"
:size="22"
:color="focusShow ? primaryColor : '#c0c4cc'"
@click="onEyes"
></uni-icons>
</template> </template>
<template v-if="suffixIcon"> <template v-if="suffixIcon">
<uni-icons v-if="suffixIcon" class="content-clear-icon" :type="suffixIcon" color="#c0c4cc" @click="onClickIcon('suffix')" size="22"></uni-icons> <uni-icons
v-if="suffixIcon"
class="content-clear-icon"
:type="suffixIcon"
color="#c0c4cc"
@click="onClickIcon('suffix')"
size="22"
></uni-icons>
</template> </template>
<template v-else> <template v-else>
<uni-icons v-if="clearable && isVal && !disabled && type !== 'textarea'" class="content-clear-icon" :class="{ 'is-textarea-icon': type === 'textarea' }" type="clear" :size="clearSize" :color="msg ? '#dd524d' : focusShow ? primaryColor : '#c0c4cc'" @click="onClear"></uni-icons> <uni-icons
v-if="clearable && isVal && !disabled && type !== 'textarea'"
class="content-clear-icon"
:class="{ 'is-textarea-icon': type === 'textarea' }"
type="clear"
:size="clearSize"
:color="msg ? '#dd524d' : focusShow ? primaryColor : '#c0c4cc'"
@click="onClear"
></uni-icons>
</template> </template>
<slot name="right"></slot> <slot name="right"></slot>
</view> </view>
@ -29,7 +152,7 @@
</template> </template>
<script> <script>
/** /**
* Easyinput 输入框 * Easyinput 输入框
* @description 此组件可以实现表单的输入与校验包括 "text" "textarea" 类型 * @description 此组件可以实现表单的输入与校验包括 "text" "textarea" 类型
* @tutorial https://ext.dcloud.net.cn/plugin?id=3455 * @tutorial https://ext.dcloud.net.cn/plugin?id=3455
@ -73,26 +196,26 @@
* @event {Function} iconClick 点击图标时触发 * @event {Function} iconClick 点击图标时触发
* @example <uni-easyinput v-model="mobile"></uni-easyinput> * @example <uni-easyinput v-model="mobile"></uni-easyinput>
*/ */
function obj2strClass(obj) { function obj2strClass(obj) {
let classess = ''; let classess = ''
for (let key in obj) { for (let key in obj) {
const val = obj[key]; const val = obj[key]
if (val) { if (val) {
classess += `${key} `; classess += `${key} `
}
} }
return classess;
} }
return classess
}
function obj2strStyle(obj) { function obj2strStyle(obj) {
let style = ''; let style = ''
for (let key in obj) { for (let key in obj) {
const val = obj[key]; const val = obj[key]
style += `${key}:${val};`; style += `${key}:${val};`
}
return style;
} }
export default { return style
}
export default {
name: 'uni-easyinput', name: 'uni-easyinput',
emits: [ emits: [
'click', 'click',
@ -204,13 +327,13 @@
}, },
styles: { styles: {
type: Object, type: Object,
default () { default() {
return { return {
color: '#333', color: '#333',
backgroundColor: '#fff', backgroundColor: '#fff',
disableColor: '#F7F6F6', disableColor: '#F7F6F6',
borderColor: '#e5e5e5' borderColor: '#e5e5e5'
}; }
} }
}, },
errorMessage: { errorMessage: {
@ -236,17 +359,17 @@
focusShow: false, focusShow: false,
localMsg: '', localMsg: '',
isEnter: false // 使 isEnter: false // 使
}; }
}, },
computed: { computed: {
// //
isVal() { isVal() {
const val = this.val; const val = this.val
// fixed by mehaotian 00 // fixed by mehaotian 00
if (val || val === 0) { if (val || val === 0) {
return true; return true
} }
return false; return false
}, },
msg() { msg() {
@ -255,18 +378,18 @@
// return this.errorMessage || this.formItem.errMsg; // return this.errorMessage || this.formItem.errMsg;
// } // }
// TODO formItem errMsg // TODO formItem errMsg
return this.localMsg || this.errorMessage; return this.localMsg || this.errorMessage
}, },
// uniappinputmaxlength // uniappinputmaxlength
inputMaxlength() { inputMaxlength() {
return Number(this.maxlength); return Number(this.maxlength)
}, },
// style // style
boxStyle() { boxStyle() {
return `color:${ return `color:${
this.inputBorder && this.msg ? '#e43d33' : this.styles.color this.inputBorder && this.msg ? '#e43d33' : this.styles.color
};`; };`
}, },
// input // input
inputContentClass() { inputContentClass() {
@ -276,69 +399,70 @@
'is-textarea': this.type === 'textarea', 'is-textarea': this.type === 'textarea',
'is-disabled': this.disabled, 'is-disabled': this.disabled,
'is-focused': this.focusShow 'is-focused': this.focusShow
}); })
}, },
inputContentStyle() { inputContentStyle() {
const focusColor = this.focusShow ? const focusColor = this.focusShow
this.primaryColor : ? this.primaryColor
this.styles.borderColor; : this.styles.borderColor
const borderColor = const borderColor =
this.inputBorder && this.msg ? '#dd524d' : focusColor; this.inputBorder && this.msg ? '#dd524d' : focusColor
return obj2strStyle({ return obj2strStyle({
'border-color': borderColor || '#e5e5e5', 'border-color': borderColor || '#e5e5e5',
'background-color': this.disabled ? 'background-color': this.disabled
this.styles.disableColor : this.styles.backgroundColor ? this.styles.disableColor
}); : this.styles.backgroundColor
})
}, },
// input // input
inputStyle() { inputStyle() {
const paddingRight = const paddingRight =
this.type === 'password' || this.clearable || this.prefixIcon ? this.type === 'password' || this.clearable || this.prefixIcon
'' : ? ''
'10px'; : '10px'
return obj2strStyle({ return obj2strStyle({
'padding-right': paddingRight, 'padding-right': paddingRight,
'padding-left': this.prefixIcon ? '' : '10px' 'padding-left': this.prefixIcon ? '' : '10px'
}); })
} }
}, },
watch: { watch: {
value(newVal) { value(newVal) {
// fix by mehaotian nullinputbug // fix by mehaotian nullinputbug
if (newVal === null) { if (newVal === null) {
this.val = ''; this.val = ''
return return
} }
this.val = newVal; this.val = newVal
}, },
modelValue(newVal) { modelValue(newVal) {
if (newVal === null) { if (newVal === null) {
this.val = ''; this.val = ''
return return
} }
this.val = newVal; this.val = newVal
}, },
focus(newVal) { focus(newVal) {
this.$nextTick(() => { this.$nextTick(() => {
this.focused = this.focus; this.focused = this.focus
this.focusShow = this.focus; this.focusShow = this.focus
}); })
} }
}, },
created() { created() {
this.init(); this.init()
// TODO vue3 computed inject formItem.errMsg // TODO vue3 computed inject formItem.errMsg
if (this.form && this.formItem) { if (this.form && this.formItem) {
this.$watch('formItem.errMsg', newVal => { this.$watch('formItem.errMsg', newVal => {
this.localMsg = newVal; this.localMsg = newVal
}); })
} }
}, },
mounted() { mounted() {
this.$nextTick(() => { this.$nextTick(() => {
this.focused = this.focus; this.focused = this.focus
this.focusShow = this.focus; this.focusShow = this.focus
}); })
}, },
methods: { methods: {
/** /**
@ -346,16 +470,16 @@
*/ */
init() { init() {
if (this.value || this.value === 0) { if (this.value || this.value === 0) {
this.val = this.value; this.val = this.value
} else if ( } else if (
this.modelValue || this.modelValue ||
this.modelValue === 0 || this.modelValue === 0 ||
this.modelValue === '' this.modelValue === ''
) { ) {
this.val = this.modelValue; this.val = this.modelValue
} else { } else {
// fix by ht nullinput // fix by ht nullinput
this.val = ''; this.val = ''
} }
}, },
@ -364,15 +488,15 @@
* @param {Object} type * @param {Object} type
*/ */
onClickIcon(type) { onClickIcon(type) {
this.$emit('iconClick', type); this.$emit('iconClick', type)
}, },
/** /**
* 显示隐藏内容密码框时生效 * 显示隐藏内容密码框时生效
*/ */
onEyes() { onEyes() {
this.showPassword = !this.showPassword; this.showPassword = !this.showPassword
this.$emit('eyes', this.showPassword); this.$emit('eyes', this.showPassword)
}, },
/** /**
@ -380,22 +504,22 @@
* @param {Object} event * @param {Object} event
*/ */
onInput(event) { onInput(event) {
let value = event.detail.value; let value = event.detail.value
// //
if (this.trim) { if (this.trim) {
if (typeof this.trim === 'boolean' && this.trim) { if (typeof this.trim === 'boolean' && this.trim) {
value = this.trimStr(value); value = this.trimStr(value)
} }
if (typeof this.trim === 'string') { if (typeof this.trim === 'string') {
value = this.trimStr(value, this.trim); value = this.trimStr(value, this.trim)
} }
} }
if (this.errMsg) this.errMsg = ''; if (this.errMsg) this.errMsg = ''
this.val = value; this.val = value
// TODO vue2 // TODO vue2
this.$emit('input', value); this.$emit('input', value)
// TODO  vue3 // TODO  vue3
this.$emit('update:modelValue', value); this.$emit('update:modelValue', value)
}, },
/** /**
@ -405,14 +529,14 @@
*/ */
onFocus() { onFocus() {
this.$nextTick(() => { this.$nextTick(() => {
this.focused = true; this.focused = true
}); })
this.$emit('focus', null); this.$emit('focus', null)
}, },
_Focus(event) { _Focus(event) {
this.focusShow = true; this.focusShow = true
this.$emit('focus', event); this.$emit('focus', event)
}, },
/** /**
@ -421,22 +545,22 @@
* @param {Object} event * @param {Object} event
*/ */
onBlur() { onBlur() {
this.focused = false; this.focused = false
this.$emit('blur', null); this.$emit('blur', null)
}, },
_Blur(event) { _Blur(event) {
let value = event.detail.value; let value = event.detail.value
this.focusShow = false; this.focusShow = false
this.$emit('blur', event); this.$emit('blur', event)
// eventstring // eventstring
if (this.isEnter === false) { if (this.isEnter === false) {
this.$emit('change', this.val); this.$emit('change', this.val)
} }
// //
if (this.form && this.formItem) { if (this.form && this.formItem) {
const { validateTrigger } = this.form; const { validateTrigger } = this.form
if (validateTrigger === 'blur') { if (validateTrigger === 'blur') {
this.formItem.onFieldChange(); this.formItem.onFieldChange()
} }
} }
}, },
@ -446,12 +570,12 @@
* @param {Object} e * @param {Object} e
*/ */
onConfirm(e) { onConfirm(e) {
this.$emit('confirm', this.val); this.$emit('confirm', this.val)
this.isEnter = true; this.isEnter = true
this.$emit('change', this.val); this.$emit('change', this.val)
this.$nextTick(() => { this.$nextTick(() => {
this.isEnter = false; this.isEnter = false
}); })
}, },
/** /**
@ -459,14 +583,14 @@
* @param {Object} event * @param {Object} event
*/ */
onClear(event) { onClear(event) {
this.val = ''; this.val = ''
// TODO vue2 // TODO vue2
this.$emit('input', ''); this.$emit('input', '')
// TODO vue2 // TODO vue2
// TODO  vue3 // TODO  vue3
this.$emit('update:modelValue', ''); this.$emit('update:modelValue', '')
// //
this.$emit('clear'); this.$emit('clear')
}, },
/** /**
@ -475,7 +599,7 @@
* @param {Object} event * @param {Object} event
*/ */
onkeyboardheightchange(event) { onkeyboardheightchange(event) {
this.$emit('keyboardheightchange', event); this.$emit('keyboardheightchange', event)
}, },
/** /**
@ -483,31 +607,31 @@
*/ */
trimStr(str, pos = 'both') { trimStr(str, pos = 'both') {
if (pos === 'both') { if (pos === 'both') {
return str.trim(); return str.trim()
} else if (pos === 'left') { } else if (pos === 'left') {
return str.trimLeft(); return str.trimLeft()
} else if (pos === 'right') { } else if (pos === 'right') {
return str.trimRight(); return str.trimRight()
} else if (pos === 'start') { } else if (pos === 'start') {
return str.trimStart(); return str.trimStart()
} else if (pos === 'end') { } else if (pos === 'end') {
return str.trimEnd(); return str.trimEnd()
} else if (pos === 'all') { } else if (pos === 'all') {
return str.replace(/\s+/g, ''); return str.replace(/\s+/g, '')
} else if (pos === 'none') { } else if (pos === 'none') {
return str; return str
} }
return str; return str
} }
} }
}; }
</script> </script>
<style lang="scss"> <style lang="scss">
$uni-error: #e43d33; $uni-error: #e43d33;
$uni-border-1: #dcdfe6 !default; $uni-border-1: #dcdfe6 !default;
.uni-easyinput { .uni-easyinput {
/* #ifndef APP-NVUE */ /* #ifndef APP-NVUE */
width: 100%; width: 100%;
/* #endif */ /* #endif */
@ -516,9 +640,9 @@
text-align: left; text-align: left;
color: #333; color: #333;
font-size: 14px; font-size: 14px;
} }
.uni-easyinput__content { .uni-easyinput__content {
flex: 1; flex: 1;
/* #ifndef APP-NVUE */ /* #ifndef APP-NVUE */
width: 100%; width: 100%;
@ -532,9 +656,9 @@
border-color: #fff; border-color: #fff;
transition-property: border-color; transition-property: border-color;
transition-duration: 0.3s; transition-duration: 0.3s;
} }
.uni-easyinput__content-input { .uni-easyinput__content-input {
/* #ifndef APP-NVUE */ /* #ifndef APP-NVUE */
width: auto; width: auto;
/* #endif */ /* #endif */
@ -560,23 +684,23 @@
} }
/*endif*/ /*endif*/
} }
.uni-easyinput__placeholder-class { .uni-easyinput__placeholder-class {
color: #999; color: #999;
font-size: 12px; font-size: 12px;
// font-weight: 200; // font-weight: 200;
} }
.is-textarea { .is-textarea {
align-items: flex-start; align-items: flex-start;
} }
.is-textarea-icon { .is-textarea-icon {
margin-top: 5px; margin-top: 5px;
} }
.uni-easyinput__content-textarea { .uni-easyinput__content-textarea {
position: relative; position: relative;
overflow: hidden; overflow: hidden;
flex: 1; flex: 1;
@ -590,23 +714,23 @@
min-height: 80px; min-height: 80px;
width: auto; width: auto;
/* #endif */ /* #endif */
} }
.input-padding { .input-padding {
padding-left: 10px; padding-left: 10px;
} }
.content-clear-icon { .content-clear-icon {
padding: 0 5px; padding: 0 5px;
} }
.label-icon { .label-icon {
margin-right: 5px; margin-right: 5px;
margin-top: -1px; margin-top: -1px;
} }
// //
.is-input-border { .is-input-border {
/* #ifndef APP-NVUE */ /* #ifndef APP-NVUE */
display: flex; display: flex;
box-sizing: border-box; box-sizing: border-box;
@ -618,9 +742,9 @@
/* #ifdef MP-ALIPAY */ /* #ifdef MP-ALIPAY */
overflow: hidden; overflow: hidden;
/* #endif */ /* #endif */
} }
.uni-error-message { .uni-error-message {
position: absolute; position: absolute;
bottom: -17px; bottom: -17px;
left: 0; left: 0;
@ -628,43 +752,43 @@
color: $uni-error; color: $uni-error;
font-size: 12px; font-size: 12px;
text-align: left; text-align: left;
} }
.uni-error-msg--boeder { .uni-error-msg--boeder {
position: relative; position: relative;
bottom: 0; bottom: 0;
line-height: 22px; line-height: 22px;
} }
.is-input-error-border { .is-input-error-border {
border-color: $uni-error; border-color: $uni-error;
.uni-easyinput__placeholder-class { .uni-easyinput__placeholder-class {
color: mix(#fff, $uni-error, 50%); color: mix(#fff, $uni-error, 50%);
} }
} }
.uni-easyinput--border { .uni-easyinput--border {
margin-bottom: 0; margin-bottom: 0;
padding: 10px 15px; padding: 10px 15px;
// padding-bottom: 0; // padding-bottom: 0;
border-top: 1px #eee solid; border-top: 1px #eee solid;
} }
.uni-easyinput-error { .uni-easyinput-error {
padding-bottom: 0; padding-bottom: 0;
} }
.is-first-border { .is-first-border {
/* #ifndef APP-NVUE */ /* #ifndef APP-NVUE */
border: none; border: none;
/* #endif */ /* #endif */
/* #ifdef APP-NVUE */ /* #ifdef APP-NVUE */
border-width: 0; border-width: 0;
/* #endif */ /* #endif */
} }
.is-disabled { .is-disabled {
background-color: #f7f6f6; background-color: #f7f6f6;
color: #d5d5d5; color: #d5d5d5;
@ -672,5 +796,5 @@
color: #d5d5d5; color: #d5d5d5;
font-size: 12px; font-size: 12px;
} }
} }
</style> </style>
Loading…
Cancel
Save