1234567891011121314151617181920212223242526 |
- // pages/element/loading/loading.js
- Page({
- data: {
- loading: true
- },
- showLoading: function () {
- var that = this;
- this.setData({
- showLoading: true
- })
- setTimeout(function () {
- that.setData({
- showLoading: false
- })
- }, 2000)
- },
- // onLoad: function () {
- // var that = this;
- // setTimeout(function () {
- // that.setData({
- // loading: true
- // })
- // }, 3000)
- // }
- })
|