Signed-off-by: 吴文峰 <kevin@lmve.net>

This commit is contained in:
2026-04-16 15:57:44 +08:00
parent 118277d37d
commit aedab4b0ee
24 changed files with 0 additions and 1970 deletions
@@ -1,13 +0,0 @@
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])
});
});
},
});