mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[improvement] Dialog: 内容区支持换行展示
This commit is contained in:
parent
53a75db35c
commit
15ecc4120a
@ -4,7 +4,7 @@ Page(Object.assign({}, Zan.Dialog, {
|
||||
toggleBaseDialog() {
|
||||
this.showZanDialog({
|
||||
title: '弹窗',
|
||||
content: '这是一个模态弹窗',
|
||||
content: '这是一个模态弹窗\n换行',
|
||||
showCancel: true
|
||||
}).then(() => {
|
||||
console.log('=== dialog ===', 'type: confirm');
|
||||
|
@ -4,11 +4,16 @@
|
||||
<view class="zan-dialog--container">
|
||||
<view
|
||||
wx:if="{{ zanDialog.title }}"
|
||||
class="zan-dialog__header">{{ zanDialog.title }}</view>
|
||||
class="zan-dialog__header"
|
||||
>{{ zanDialog.title }}</view>
|
||||
<view
|
||||
class="zan-dialog__content {{ zanDialog.title ? 'zan-dialog__content--title' : '' }}">{{ zanDialog.content }}</view>
|
||||
class="zan-dialog__content {{ zanDialog.title ? 'zan-dialog__content--title' : '' }}"
|
||||
>
|
||||
<text>{{ zanDialog.content }}</text>
|
||||
</view>
|
||||
<view
|
||||
class="zan-dialog__footer {{ zanDialog.buttonsShowVertical ? 'zan-dialog__footer--vertical' : 'zan-dialog__footer--horizon' }}">
|
||||
class="zan-dialog__footer {{ zanDialog.buttonsShowVertical ? 'zan-dialog__footer--vertical' : 'zan-dialog__footer--horizon' }}"
|
||||
>
|
||||
<block wx:for="{{ zanDialog.buttons }}" wx:key="{{ item.text }}-{{ item.type }}">
|
||||
<button
|
||||
class="zan-dialog__button zan-btn"
|
||||
|
Loading…
x
Reference in New Issue
Block a user