8 lines
253 B
TypeScript
8 lines
253 B
TypeScript
![]() |
import request from "@/utils/request";
|
||
|
|
||
|
//检验文档中心是否存在该文档
|
||
|
export async function checkFileExist(fileId?:any) {
|
||
|
return request('/api/core-service-ebtp-updownload/v1/attachment/find/bid/'+fileId,{
|
||
|
method:'GET' ,
|
||
|
})
|
||
|
}
|