feat: 首次提交
This commit is contained in:
253
components/firstui/fui-form/fui-form.vue
Normal file
253
components/firstui/fui-form/fui-form.vue
Normal file
@ -0,0 +1,253 @@
|
||||
<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司(手机号: 186 1 4 0 7 2549,身份证尾号:5A07X5)专用,请尊重知识产权,勿私下传播,违者追究法律责任。-->
|
||||
<template>
|
||||
<view class="fui-form__wrap"
|
||||
:style="{paddingTop:padding[0] || 0,paddingRight:padding[1] || 0,paddingBottom:padding[2] || padding[0] || 0,paddingLeft:padding[3] || padding[1] || 0}">
|
||||
<slot></slot>
|
||||
<view class="fui-form__msg-wrap"
|
||||
:style="{top:top+'px',left:left+'rpx',right:right+'rpx',background:getBgColor,borderRadius:radius+'rpx'}"
|
||||
v-if="show" :class="{'fui-form__msg-bg':!getBgColor,'fui-form__msg-show':errorMsg}"><text
|
||||
class="fui-form__text" :style="{fontSize:size+'rpx',color:color}">{{errorMsg}}</text></view>
|
||||
<view class="fui-form__mask" v-if="disabled"></view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import form from './fui-validator.js'
|
||||
export default {
|
||||
name: "fui-form",
|
||||
props: {
|
||||
//表单padding值(上,右,下,左),同css顺序
|
||||
padding: {
|
||||
type: Array,
|
||||
default () {
|
||||
return []
|
||||
}
|
||||
},
|
||||
//是否显示校验错误信息
|
||||
show: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
//是否禁用该表单内的所有组件,透明遮罩层
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
//提示框top值 px
|
||||
top: {
|
||||
type: [Number, String],
|
||||
// #ifdef H5
|
||||
default: 44
|
||||
// #endif
|
||||
// #ifndef H5
|
||||
default: 0
|
||||
// #endif
|
||||
},
|
||||
left: {
|
||||
type: [Number, String],
|
||||
default: 24
|
||||
},
|
||||
right: {
|
||||
type: [Number, String],
|
||||
default: 24
|
||||
},
|
||||
//错误提示框背景色
|
||||
background: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
//错误提示字体大小
|
||||
size: {
|
||||
type: [Number, String],
|
||||
default: 28
|
||||
},
|
||||
//错误提示字体颜色
|
||||
color: {
|
||||
type: String,
|
||||
default: '#fff'
|
||||
},
|
||||
//错误提示框圆角值
|
||||
radius: {
|
||||
type: [Number, String],
|
||||
default: 16
|
||||
},
|
||||
//错误消息显示时间 ms
|
||||
duration: {
|
||||
type: Number,
|
||||
default: 2000
|
||||
},
|
||||
//form-item标题字体大小 默认使用全局设置值
|
||||
labelSize: {
|
||||
type: [Number, String],
|
||||
default: 0
|
||||
},
|
||||
labelColor: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
//form-item label宽度,单位rpx 默认使用全局设置值
|
||||
labelWidth: {
|
||||
type: [Number, String],
|
||||
default: 0
|
||||
},
|
||||
//label 对齐方式:left,right
|
||||
labelAlign: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
labelWeight: {
|
||||
type: [Number, String],
|
||||
default: 0
|
||||
},
|
||||
// form-item 必填项星号颜色
|
||||
asteriskColor: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
//left,right
|
||||
asteriskPosition: {
|
||||
type: String,
|
||||
default: ''
|
||||
}
|
||||
},
|
||||
provide() {
|
||||
return {
|
||||
form: this
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
getBgColor() {
|
||||
let color = this.background;
|
||||
// #ifdef APP-NVUE
|
||||
if (!color || color === true) {
|
||||
const app = uni && uni.$fui && uni.$fui.color;
|
||||
color = (app && app.danger) || '#FF2B2B';
|
||||
}
|
||||
// #endif
|
||||
return color;
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
errorMsg: '',
|
||||
timer: null
|
||||
};
|
||||
},
|
||||
// #ifndef VUE3
|
||||
beforeDestroy() {
|
||||
this.clearTimer()
|
||||
},
|
||||
// #endif
|
||||
// #ifdef VUE3
|
||||
beforeUnmount() {
|
||||
this.clearTimer()
|
||||
},
|
||||
// #endif
|
||||
methods: {
|
||||
clearTimer() {
|
||||
clearTimeout(this.timer)
|
||||
this.timer = null;
|
||||
},
|
||||
/*
|
||||
@param model 表单数据对象
|
||||
@param rules 表单验证规则
|
||||
@param checkAll 校验所有元素
|
||||
*/
|
||||
validator(model, rules, checkAll = false) {
|
||||
return new Promise((resolve, reject) => {
|
||||
try {
|
||||
let res = form.validator(model, rules, checkAll);
|
||||
if (!res.isPassed && this.show) {
|
||||
this.clearTimer()
|
||||
let errors = res.errorMsg;
|
||||
if (checkAll) {
|
||||
errors = errors[0].msg
|
||||
}
|
||||
this.errorMsg = errors;
|
||||
this.timer = setTimeout(() => {
|
||||
this.errorMsg = ''
|
||||
}, this.duration)
|
||||
}
|
||||
resolve(res)
|
||||
} catch (e) {
|
||||
reject({
|
||||
isPassed: false,
|
||||
errorMsg: '校验出错,请检查传入的数据格式是否有误!'
|
||||
})
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.fui-form__wrap {
|
||||
/* #ifndef APP-NVUE */
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
/* #endif */
|
||||
flex: 1;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.fui-form__msg-wrap {
|
||||
padding: 24rpx;
|
||||
position: fixed;
|
||||
z-index: 900;
|
||||
text-align: center;
|
||||
/* #ifndef APP-NVUE */
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
word-break: break-all;
|
||||
/* #endif */
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
opacity: 0;
|
||||
|
||||
/* #ifdef APP-NVUE */
|
||||
transform: translateY(-100%);
|
||||
transition-property: transform, opacity;
|
||||
/* #endif */
|
||||
/* #ifndef APP-NVUE */
|
||||
transform: translate3d(0, -100%, 0);
|
||||
visibility: hidden;
|
||||
transition-property: all;
|
||||
/* #endif */
|
||||
transition-duration: 0.25s;
|
||||
transition-delay: 0s;
|
||||
transition-timing-function: ease-in-out;
|
||||
}
|
||||
|
||||
/* #ifndef APP-NVUE */
|
||||
.fui-form__msg-bg {
|
||||
background: var(--fui-color-danger, #FF2B2B) !important;
|
||||
}
|
||||
|
||||
/* #endif */
|
||||
|
||||
.fui-form__text {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.fui-form__msg-show {
|
||||
/* #ifndef APP-NVUE */
|
||||
visibility: visible;
|
||||
transform: translate3d(0, 0, 0);
|
||||
/* #endif */
|
||||
/* #ifdef APP-NVUE */
|
||||
transform: translateY(0);
|
||||
/* #endif */
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.fui-form__mask {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: rgba(0, 0, 0, 0);
|
||||
z-index: 99;
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user