| 1234567891011121314151617181920 |
- let loadingCount = 0
- export function showGlobalLoading(title = '') {
- if (loadingCount === 0) {
- uni.showLoading({
- title,
- mask: true,
- })
- }
- loadingCount++
- }
- export function hideGlobalLoading() {
- if (loadingCount <= 0) return
- loadingCount--
- if (loadingCount === 0) {
- uni.hideLoading()
- }
- }
|