更新uniapp1

This commit is contained in:
2026-07-15 17:01:15 +08:00
parent 1f1a7e7efb
commit 743c5cb4eb
16 changed files with 1775 additions and 137 deletions
+14
View File
@@ -0,0 +1,14 @@
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])
});
});
},
});