feat(custom): build

This commit is contained in:
2023-11-28 17:59:45 +08:00
parent 22868fdf2c
commit d5c4651665
39 changed files with 5779 additions and 10624 deletions

View File

@@ -31,16 +31,12 @@ const request = (
icon: "none",
});
reject(data);
return;
} else {
resolve(data);
}
resolve(data);
},
fail: () => {
Taro.showToast({
title: "服务器异常",
icon: "none",
});
reject({ code: 1, msg: "服务器异常" });
fail: (err) => {
reject(err);
},
});
});