+ 申请单号:{{ props.refObj.applyNumber || '--' }} +
++ 评论内容:{{ props.refObj.dto.comment }} +
+From 9cb2e9e81f334e200c3c35ffd322495d74fa6ad0 Mon Sep 17 00:00:00 2001 From: a0049873 <79py69t9wb@privaterelay.appleid.com> Date: Thu, 14 Jul 2022 16:50:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=91=E7=9A=84=E7=94=B3=E8=AF=B7=E6=A8=A1?= =?UTF-8?q?=E5=9D=97=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front/public/index.html | 4 +- front/src/api/personalCenter.js | 7 + .../home/components/searchResultList.vue | 160 +++++++----- .../components/ApplyDetails.vue | 55 +++-- .../personalCenter/components/Comment.vue | 207 ++++++++++++++++ .../personalCenter/components/Demand.vue | 216 +++++++++++++++++ .../personalCenter/components/MyApply.vue | 140 ++++++++--- .../personalCenter/components/OffTheShelf.vue | 210 ++++++++++++++++ .../components/OtherApplications .vue | 229 ++++++++++++++++++ .../components/PutOnTheShelf .vue | 214 ++++++++++++++++ 10 files changed, 1325 insertions(+), 117 deletions(-) create mode 100644 front/src/views/personalCenter/components/Comment.vue create mode 100644 front/src/views/personalCenter/components/Demand.vue create mode 100644 front/src/views/personalCenter/components/OffTheShelf.vue create mode 100644 front/src/views/personalCenter/components/OtherApplications .vue create mode 100644 front/src/views/personalCenter/components/PutOnTheShelf .vue diff --git a/front/public/index.html b/front/public/index.html index 04ec2b7b..040ff813 100644 --- a/front/public/index.html +++ b/front/public/index.html @@ -2,7 +2,7 @@ * @Author: hisense.wuhongjian * @Date: 2022-03-29 16:45:25 * @LastEditors: hisense.liangjunhua - * @LastEditTime: 2022-07-14 09:34:08 + * @LastEditTime: 2022-07-14 10:58:46 * @Description: 告诉大家这是什么 --> @@ -49,7 +49,7 @@ window.SITE_CONFIG['backUrl'] = 'http://15.2.21.238:9797'; window.SITE_CONFIG['previewUrl'] = 'http://15.2.21.238:9796/'; window.SITE_CONFIG['frontUrl'] = 'http://15.2.21.238:9796/document/#/devModelFile/'; - window.SITE_CONFIG['apiURL'] = 'http://15.2.21.239:8888/renren-admin'; + window.SITE_CONFIG['apiURL'] = 'http://15.2.21.238:8888/renren-admin'; window.SITE_CONFIG['POI_URL'] = 'http://15.2.21.238:8090/iserver/services/addressmatch-qingdaoPOI181015/restjsr/v1/address'; // 穿透版本 // window.SITE_CONFIG['backUrl'] = 'http://124.222.94.39:9797'; diff --git a/front/src/api/personalCenter.js b/front/src/api/personalCenter.js index b58168f4..86d0f684 100644 --- a/front/src/api/personalCenter.js +++ b/front/src/api/personalCenter.js @@ -197,6 +197,13 @@ export function getMyComment(params) { params, }) } +export function demandComment(params) { + return request({ + url: '/demandComment/'+ params, + method: 'get', + params, + }) +} // 能力上架属性名查询 export function getCategoryTree(params) { return request({ diff --git a/front/src/views/home/components/searchResultList.vue b/front/src/views/home/components/searchResultList.vue index 47d0dd5f..03d81ba4 100644 --- a/front/src/views/home/components/searchResultList.vue +++ b/front/src/views/home/components/searchResultList.vue @@ -10,10 +10,17 @@ }}
+ 申请单号:{{ props.refObj.applyNumber || '--' }} +
++ 评论内容:{{ props.refObj.dto.comment }} +
++ 申请单号:{{ props.refObj.applyNumber || '--' }} +
++ 需求标题:{{ props.refObj.dto.demandSubject }} +
++ 需求类型:{{ props.refObj.dto.detailsType }} +
++ 需求描述:{{ props.refObj.dto.demandDetails }} +
++ 需求领域:{{ props.refObj.dto.detailsField }} +
+审核结果:{{ // item.ended ? '审核完成' : item.backToFirst ? '被终止' : '审核中' - item.approveStatus + item.approveStatus || item.resourceStatusTip || '--' }}