mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
47 lines
746 B
JavaScript
47 lines
746 B
JavaScript
import { create } from '../common/create';
|
|
import Notify from './notify';
|
|
|
|
create({
|
|
props: {
|
|
text: String,
|
|
color: {
|
|
type: String,
|
|
value: '#fff'
|
|
},
|
|
backgroundColor: {
|
|
type: String,
|
|
value: '#e64340'
|
|
},
|
|
duration: {
|
|
type: Number,
|
|
value: 3000
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
show() {
|
|
const { duration } = this.data;
|
|
|
|
clearTimeout(this.timer);
|
|
this.setData({
|
|
show: true
|
|
});
|
|
|
|
if (duration > 0 && duration !== Infinity) {
|
|
this.timer = setTimeout(() => {
|
|
this.hide();
|
|
}, duration);
|
|
}
|
|
},
|
|
|
|
hide() {
|
|
clearTimeout(this.timer);
|
|
this.setData({
|
|
show: false
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
export default Notify;
|