mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
44 lines
708 B
JavaScript
44 lines
708 B
JavaScript
import { VantComponent } from '../common/component';
|
|
|
|
VantComponent({
|
|
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
|
|
});
|
|
}
|
|
}
|
|
});
|