feat: 查看已提交数据
This commit is contained in:
@@ -59,6 +59,10 @@ axios.interceptors.response.use(
|
||||
let url = binaryToUrl(res.data, res.config.env.binaryType, res)
|
||||
return Promise.resolve({ url, data: res.data })
|
||||
}
|
||||
if (res.data instanceof Blob) {
|
||||
return Promise.resolve(res)
|
||||
}
|
||||
|
||||
if (res?.data) {
|
||||
if (res?.data?.errCode === 0) {
|
||||
// message.error(res?.data?.errMsg)
|
||||
@@ -130,7 +134,10 @@ export const Https = {
|
||||
uploadPDFComplete: '/api/global-award/uploads/pdf/complete', // 上传pdf完成
|
||||
uploadVideoComplete: '/api/global-award/uploads/video/complete', // 上传video完成
|
||||
submitForm: '/api/global-award/contestants/save', // 提交表单
|
||||
getContestantByID: '/api/global-award/contestants/' // 获取表单
|
||||
getContestantByID: '/api/global-award/contestants/', // 获取表单
|
||||
getContestCount: '/api/global-award/contestants/count', // 获取已提交申请总数
|
||||
getExcel: '/api/global-award/contestants/export', // 导出excel
|
||||
postExportFile: '/api/global-award/contestants/export/files' // 下载指定范围文件
|
||||
},
|
||||
|
||||
axiosGet(url, config) {
|
||||
|
||||
Reference in New Issue
Block a user