This commit is contained in:
2026-04-16 16:25:16 +08:00
parent aedab4b0ee
commit 88c080889e
4165 changed files with 926326 additions and 0 deletions
@@ -0,0 +1,13 @@
uni.addInterceptor({
returnValue (res) {
if (!(!!res && (typeof res === "object" || typeof res === "function") && typeof res.then === "function")) {
return res;
}
return new Promise((resolve, reject) => {
res.then((res) => {
if (!res) return resolve(res)
return res[0] ? reject(res[0]) : resolve(res[1])
});
});
},
});