[bugfix] Dialog: 修复使用dialog组件的页面切换路由时报错 @rex-zsd (#310)

#289
This commit is contained in:
rex 2018-06-19 19:50:59 +08:00 committed by Yao
parent c05710acd5
commit 7363194b1e

View File

@ -1,12 +1,32 @@
const defaultData = require('./data');
const _f = function () {};
Component({
properties: {},
data: {
...defaultData,
// 标题
title: '',
// 自定义 btn 列表
// { type: 按钮类型回调时以此作为区分依据text: 按钮文案, color: 按钮文字颜色 }
buttons: [],
// 内容
message: ' ',
// 选择节点
selector: '#zan-dialog',
// 按钮是否展示为纵向
buttonsShowVertical: false,
// 是否展示确定
showConfirmButton: true,
// 确认按钮文案
confirmButtonText: '确定',
// 确认按钮颜色
confirmButtonColor: '#3CC51F',
// 是否展示取消
showCancelButton: false,
// 取消按钮文案
cancelButtonText: '取消',
// 取消按钮颜色
cancelButtonColor: '#333',
key: '',
show: false,
showCustomBtns: false,