feat: 引入uView Plus组件库,新增部分静态页面

This commit is contained in:
admin
2026-01-17 16:55:19 +08:00
parent 34c63780a8
commit 849647d3c9
562 changed files with 73370 additions and 121 deletions

View File

@@ -0,0 +1,59 @@
import { defineMixin } from '../../libs/vue'
import defProps from '../../libs/config/props.js'
export const props = defineMixin({
props: {
// 显示的文字内容
text: {
type: [String, Number],
default: ''
},
// 文字颜色
color: {
type: String,
default: '#333'
},
// 背景颜色
bgColor: {
type: String,
default: '#f7f7f7'
},
// 弹出框背景颜色
popupBgColor: {
type: String,
default: '#f7f7f7'
},
// 弹出框位置
placement: {
type: String,
default: 'top'
},
// 触发方式
triggerMode: {
type: String,
default: 'click'
},
// 是否显示 (manual模式下使用)
show: {
type: Boolean,
default: false
},
// z-index值
zIndex: {
type: [Number, String],
default: 10070
},
// 强制定位
forcePosition: {
type: Object,
default() {
return {}
}
},
// 弹出方向
direction: {
type: String,
default: 'top'
}
}
})