From 9cc83e92ee16c137b7aed41acbd10008f72567ba Mon Sep 17 00:00:00 2001 From: lijingyu007 <904564792@qq.com> Date: Fri, 31 May 2024 15:54:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9F=A5=E7=9C=8B=E8=AF=A6=E6=83=85=E7=AE=80?= =?UTF-8?q?=E5=8E=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.production | 3 +- src/api/system/ApplicationReview.js | 14 +- src/views/system/ApplicationReview/index.vue | 141 +++++++++++++++++-- 3 files changed, 141 insertions(+), 17 deletions(-) diff --git a/.env.production b/.env.production index 7ba2b8a..0bb874b 100644 --- a/.env.production +++ b/.env.production @@ -2,7 +2,8 @@ ENV = 'production' # KeySaas测试云平台/生产环境 -VUE_APP_BASE_API = '/prod-api' +# VUE_APP_BASE_API = '/prod-api' +VUE_APP_BASE_API = '/test-api' VUE_APP_BASE_TARGET = 'https://www.keyitest.cn/test-api' # VUE_APP_BASE_TARGET = 'http://192.168.0.229:9999' diff --git a/src/api/system/ApplicationReview.js b/src/api/system/ApplicationReview.js index 5bcb6b1..d844d9c 100644 --- a/src/api/system/ApplicationReview.js +++ b/src/api/system/ApplicationReview.js @@ -122,14 +122,14 @@ export function companyList(query) { // 详情 export function companyDetail(id) { return request({ - url: '/companyApply/admin/'+id, + url: '/companyApply/admin/' + id, method: 'get', }) } // 删除 export function companyDelete(id) { return request({ - url: '/companyApply/admin/delete/'+id, + url: '/companyApply/admin/delete/' + id, method: 'delete', }) } @@ -140,4 +140,12 @@ export function companyApplyPost(data) { method: 'post', data }) -} \ No newline at end of file +} + +// 查询用户简历 +export function getUserJL(id) { + return request({ + url: '/personal/resume/' + id, + method: 'get', + }) +} diff --git a/src/views/system/ApplicationReview/index.vue b/src/views/system/ApplicationReview/index.vue index c124fc6..101e8d9 100644 --- a/src/views/system/ApplicationReview/index.vue +++ b/src/views/system/ApplicationReview/index.vue @@ -1,15 +1,17 @@