core
    正在准备搜索索引...

    接口 ShowModalData

    模态弹框

    interface ShowModalData {
        cancelColor?: string;
        cancelText?: string;
        confirmColor?: string;
        confirmText?: string;
        content?: string;
        editable?: boolean;
        placeholderText?: string;
        showCancel?: boolean;
        title?: string;
    }
    索引

    属性

    cancelColor?: string

    取消按钮的文字颜色

    #000000
    
    cancelText?: string

    取消按钮的文字

    取消
    
    confirmColor?: string

    确定按钮的文字颜色

    #3CC51F
    
    confirmText?: string

    确定按钮的文字

    确定
    
    content?: string

    提示的内容

    editable?: boolean

    是否显示输入框

    placeholderText?: string

    显示输入框时的提示文本

    showCancel?: boolean

    是否显示取消按钮

    true
    
    title?: string

    提示的标题