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
| export default {
| props: {
| // 是否虚线
| dashed: {
| type: Boolean,
| default: false
| },
| // 是否细线
| hairline: {
| type: Boolean,
| default: true
| },
| // 是否以点替代文字,优先于text字段起作用
| dot: {
| type: Boolean,
| default: false
| },
| // 内容文本的位置,left-左边,center-中间,right-右边
| textPosition: {
| type: String,
| default: 'center'
| },
| // 文本内容
| text: {
| type: [String, Number],
| default: ''
| },
| // 文本大小
| textSize: {
| type: [String, Number],
| default: 14
| },
| // 文本颜色
| textColor: {
| type: String,
| default: '#909399'
| },
| // 线条颜色
| lineColor: {
| type: String,
| default: '#dcdfe6'
| },
| ...uni.$uv?.props?.divider
| }
| }
|
|