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 {