mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
build: compile 1.0.0
This commit is contained in:
parent
4210edae6d
commit
e5496ae832
7
dist/notify/notify.d.ts
vendored
7
dist/notify/notify.d.ts
vendored
@ -12,5 +12,8 @@ interface NotifyOptions {
|
||||
onOpened?: () => void;
|
||||
onClose?: () => void;
|
||||
}
|
||||
export default function Notify(options: NotifyOptions | string): void;
|
||||
export {};
|
||||
declare function Notify(options: NotifyOptions | string): any;
|
||||
declare namespace Notify {
|
||||
var clear: (options?: NotifyOptions) => void;
|
||||
}
|
||||
export default Notify;
|
||||
|
11
dist/notify/notify.js
vendored
11
dist/notify/notify.js
vendored
@ -27,8 +27,15 @@ export default function Notify(options) {
|
||||
if (notify) {
|
||||
notify.set(options);
|
||||
notify.show();
|
||||
return notify;
|
||||
}
|
||||
else {
|
||||
console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确');
|
||||
}
|
||||
}
|
||||
Notify.clear = function (options) {
|
||||
options = Object.assign({}, defaultOptions, parseOptions(options));
|
||||
const context = options.context || getContext();
|
||||
const notify = context.selectComponent(options.selector);
|
||||
if (notify) {
|
||||
notify.hide();
|
||||
}
|
||||
};
|
||||
|
@ -29,9 +29,16 @@ function Notify(options) {
|
||||
if (notify) {
|
||||
notify.set(options);
|
||||
notify.show();
|
||||
return notify;
|
||||
}
|
||||
else {
|
||||
console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确');
|
||||
}
|
||||
}
|
||||
exports.default = Notify;
|
||||
Notify.clear = function (options) {
|
||||
options = Object.assign({}, defaultOptions, parseOptions(options));
|
||||
var context = options.context || getContext();
|
||||
var notify = context.selectComponent(options.selector);
|
||||
if (notify) {
|
||||
notify.hide();
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user