公告板
版本库
活动
搜索
登录
H5
/
leshan-laboratory
乐山实验室h5
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
对接接口
13404089107
16 分钟以前
5d55874bee62767c1c0debadaf3d794302238072
[H5/leshan-laboratory.git]
/
laboratory
/
src
/
utils
/
utils.js
1
2
3
4
5
6
7
8
9
10
export const customRequest = (params) => {
const { file, onSuccess, onError } = params;
uploadObs(file)
.then((ret) => {
onSuccess(ret);
})
.catch((ret) => {
onError();
});
};