UNPKG

we-req

Version:

weReq是基于微信小程序的 wx.request的高级封装,提供全局和外部拦截器的管理,支持自动登录等功能,旨在简化微信小程序网络请求的处理流程,提升开发者的使用体验。

16 lines (14 loc) 260 B
class Loading { show(txt: boolean | string) { wx.showToast({ title: typeof txt === 'boolean' ? '加载中' : txt, icon: 'loading', mask: true, duration: 60000 }) } hide() { wx.hideToast() } } export default Loading