skyouc
2025-06-28 557ba4c410f34b4cf32dc372a888f69fbac7a2de
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
};