赞
踩
{ {content}}
<view v-if=“cancelText” class=“btn” :style=“{color:cancelColor,background:cancelBackgroundColor}” @click.stop=“clickBtn(‘cancel’)”>{ {cancelText}}
<view class=“btn” :style=“{color:confirmColor,background:confirmBackgroundColor}” @click.stop=“clickBtn(‘confirm’)”>{ {confirmText}}
在app页面使用<show-modal></show-modal>
哪里需要弹窗时,加入这句代码:
this.$showModal({
title: ‘’,
content: ‘内容’,
cancelText:“取消”,//传入空值表示只显示确认按钮,此代码不能省略
confirmText:“确认”,
success(res) {
if (res.confirm) {
console.log(‘用户点击确定’)
} else if (res.cancel) {
console.log(‘用户点击取消’)
}
}
})
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。