Files
coloruicss/pages/loading/loading.js
weilanwl 3834693e84 xiaogang
ColorUI 源代码
2018-06-19 21:21:54 +08:00

26 lines
450 B
JavaScript

// 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)
// }
})