'对接接口部分'
This commit is contained in:
26
utils/ui.js
Normal file
26
utils/ui.js
Normal file
@@ -0,0 +1,26 @@
|
||||
export const showToast = function(content,duration) {
|
||||
if(!duration) duration = 2000
|
||||
wx.showToast({
|
||||
title: content,
|
||||
icon: 'none',
|
||||
duration: duration,
|
||||
})
|
||||
}
|
||||
|
||||
var isShowLoading = false
|
||||
export const showLoading = function(title) {
|
||||
if(isShowLoading) return
|
||||
wx.showLoading({
|
||||
title: title?title:'',
|
||||
mask:true,
|
||||
success:()=>{
|
||||
isShowLoading = true
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
export const hideLoading = function() {
|
||||
if(!isShowLoading) return
|
||||
isShowLoading = false
|
||||
wx.hideLoading()
|
||||
}
|
||||
Reference in New Issue
Block a user