File tree 4 files changed +61
-76
lines changed
4 files changed +61
-76
lines changed Original file line number Diff line number Diff line change 1
- @import (reference ) " ../../_base/index.less" ;
1
+ @import (reference ) ' ../../_base/index.less' ;
2
2
.amd-tips-content-core {
3
- display : flex ;
3
+ display : flex ;
4
+ align-items : center ;
4
5
}
5
6
.amd-tips-title {
6
- overflow : hidden ;
7
- line-height : 1.4 ;
8
- text-overflow : ellipsis ;
9
- display : box;
10
- -webkit-line-clamp : 3 ;
11
- -webkit-box-orient : vertical ;
7
+ overflow : hidden ;
8
+ line-height : 1.4 ;
9
+ text-overflow : ellipsis ;
10
+ display : -webkit- box ;
11
+ -webkit-line-clamp : 3 ;
12
+ -webkit-box-orient : vertical ;
12
13
}
13
14
.amd-tips-content {
14
- .amd-button-content {
15
- font-size : 24 * @rpx ;
16
- height : 49 * @rpx ;
17
- }
15
+ .amd-button-content {
16
+ font-size : 24 * @rpx ;
17
+ height : 49 * @rpx ;
18
+ }
18
19
}
Original file line number Diff line number Diff line change 1
1
<view
2
- class =" amd-tips {{className ? className : ''}}"
2
+ class =" amd-tips {{className ? className : ''}} amd-tips-{{$id}} amd-tips-{{textType}} "
3
3
a : if =" {{_show}}" >
4
- <view class =" amd-tips-wrap" >
5
- <view class =" amd-tips-wrap-pseudo" >
6
- <view class =" amd-tips-wrap-pseudo-content" >
7
- <tips-item image =" {{image}}"
8
- buttonText =" {{buttonText}}"
9
- buttonPosition =" {{buttonPosition}}"
10
- showClose =" {{showClose}}"
11
- onButtonTap =" onButtonTap"
12
- onHideTips =" onHideTips"
13
- title =" {{title}}" >
14
- <slot />
15
- </tips-item >
16
- </view >
17
- <view class =" amd-tips-arrow amd-tips-arrow-{{arrowPosition}}"
18
- a : if =" {{arrowPosition}}" />
19
- </view >
20
- <!-- 为了实现背景半透明,箭头与背景叠加的而复制一份内容,通过定位实现 -->
21
- <view class =" amd-tips-wrap-real" >
22
- <tips-item image =" {{image}}"
4
+ <view class =" amd-tips-wrap {{}}" >
5
+ <view class =" amd-tips-wrap-content" >
6
+ <tips-item
7
+ image =" {{image}}"
23
8
buttonText =" {{buttonText}}"
24
9
buttonPosition =" {{buttonPosition}}"
25
10
showClose =" {{showClose}}"
26
11
onButtonTap =" onButtonTap"
27
12
onHideTips =" onHideTips"
28
- title =" {{title}}" >
29
- <slot />
30
- </tips-item >
13
+ title =" {{title}}" >
14
+ <slot />
15
+ </tips-item >
31
16
</view >
17
+ <view class =" amd-tips-arrow amd-tips-arrow-{{arrowPosition}}"
18
+ a : if =" {{arrowPosition}}" />
32
19
</view >
33
20
</view >
Original file line number Diff line number Diff line change 1
- @import (reference ) " ./variable.less" ;
1
+ @import (reference ) ' ./variable.less' ;
2
2
3
3
@tipsPrefix : amd- tips;
4
4
10
10
color : @color-text-base ;
11
11
border-radius : @corner-radius-lg ;
12
12
max-width : 702 * @rpx ;
13
- &-pseudo {
14
- opacity : 0.75 ;
15
- background : #000 ;
16
- border-radius : @corner-radius-lg ;
17
- z-index : 5 ;
18
- &-content {
19
- opacity : 0 ;
20
- display : flex ;
21
- align-items : center ;
22
- padding : @v-spacing-standard @h-spacing-large ;
23
- pointer-events : none ;
24
- }
25
- }
26
- &-real {
27
- position : absolute ;
28
- top : 0 ;
29
- left : 0 ;
30
- right : 0 ;
31
- bottom : 0 ;
13
+ background : rgba (0 , 0 , 0 , 0.75 );
14
+ &-content {
32
15
display : flex ;
33
16
align-items : center ;
34
- padding : 10 * @rpx @h-spacing-large ;
35
- border-radius : @corner-radius-lg ;
17
+ padding : @v-spacing-standard @h-spacing-large ;
18
+ }
19
+ }
20
+ &-single {
21
+ :not (.@{tipsPrefix} -content-bottom ) ~ .@{tipsPrefix} -close {
22
+ align-self : center ;
36
23
}
37
24
}
38
25
&-content {
50
37
box-sizing : content-box ;
51
38
margin-top : 6 * @rpx ;
52
39
margin-bottom : 6 * @rpx ;
40
+ flex-shrink : 0 ;
53
41
}
54
42
&-close {
55
43
align-self : flex-start ;
75
63
}
76
64
}
77
65
}
78
- &-title {
79
- display : flex ;
80
- flex : 1 ;
81
- align-items : center ;
82
- }
83
66
&-arrow {
84
67
position : absolute ;
85
68
width : 0 ;
Original file line number Diff line number Diff line change 1
1
import { TipsDefaultProps } from './props' ;
2
- import { log } from '../_util/console' ;
3
2
4
3
Component ( {
5
4
props : TipsDefaultProps ,
6
5
data : {
7
- _show : false
6
+ _show : false ,
7
+ textType : 'multi' ,
8
8
} ,
9
9
didMount ( ) {
10
10
this . setData ( {
11
- _show : this . props . visible
12
- } )
11
+ _show : this . props . visible ,
12
+ } ) ;
13
+ this . getTextType ( ) ;
13
14
} ,
14
15
didUpdate ( prevProps ) {
15
- if ( prevProps . visible !== this . props . visible ) {
16
+ if ( prevProps . visible !== this . props . visible ) {
16
17
this . setData ( {
17
- _show : this . props . visible
18
- } )
19
- if ( this . props . visible === false ) {
20
- this . beforeClose ( )
18
+ _show : this . props . visible ,
19
+ } ) ;
20
+ if ( this . props . visible === false ) {
21
+ this . beforeClose ( ) ;
21
22
}
22
23
}
24
+ if ( prevProps . title !== this . props . title ) {
25
+ this . getTextType ( ) ;
26
+ }
23
27
} ,
24
28
methods : {
29
+ getTextType ( ) {
30
+ my . createSelectorQuery ( )
31
+ . select ( `.amd-tips-${ this . $id } .amd-tips-title` )
32
+ . boundingClientRect ( )
33
+ . exec ( ( ret ) => {
34
+ if ( ret && ret [ 0 ] && ret [ 0 ] . height ) {
35
+ this . setData ( { textType : ret [ 0 ] . height < 30 ? 'single' : 'multi' } ) ;
36
+ }
37
+ } ) ;
38
+ } ,
25
39
onButtonTap ( ) {
26
40
const { onButtonTap } = this . props ;
27
41
if ( onButtonTap ) {
@@ -32,12 +46,12 @@ Component({
32
46
this . setData ( {
33
47
_show : t ,
34
48
} ) ;
35
- this . beforeClose ( )
49
+ this . beforeClose ( ) ;
36
50
} ,
37
- beforeClose ( ) {
38
- if ( typeof this . props . onClose === " function" ) {
39
- this . props . onClose ( )
51
+ beforeClose ( ) {
52
+ if ( typeof this . props . onClose === ' function' ) {
53
+ this . props . onClose ( ) ;
40
54
}
41
- }
55
+ } ,
42
56
} ,
43
57
} ) ;
You can’t perform that action at this time.
0 commit comments