3.10 工程代码同步master

This commit is contained in:
jl-zhoujl2
2022-03-10 14:24:13 +08:00
parent 41ab55a4ac
commit 62f6b07ee2
914 changed files with 143121 additions and 29110 deletions

13
src/services/downLoad.ts Normal file
View File

@ -0,0 +1,13 @@
import request from '@/utils/request';
/**
* 根据项目id获取引用供应商资质库信息状态
* 2021.8.6 zhoujianlong
* @param data
* @returns
*/
export async function getStatusByProId(params: any) {
return request('/api/biz-service-ebtp-resps/v1/tdoc/isQuoteSupplier', {
method: 'POST',
params: params
});
}