fix
This commit is contained in:
@@ -56,12 +56,21 @@ axios.interceptors.request.use((config) => {
|
||||
return Promise.reject(error);
|
||||
});
|
||||
let isLoginTime = false
|
||||
const binaryToUrl = (binary,type = 'application/octet-stream')=>{
|
||||
let blob = new Blob([binary], {type});
|
||||
let url = URL.createObjectURL(blob);
|
||||
return url
|
||||
}
|
||||
//返回状态判断(添加响应拦截器)
|
||||
axios.interceptors.response.use((res) =>{
|
||||
// if(res.data.data == null){
|
||||
// message.warning(res.data.errMsg)
|
||||
// return Promise.reject(res.data);
|
||||
// }else
|
||||
if(res.config.env.binary){
|
||||
let url = binaryToUrl(res.data,res.config.env.binaryType)
|
||||
return Promise.resolve({url,data:res.data})
|
||||
}
|
||||
if (res.data) {
|
||||
if (res.data.errCode === 0) {
|
||||
// message.error(res.data.errMsg)
|
||||
@@ -218,8 +227,30 @@ export const Https = {
|
||||
getRelPublicClassificationIdList:`/api/classification/getRelPublicClassificationIdList`,//多选获取公共标签
|
||||
editRelPublicClassificationIdList:`/api/classification/editRelPublicClassificationIdList`,//多选修改公共标签
|
||||
|
||||
//模块化
|
||||
saveOrUpdate:`/api/project/saveOrUpdate`,//模块化新增修改
|
||||
getModuleContent:`/api/project/getModuleContent`,//获取模块内容
|
||||
saveModuleContent:`/api/project/saveModuleContent`,//储存模块内容
|
||||
historyProject:`/api/project/page`,//项目记录
|
||||
//3d
|
||||
threeDPage:`/api/project/threeDPage`,
|
||||
downloadZip:`/api/project/downloadZip`,//下载zip
|
||||
getThreeDSize:`/api/project/getThreeDSize`,//下载列表
|
||||
getLayoutDetail:`/api/project/getLayoutDetail`,//获取3d详情
|
||||
getThreeDGlb:`/api/project/getThreeDGlb`,
|
||||
selectHistoryProject:`/api/project/choose`,//选择项目
|
||||
getMannequinDetail:`/api/project/getMannequinDetail`,//模块化查看模特点位
|
||||
modifyProportion:`/api/generate/modifyProportion`,//模特拉伸
|
||||
poselikeOrDisike:`/api/generate/likeOrDislike`,//postTransform like
|
||||
|
||||
//拼贴
|
||||
genSketchRecon:`/api/generate/genSketchRecon`,
|
||||
saveReconCanvas:`/api/generate/saveReconCanvas`,
|
||||
|
||||
//动作变换
|
||||
poseTransform:`/api/generate/poseTransform`,
|
||||
poseTransformResult:`/api/generate/poseTransformResult`,
|
||||
|
||||
|
||||
batchUpdateLibraryName:'/api/library/batchUpdateLibraryName',//Library修改用户文件名
|
||||
batchDeleteLibrary:'/api/library/batchDeleteLibrary',//删除library
|
||||
queryLibraryTopAndBottomPage:'/api/library/queryLibraryTopAndBottomPage',//Library分页列表(查询top和bottom)
|
||||
@@ -330,6 +361,14 @@ export const Https = {
|
||||
//活动
|
||||
activity:`/api/account/activity`,
|
||||
|
||||
//bradDNA
|
||||
brandLogoUpload:`/api/history/brandLogoUpload`,//上传bradDNA
|
||||
brandDNAGenerate:`/api/history/brandDNAGenerate`,//上传bradDNA
|
||||
brandDNAUpload:`/api/history/brandDNAUpload`,//上传DNA图片
|
||||
|
||||
|
||||
brandDNAPage:`/api/history/brandDNAPage`,//brand列表
|
||||
brandDNASaveOrUpdate:`/api/history/brandDNASaveOrUpdate`,//提交个人信息
|
||||
|
||||
//调查问卷
|
||||
questionnaire:`/api/account/questionnaire`,//保存画布
|
||||
|
||||
Reference in New Issue
Block a user