uview-plus组件库全面升级更新,订单结算判断支付方式是否可用代码调整,公众号关注二维码修改

This commit is contained in:
2025-10-21 10:44:31 +08:00
parent 5d98b7efc2
commit 5f3a307fec
395 changed files with 31264 additions and 2477 deletions

View File

@@ -18,6 +18,11 @@ export const props = defineMixin({
type: Boolean,
default: () => defProps.tabbar.border
},
// 上方边框颜色
borderColor: {
type: String,
default: () => defProps.tabbar.borderColor
},
// 元素层级z-index
zIndex: {
type: [String, Number],
@@ -42,6 +47,11 @@ export const props = defineMixin({
placeholder: {
type: Boolean,
default: () => defProps.tabbar.placeholder
},
// 背景色
backgroundColor: {
type: String,
default: () => defProps.tabbar.backgroundColor
}
}
})

View File

@@ -17,6 +17,8 @@ export default {
activeColor: '#1989fa',
inactiveColor: '#7d7e80',
fixed: true,
placeholder: true
placeholder: true,
borderColor: '',
backgroundColor: ''
}
}

View File

@@ -42,6 +42,7 @@
* @property {String} inactiveColor 未选中标签的颜色(默认 '#7d7e80'
* @property {Boolean} fixed 是否固定在底部(默认 true
* @property {Boolean} placeholder fixed定位固定在底部时是否生成一个等高元素防止塌陷默认 true
* @property {String} backgroundColor 背景色(默认 '#ffffff'
* @property {Object} customStyle 定义需要用到的外部样式
*
* @example <u-tabbar :value="value2" :placeholder="false" @change="name => value2 = name" :fixed="false" :safeAreaInsetBottom="false"><u-tabbar-item text="首页" icon="home" dot ></u-tabbar-item></u-tabbar>
@@ -59,6 +60,12 @@
const style = {
zIndex: this.zIndex
}
if (this.borderColor) {
style.borderColor = this.borderColor + ' !important'
}
if (this.backgroundColor) {
style.backgroundColor = this.backgroundColor
}
// 合并来自父组件的customStyle样式
return deepMerge(style, addStyle(this.customStyle))
},
@@ -117,7 +124,6 @@
</script>
<style lang="scss" scoped>
@import "../../libs/css/components.scss";
.u-tabbar {
@include flex(column);