WXL
6 天以前 871522ed7e06fd9c62a87c178d7f5c88d7853a20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import { defineMixin } from '../../libs/vue'
import defProps from '../../libs/config/props.js'
 
export const props = defineMixin({
    props: {
        // 显示的文字内容
        text: {
            type: [String, Number],
            default: ''
        },
        // 文字颜色
        color: {
            type: String,
            default: '#333'
        },
        // 背景颜色
        bgColor: {
            type: String,
            default: '#f7f7f7'
        },
        // 弹出框背景颜色
        popupBgColor: {
            type: String,
            default: '#f7f7f7'
        },
        // 弹出框位置
        placement: {
            type: String,
            default: 'top'
        },
        // 触发方式
        triggerMode: {
            type: String,
            default: 'click'
        },
        // 是否显示 (manual模式下使用)
        show: {
            type: Boolean,
            default: false
        },
        // z-index值
        zIndex: {
            type: [Number, String],
            default: 10070
        },
        // 强制定位
        forcePosition: {
            type: Object,
            default() {
                return {}
            }
        },
        // 弹出方向
        direction: {
            type: String,
            default: 'top'
        }
    }
})