mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[bugfix] Notify: fix text (#531)
This commit is contained in:
parent
172f97cdd5
commit
e76daf35a1
4
dist/notify/notify.js
vendored
4
dist/notify/notify.js
vendored
@ -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 = {}) {
|
||||
|
3
dist/tree-select/index.js
vendored
3
dist/tree-select/index.js
vendored
@ -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 });
|
||||
},
|
||||
|
||||
// 更新子项列表
|
||||
|
@ -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 = {}) {
|
||||
|
@ -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 分类显示所需数据的数据结构
|
||||
|
@ -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 });
|
||||
},
|
||||
|
||||
// 更新子项列表
|
||||
|
Loading…
x
Reference in New Issue
Block a user