更新打包配置

This commit is contained in:
2025-12-16 09:13:50 +08:00
parent bd84809d02
commit 0bc7e24de6
542 changed files with 80435 additions and 80435 deletions
@@ -1,22 +1,22 @@
/*
* @Author : LQ
* @Description :
* @version : 1.0
* @Date : 2021-08-20 16:44:21
* @LastAuthor : LQ
* @lastTime : 2021-08-20 17:03:49
* @FilePath : /u-view2.0/uview-ui/libs/config/props/form.js
*/
export default {
// form 组件
form: {
model: {},
rules: {},
errorType: 'message',
borderBottom: true,
labelPosition: 'left',
labelWidth: 45,
labelAlign: 'left',
labelStyle: {}
}
}
/*
* @Author : LQ
* @Description :
* @version : 1.0
* @Date : 2021-08-20 16:44:21
* @LastAuthor : LQ
* @lastTime : 2021-08-20 17:03:49
* @FilePath : /u-view2.0/uview-ui/libs/config/props/form.js
*/
export default {
// form 组件
form: {
model: {},
rules: {},
errorType: 'message',
borderBottom: true,
labelPosition: 'left',
labelWidth: 45,
labelAlign: 'left',
labelStyle: {}
}
}
@@ -1,47 +1,47 @@
import { defineMixin } from '../../libs/vue'
import defProps from '../../libs/config/props.js'
export const props = defineMixin({
props: {
// 当前form的需要验证字段的集合
model: {
type: Object,
default: () => defProps.form.model
},
// 验证规则
rules: {
type: [Object, Function, Array],
default: () => defProps.form.rules
},
// 有错误时的提示方式,message-提示信息,toast-进行toast提示
// border-bottom-下边框呈现红色,none-无提示
errorType: {
type: String,
default: () => defProps.form.errorType
},
// 是否显示表单域的下划线边框
borderBottom: {
type: Boolean,
default: () => defProps.form.borderBottom
},
// label的位置,left-左边,top-上边
labelPosition: {
type: String,
default: () => defProps.form.labelPosition
},
// label的宽度,单位px
labelWidth: {
type: [String, Number],
default: () => defProps.form.labelWidth
},
// lable字体的对齐方式
labelAlign: {
type: String,
default: () => defProps.form.labelAlign
},
// lable的样式,对象形式
labelStyle: {
type: Object,
default: () => defProps.form.labelStyle
}
}
})
import { defineMixin } from '../../libs/vue'
import defProps from '../../libs/config/props.js'
export const props = defineMixin({
props: {
// 当前form的需要验证字段的集合
model: {
type: Object,
default: () => defProps.form.model
},
// 验证规则
rules: {
type: [Object, Function, Array],
default: () => defProps.form.rules
},
// 有错误时的提示方式,message-提示信息,toast-进行toast提示
// border-bottom-下边框呈现红色,none-无提示
errorType: {
type: String,
default: () => defProps.form.errorType
},
// 是否显示表单域的下划线边框
borderBottom: {
type: Boolean,
default: () => defProps.form.borderBottom
},
// label的位置,left-左边,top-上边
labelPosition: {
type: String,
default: () => defProps.form.labelPosition
},
// label的宽度,单位px
labelWidth: {
type: [String, Number],
default: () => defProps.form.labelWidth
},
// lable字体的对齐方式
labelAlign: {
type: String,
default: () => defProps.form.labelAlign
},
// lable的样式,对象形式
labelStyle: {
type: Object,
default: () => defProps.form.labelStyle
}
}
})