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

Loading…
Cancel
Save