This commit is contained in:
2025-07-29 17:23:50 +08:00
parent 4536c59126
commit a7c1cb61e1

View File

@@ -39,14 +39,15 @@
:key="index"
:timestamp="activity.time"
>
<p style="font-size:12px;color:#f56c6c;margin:0;margin-bottom:4px" v-if="activity.state == 2"
>已拒绝</p
>
<p style="font-size:12px;color:#17b3a3;margin:0;margin-bottom:4px" v-if="activity.state == 3"
>已通过</p
>
{{ activity.mark }}
<span style="color:#f56c6c" v-if="activity.state == 2"
>( 已拒绝 )</span
>
<span style="color:#17b3a3;" v-if="activity.state == 3"
>( 已通过 )</span
>
</el-timeline-item>
</el-timeline>
</div>
@@ -54,7 +55,7 @@
<div class="medical_box" :style="
`
${
markList.length>0? 'width:calc(100% - 320px);' : ''
markList.length>0? 'width:calc(100% - 320px);float:left' : ''
}
@@ -1076,6 +1077,7 @@ export default {
}
if (this.addCertificateForm.mark) {
this.markList = JSON.parse(this.addCertificateForm.mark);
this.addCertificateForm.mark=''
}
} else {
this.addCertificateForm = {};
@@ -1105,6 +1107,7 @@ export default {
this.dialogVisible = true;
},
handleReviewSave() {
var recordData = { ...this.record };
// for (const key in recordData) {
// const titleHtml = this.getTitleHtml(recordData[key]);
@@ -1180,7 +1183,7 @@ export default {
// approved 通过
// rejected 拒绝
this.addCertificateForm.mark=''
this.reviewType = type;
this.dialogMarkVisible = true;
},