Files
Neo-ZQYY/apps/miniprogram - 副本/miniprogram/components/banner/banner.ts

27 lines
506 B
TypeScript
Raw 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: {
/** Banner 主题色 */
theme: {
type: String,
value: 'blue',
},
/** Banner 标题 */
title: {
type: String,
value: '',
},
/** 指标列表 [{label, value}] */
metrics: {
type: Array,
value: [],
},
},
methods: {
/** 背景图加载失败时降级为纯渐变色CSS 已处理) */
onBgError() {
// 背景图加载失败CSS 渐变色自动降级,无需额外处理
},
},
})