UNPKG

141 BJavaScriptView Raw
1export function loading() {
2 wx.showLoading({
3 title: '加载中',
4 mask: true
5 })
6}
7export function loaded() {
8 wx.hideLoading()
9}