2019-09-09 20:41:23 +08:00

52 lines
870 B
TypeScript

import { VantComponent } from '../common/component';
import { RED } from '../common/color';
import { safeArea } from '../mixins/safe-area';
VantComponent({
mixins: [safeArea()],
props: {
message: String,
color: {
type: String,
value: '#fff'
},
background: {
type: String,
value: RED
},
duration: {
type: Number,
value: 3000
},
zIndex: {
type: Number,
value: 110
}
},
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
});
}
}
});