pang.jiabao
2025-03-07 af95155c788ff5b88f55e0bea732b480a68be442
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 
function loading(title) {
    uni.showLoading({
        mask: true,
        title: title,
    })
}
 
function hideLoading() {
    uni.hideLoading()
}
 
 
module.exports = {
    loading,
    hideLoading
};