[bugfix] Notify: fix text (#531)

This commit is contained in:
neverland 2018-09-07 16:26:50 +08:00 committed by GitHub
parent 172f97cdd5
commit e76daf35a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 8 deletions

View File

@ -5,8 +5,8 @@ const defaultOptions = {
duration: 3000
};
function parseOptions(message) {
return isObj(message) ? message : { message };
function parseOptions(text) {
return isObj(text) ? text : { text };
}
export default function Notify(options = {}) {

View File

@ -44,7 +44,8 @@ create({
// 当一个导航被点击时
onClickNav(event) {
this.$emit('click-nav', event.currentTarget.dataset.index);
const { index } = event.currentTarget.dataset;
this.$emit('click-nav', { index });
},
// 更新子项列表

View File

@ -5,8 +5,8 @@ const defaultOptions = {
duration: 3000
};
function parseOptions(message) {
return isObj(message) ? message : { message };
function parseOptions(text) {
return isObj(text) ? text : { text };
}
export default function Notify(options = {}) {

View File

@ -53,8 +53,8 @@ Page({
| 事件名称 | 说明 | 回调参数 |
|-----------|-----------|-----------|
| bind:click-nav | 左侧导航点击时,触发的事件 | index被点击的导航的索引 |
| bind:click-item | 右侧选择项被点击时,会触发的事件 | data: 该点击项的数据 |
| bind:click-nav | 左侧导航点击时,触发的事件 | event.detail.index被点击的导航的索引 |
| bind:click-item | 右侧选择项被点击时,会触发的事件 | event.detail: 该点击项的数据 |
### 数据格式
#### items 分类显示所需数据的数据结构

View File

@ -44,7 +44,8 @@ create({
// 当一个导航被点击时
onClickNav(event) {
this.$emit('click-nav', event.currentTarget.dataset.index);
const { index } = event.currentTarget.dataset;
this.$emit('click-nav', { index });
},
// 更新子项列表