feat(Popup): add close-icon-position prop (#2064)

This commit is contained in:
neverland 2019-09-19 17:47:16 +08:00 committed by GitHub
parent a6fea1bc6f
commit 7724700650
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 72 additions and 25 deletions

View File

@ -10,7 +10,8 @@ Page({
right: false, right: false,
round: false, round: false,
closeIcon: false, closeIcon: false,
customCloseIcon: false customCloseIcon: false,
customIconPosition: false
} }
}, },
@ -82,5 +83,13 @@ Page({
hideCustomCloseIcon() { hideCustomCloseIcon() {
this.toggle('customCloseIcon', false); this.toggle('customCloseIcon', false);
},
showCustomIconPosition() {
this.toggle('customIconPosition', true);
},
hideCustomIconPosition() {
this.toggle('customIconPosition', false);
} }
}); });

View File

@ -1,5 +1,5 @@
<demo-block title="基础用法" padding> <demo-block title="基础用法">
<van-button type="primary" bind:click="showBasic">展示弹出层</van-button> <van-cell title="展示弹出层" is-link bind:click="showBasic" />
<van-popup <van-popup
show="{{ show.basic }}" show="{{ show.basic }}"
custom-style="padding: 30px 50px" custom-style="padding: 30px 50px"
@ -9,14 +9,11 @@
</van-popup> </van-popup>
</demo-block> </demo-block>
<demo-block title="弹出位置" padding> <demo-block title="弹出位置">
<view style="margin-bottom: 15px"> <van-cell title="顶部弹出" is-link bind:click="showTop" />
<van-button type="primary" bind:click="showTop" class="demo-margin-right">顶部弹出</van-button> <van-cell title="底部弹出" is-link bind:click="showBottom" />
<van-button type="primary" bind:click="showBottom">底部弹出</van-button> <van-cell title="左侧弹出" is-link bind:click="showLeft" />
</view> <van-cell title="右侧弹出" is-link bind:click="showRight" />
<van-button type="primary" bind:click="showLeft" class="demo-margin-right">左侧弹出</van-button>
<van-button type="primary" bind:click="showRight">右侧弹出</van-button>
<van-popup <van-popup
show="{{ show.top }}" show="{{ show.top }}"
@ -44,8 +41,10 @@
/> />
</demo-block> </demo-block>
<demo-block title="关闭图标" padding> <demo-block title="关闭图标">
<van-button type="primary" class="demo-margin-right" bind:click="showCloseIcon">关闭图标</van-button> <van-cell title="关闭图标" is-link bind:click="showCloseIcon" />
<van-cell title="自定义图标" is-link bind:click="showCustomCloseIcon" />
<van-cell title="图标位置" is-link bind:click="showCustomIconPosition" />
<van-popup <van-popup
show="{{ show.closeIcon }}" show="{{ show.closeIcon }}"
@ -55,8 +54,6 @@
bind:close="hideCloseIcon" bind:close="hideCloseIcon"
/> />
<van-button type="primary" bind:click="showCustomCloseIcon">自定义图标</van-button>
<van-popup <van-popup
show="{{ show.customCloseIcon }}" show="{{ show.customCloseIcon }}"
closeable closeable
@ -65,10 +62,19 @@
custom-style="height: 20%" custom-style="height: 20%"
bind:close="hideCustomCloseIcon" bind:close="hideCustomCloseIcon"
/> />
<van-popup
show="{{ show.customIconPosition }}"
closeable
close-icon-position="top-left"
position="bottom"
custom-style="height: 20%"
bind:close="hideCustomIconPosition"
/>
</demo-block> </demo-block>
<demo-block title="圆角弹窗" padding> <demo-block title="圆角弹窗">
<van-button type="primary" bind:click="showRound">圆角弹窗</van-button> <van-cell title="圆角弹窗" is-link bind:click="showRound" />
<van-popup <van-popup
show="{{ show.round }}" show="{{ show.round }}"

View File

@ -52,21 +52,21 @@ Page({
<van-popup <van-popup
show="{{ show }}" show="{{ show }}"
position="top" position="top"
style="height: 20%;" custom-style="height: 20%;"
bind:close="onClose" bind:close="onClose"
/> />
``` ```
### 关闭图标 ### 关闭图标
设置`closeable`属性后,会在弹出层的右上角显示关闭图标,并且可以通过`close-icon`属性自定义图标 设置`closeable`属性后,会在弹出层的右上角显示关闭图标,并且可以通过`close-icon`属性自定义图标,使用`close-icon-position`属性可以自定义图标位置
```html ```html
<van-popup <van-popup
show="{{ show }}" show="{{ show }}"
closeable closeable
position="bottom" position="bottom"
:style="{ height: '20%' }" custom-style="height: 20%"
bind:close="onClose" bind:close="onClose"
/> />
@ -76,7 +76,17 @@ Page({
closeable closeable
close-icon="close" close-icon="close"
position="bottom" position="bottom"
:style="{ height: '20%' }" custom-style="height: 20%"
bind:close="onClose"
/>
<!-- 图标位置 -->
<van-popup
show="{{ show }}"
closeable
close-icon-position="top-left"
position="bottom"
custom-style="height: 20%"
bind:close="onClose" bind:close="onClose"
/> />
``` ```
@ -90,7 +100,7 @@ Page({
show="{{ show }}" show="{{ show }}"
round round
position="bottom" position="bottom"
:style="{ height: '20%' }" custom-style="height: 20%"
bind:close="onClose" bind:close="onClose"
/> />
``` ```

View File

@ -89,12 +89,30 @@
&__close-icon { &__close-icon {
position: absolute; position: absolute;
.theme(top, '@popup-close-icon-margin');
.theme(right, '@popup-close-icon-margin');
.theme(z-index, '@popup-close-icon-z-index'); .theme(z-index, '@popup-close-icon-z-index');
.theme(color, '@popup-close-icon-color'); .theme(color, '@popup-close-icon-color');
.theme(font-size, '@popup-close-icon-size'); .theme(font-size, '@popup-close-icon-size');
&--top-left {
.theme(top, '@popup-close-icon-margin');
.theme(left, '@popup-close-icon-margin');
}
&--top-right {
.theme(top, '@popup-close-icon-margin');
.theme(right, '@popup-close-icon-margin');
}
&--bottom-left {
.theme(bottom, '@popup-close-icon-margin');
.theme(left, '@popup-close-icon-margin');
}
&--bottom-right {
.theme(right, '@popup-close-icon-margin');
.theme(bottom, '@popup-close-icon-margin');
}
&:active { &:active {
opacity: 0.6; opacity: 0.6;
} }

View File

@ -35,6 +35,10 @@ VantComponent({
type: String, type: String,
value: 'cross' value: 'cross'
}, },
closeIconPosition: {
type: String,
value: 'top-right'
},
closeOnClickOverlay: { closeOnClickOverlay: {
type: Boolean, type: Boolean,
value: true value: true

View File

@ -18,7 +18,7 @@
<van-icon <van-icon
wx:if="{{ closeable }}" wx:if="{{ closeable }}"
name="{{ closeIcon }}" name="{{ closeIcon }}"
class="van-popup__close-icon" class="van-popup__close-icon van-popup__close-icon--{{ closeIconPosition }}"
bind:tap="onClickCloseIcon" bind:tap="onClickCloseIcon"
/> />
</view> </view>