feat: 首次提交

This commit is contained in:
peerless_hero
2023-08-17 21:28:49 +08:00
parent 36f80fb971
commit ec1e5e16cd
571 changed files with 95322 additions and 0 deletions

View 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 对齐方式leftright
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>