bug
jiangping
2023-11-07 64b432916af9c9218ab3f3eca614e26c542142ae
minipro_standard/uni_modules/uview-ui/components/u-alert/props.js
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,44 @@
export default {
    props: {
        // æ˜¾ç¤ºæ–‡å­—
        title: {
            type: String,
            default: uni.$u.props.alert.title
        },
        // ä¸»é¢˜ï¼Œsuccess/warning/info/error
        type: {
            type: String,
            default: uni.$u.props.alert.type
        },
        // è¾…助性文字
        description: {
            type: String,
            default: uni.$u.props.alert.description
        },
        // æ˜¯å¦å¯å…³é—­
        closable: {
            type: Boolean,
            default: uni.$u.props.alert.closable
        },
        // æ˜¯å¦æ˜¾ç¤ºå›¾æ ‡
        showIcon: {
            type: Boolean,
            default: uni.$u.props.alert.showIcon
        },
        // æµ…或深色调,light-浅色,dark-深色
        effect: {
            type: String,
            default: uni.$u.props.alert.effect
        },
        // æ–‡å­—是否居中
        center: {
            type: Boolean,
            default: uni.$u.props.alert.center
        },
        // å­—体大小
        fontSize: {
            type: [String, Number],
            default: uni.$u.props.alert.fontSize
        }
    }
}