1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- let timer;
- Page({
- properties: {},
- data: {
- //是否显示
- visible: false,
- //显示标题
- title: "操作成功",
- //显示内容
- content: "",
- //是否有icon
- icon: false,
- imgUrl: ""
- },
- lifetimes: {
- detached: function () {
- clearTimeout(timer);
- timer = null;
- }
- },
- methods: {
- // show: function (options) {
- // let {
- // duration = 2000,
- // icon = false
- // } = options;
- // clearTimeout(timer);
- // if (icon && options.imgUrl) {
- // this.setData({
- // imgUrl: options.imgUrl
- // })
- // }
- // this.setData({
- // visible: true,
- // title: options.title || "",
- // content: options.content || "",
- // icon: icon
- // })
- // timer = setTimeout(() => {
- // this.setData({
- // visible: false
- // }, () => {
- // timer = null;
- // })
- // }, duration)
- // }
- },
- show: function (options) {
- let {
- duration = 2000,
- icon = false
- } = options;
- clearTimeout(timer);
- if (icon && options.imgUrl) {
- this.setData({
- imgUrl: options.imgUrl
- })
- }
- this.setData({
- visible: true,
- title: options.title || "",
- content: options.content || "",
- icon: icon
- })
- timer = setTimeout(() => {
- this.setData({
- visible: false
- }, () => {
- timer = null;
- })
- }, duration)
- }
- })
|