From 69ff1bba7d9c89004de3946fefcf1400e9a2d3e4 Mon Sep 17 00:00:00 2001 From: Maple <869445424@qq.com> Date: Tue, 5 Aug 2025 15:40:37 +0800 Subject: [PATCH] =?UTF-8?q?add=EF=BC=9A=E6=B7=BB=E5=8A=A0=E4=BA=86?= =?UTF-8?q?=E5=B2=97=E4=BD=8D=E4=BF=A1=E6=81=AF=EF=BC=8C=E5=AE=9E=E7=8E=B0?= =?UTF-8?q?=E4=BA=86=E9=80=9A=E8=BF=87=E5=B2=97=E4=BD=8D=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E5=88=B0=E8=AF=A5=E5=B2=97=E4=BD=8D=E7=9A=84=E8=A7=92=E8=89=B2?= =?UTF-8?q?=E7=9A=84=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/post/PostDetailDrawer.vue | 60 ++++++++++++++++++++-- 1 file changed, 55 insertions(+), 5 deletions(-) diff --git a/src/views/system/post/PostDetailDrawer.vue b/src/views/system/post/PostDetailDrawer.vue index a82dd34..df08eee 100644 --- a/src/views/system/post/PostDetailDrawer.vue +++ b/src/views/system/post/PostDetailDrawer.vue @@ -30,10 +30,48 @@ -
+
岗位说明
-
-
{{ primaryInfo.remark }}
+
+
{{ primaryInfo.statement }}
+
+
+ +
+
备注信息
+
+
{{ primaryInfo.remark }}
+
+
+ +
+
岗位任务
+
+
{{ primaryInfo.responsibilitiesTask }}
+
+
+ +
+
任职资格
+
+
{{ primaryInfo.qualifications }}
+
+
+ +
+
工作条件
+
+
{{ primaryInfo.workingConditions }}
+
+
+ +
+
薪资信息
+
+
+
岗位薪资
+
{{ primaryInfo.salary }} 元
+
@@ -89,6 +127,11 @@ const getDetail = async (id: string) => { sort: data.postSort, status: data.status, remark: data.remark, + statement: data.statement, + responsibilitiesTask: data.responsibilitiesTask, + qualifications: data.qualifications, + workingConditions: data.workingConditions, + salary: data.salary, createTime: data.createTime, updateTime: data.updateTime, } @@ -256,17 +299,24 @@ defineExpose({ word-break: break-word; } -.remark-container { +.salary-value { + color: #e74c3c; + font-weight: 600; +} + +.content-container { padding: 16px; background: white; border-radius: 6px; border: 1px solid var(--border-color); } -.remark-content { +.content-text { color: var(--value-color); line-height: 1.7; font-size: 15px; + white-space: pre-wrap; + word-break: break-word; } .footer-actions {