skyouc
2025-01-15 b2455e18b7880638faeda23cb559e7741b734339
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
};