Browse Source

后台添加审核状态颜色,添加审核通过,驳回(功能有误当前注释)

newMaster
1747191978@qq.com 4 months ago
parent
commit
94c508a41d
  1. 17
      acupuncture-后台/src/views/medicalFile/index.vue

17
acupuncture-后台/src/views/medicalFile/index.vue

@ -311,7 +311,9 @@
fixed="right"
>
<template slot-scope="scope">
<span>{{ status[scope.row.status] }}</span>
<span :class="`status${scope.row.status}`">{{
status[scope.row.status]
}}</span>
</template>
</el-table-column>
<el-table-column
@ -374,7 +376,7 @@
提交审核
</el-button> -->
<!-- 审核 -->
<div>
<!-- <div>
<el-button
:disabled="scope.row.status != 1"
size="mini"
@ -393,7 +395,7 @@
>
驳回
</el-button>
</div>
</div> -->
</template>
</el-table-column>
</el-table>
@ -1537,6 +1539,15 @@ export default {
<style scoped src="@/assets/styles/common.css"></style>
<style scoped>
.status1 {
color: orange;
}
.status2 {
color: green;
}
.status3 {
color: red;
}
.div-title1 {
font-size: 22px;
font-weight: bold;

Loading…
Cancel
Save