Files
2026-02-07 23:14:57 +08:00

51 lines
961 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
Component({
properties: {
//urlopenTypedelta textcolorsize
//链接设置 object数据格式对应上面注释的属性值
navigate: {
type: Array,
value: []
},
//底部文本
text: {
type: String,
value: ''
},
//文本字体颜色
color: {
type: String,
value: "#B2B2B2"
},
//文本字体大小
size: {
type: Number,
optionalTypes: [String],
value: 24
},
//footer背景颜色
background: {
type: String,
value: "transparent"
},
//分隔线颜色仅nvue生效
borderColor: {
type: String,
value: '#B2B2B2'
},
//是否固定在底部
isFixed: {
type: Boolean,
value: false
},
bottom: {
type: String,
optionalTypes:[Number],
value: 0
},
//是否适配底部安全区
safeArea: {
type: Boolean,
value: true
}
}
})