diff --git a/.env.development b/.env.development index c553157..3ba1f21 100644 --- a/.env.development +++ b/.env.development @@ -5,6 +5,9 @@ VITE_APP_TITLE = 煤科建管平台 VITE_APP_ENV = 'development' # 开发环境 +#朱银 +# VITE_APP_BASE_API = 'http://192.168.110.149:8899' +#曾涛 VITE_APP_BASE_API = 'http://192.168.110.171:8899' # 无人机接口地址 diff --git a/src/api/ctr/incomeContract/index.ts b/src/api/ctr/incomeContract/index.ts index eda6901..5cf0c75 100644 --- a/src/api/ctr/incomeContract/index.ts +++ b/src/api/ctr/incomeContract/index.ts @@ -71,4 +71,16 @@ export const getFileList = (data) => { method: 'get', params: data }) +} + +/** + * 查看收入合同附件列表 + * @param id + */ +export const getInfoByProjectId = (data) => { + return request({ + url: '/bidding/listOfWinningBids/getInfoByProjectId', + method: 'get', + params: data + }) } \ No newline at end of file diff --git a/src/api/tender/index.ts b/src/api/tender/index.ts index cfd5b52..10a75dd 100644 --- a/src/api/tender/index.ts +++ b/src/api/tender/index.ts @@ -122,3 +122,11 @@ export const editStatus = (query: any): AxiosPromise => { data: query }); }; +//获取审核状态 +export const getApproval = (id) => { + return request({ + url: '/tender/tenderPlanLimitList/getVersionDetail', + method: 'get', + params: { versions: id } + }); +}; diff --git a/src/components/FileUpload/index.vue b/src/components/FileUpload/index.vue index 8bfd847..5011b9d 100644 --- a/src/components/FileUpload/index.vue +++ b/src/components/FileUpload/index.vue @@ -1,11 +1,28 @@ @@ -232,7 +233,15 @@