123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317 |
- <template>
- <div ref="box" class="box" :style="{width: width ? width + 'px' : '100%'}" :class="{'nocopy': $route.meta.nocopy}">
- <div class="score-box" :class="scoreLevel == '甲'? 'scoreLevel_1' : ( scoreLevel == '乙'?'scoreLevel_2': (scoreLevel == '丙'?'scoreLevel_3':'' ) ) ">
- <div>病案评分<span class="score-f">{{ data.score }}分</span></div>
- <!-- <h2 class="score-dj">{{ scoreLevel }}</h2> -->
- </div>
- <div class="card-box">
- <el-row :gutter="20" style="margin-bottom: 16px;">
- <el-col :span="12">
- <div class="title">病历问题:<span class="error">{{ data.total }}</span></div>
- </el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col :span="12" v-for="(item, index) of data.summary" :key="index">
- <div class="title2" @click="onScroll(index)">{{ item.category }}:<span style="float: right;">({{ item.nums }})</span></div>
- </el-col>
- </el-row>
- </div>
- <el-scrollbar ref="scrollRef" class="scrollBox" :style="{'height': scrollHeight}">
- <el-table
- :data="tableData"
- default-expand-all
- :show-header="false"
- style="width: 100%">
- <el-table-column type="expand">
- <template slot-scope="props">
- <el-card v-for="(item, index) of props.row.children" :key="index" class="box-card" shadow="hover">
- <el-image
- class="typeImg"
- v-if="item.is_ai"
- :src="require('../../../assets/images/jiqiren.png')"
- fit="contain">
- </el-image>
- <el-image
- v-else
- class="typeImg"
- :src="require('../../../assets/images/kefu.png')"
- fit="contain">
- </el-image>
- <el-row>
- <el-col :span="24">
- <el-descriptions title="" :column="1" direction="vertical">
- <el-descriptions-item label="质控项目">
- <el-tag class="category">{{ item.error_field }}</el-tag>
- <el-tag type="danger" class="koufen">-{{ item.score }}分</el-tag>
- </el-descriptions-item>
- <el-descriptions-item label="错误描述">{{ item.notice }}</el-descriptions-item>
- <el-descriptions-item label="质控依据">
- <div v-for="(yItem, yIndex) of item.basis" :key="yIndex" style="margin-bottom: 10px;">
- <div v-if="item.rule_id !== 6">
- <span class="span-index">{{ yIndex+1 }}</span>
- <span v-for="(cItem, cIndex) of yItem" :key="cIndex">{{ cItem }}</span>
- </div>
- <div v-else>
- <span class="span-index">1</span>
- <span>{{ yItem[0] }}</span>
- </div>
- </div>
- </el-descriptions-item>
- </el-descriptions>
- </el-col>
- </el-row>
- </el-card>
- </template>
- </el-table-column>
- <el-table-column
- label=""
- prop="">
- <template slot-scope="scope">
- <div :class="`category${scope.$index}`">{{ scope.row.category }}</div>
- </template>
- </el-table-column>
- </el-table>
- </el-scrollbar>
- </div>
- </template>
- <script>
- export default {
- props: {
- data: {
- type: Object,
- default() {
- return {
- data: {}
- }
- }
- },
- type:{
- type: String,
- default() {
- return ''
- }
- },
- height: {
- type: Number,
- default() {
- return 0
- }
- },
- width: {
- type: Number,
- default() {
- return 0
- }
- }
- },
- computed: {
- tableData() {
- let arr = []
- const keys = Object.keys(this.data.data)
- for(let i=0; i<keys.length; i++) {
- let obj = {
- category: keys[i],
- children: this.data.data[keys[i]]
- }
- arr.push(obj)
- }
- return arr
- },
- scoreLevel() {
- /**
- * 甲>90分
- * 乙75-90分
- * 丙<75分
- * */
- let str
- const { score } = this.data
- if (score > 90) {
- str = '甲'
- } else if (score < 75) {
- str = '丙'
- } else if ( score <= 90 && score >= 75 ) {
- str = '乙'
- }
- return str
- },
- scrollHeight() {
- // if (this.height) {
- // return (this.height - 214)+'px'
- // } else {
- // return `calc(100vh - 314px)`
- // }
- return `calc(100vh - 320px)`
- }
- },
- methods: {
- onScroll(index) {
- const el = this.$el.querySelector(`.category${index}`);
- const node = el.parentNode.parentNode.parentNode
- this.$refs["scrollRef"].wrap.scrollTop = node.offsetTop;
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- ::v-deep .el-scrollbar__wrap {
- overflow-x: hidden;
- }
- ::v-deep .el-divider--horizontal {
- margin: 10px 0;
- }
- .box {
- padding: 16px;
- background: #FFFFFF;
- border-radius: 5px;
- .score-box{
- width: 100%;
- margin-bottom: 16px;
- padding: 30px 50px 30px 20px;
- border-radius: 4px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- color: #fff;
- div{
- font-size: 20px;
- }
- .score-f{
- padding-left: 20px;
- font-size: 20px;
- }
- .score-dj,.score-f{
- font-weight: bold;
- }
- }
- .score-box.scoreLevel_1{
- background: rgb(11, 133, 63);
- background-image: url('../../../assets/images/icon-jia.png');
- background-repeat: no-repeat;
- background-size: 60px 52px;
- background-position:80% 50%;
- }
- .score-box.scoreLevel_2{
- background: rgb(152, 112, 20);
- background-image: url('../../../assets/images/icon-yi.png');
- background-repeat: no-repeat;
- background-size: 60px 52px;
- background-position:80% 50%;
- }
- .score-box.scoreLevel_3{
- background: rgb(199, 54, 13);
- background-image: url('../../../assets/images/icon-bing.png');
- background-repeat: no-repeat;
- background-size: 60px 52px;
- background-position:80% 50%;
- }
- .card-box {
- // height: 175px;
- background: #FFFFFF;
- border: 1px solid #E2E2E2;
- padding: 16px 20px;
- box-sizing: border-box;
- margin-bottom: 14px;
- .title {
- font-size: 15px;
- font-family: PingFang-SC-Bold, PingFang-SC;
- font-weight: bold;
- color: #333333;
- line-height: 22px;
- // span {
- // margin-left: 7px;
- // }
- }
- .title2 {
- font-size: 14px;
- font-family: PingFang-SC-Bold, PingFang-SC;
- // font-weight: bold;
- color: #333333;
- line-height: 26px;
- cursor: pointer;
- span {
- margin-left: 7px;
- }
- }
- .error {
- color: #D81E06;
- }
- }
- .box-card {
- margin-bottom: 10px;
- position: relative;
- background: rgb(241, 245, 254);
- .category {
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .koufen {
- font-weight: bold;
- vertical-align: middle;
- margin-left: 16px;
- }
- .typeImg {
- width: 53px;
- height: 53px;
- position: absolute;
- top: 12px;
- right: 12px;
- z-index: 999;
- }
- }
- .box-card .el-table ::v-deep tr{
- background: transparent;
- }
- ::v-deep .el-table__row {
- background: #185DA6 !important;
- color: #FFFFFF;
- .el-icon-arrow-right {
- color: #FFFFFF;
- }
- }
- ::v-deep .el-descriptions__body{
- background: transparent;
- }
- ::v-deep .el-table tr{
- background: transparent;
- }
- ::v-deep .el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell {
- background: #185DA6;
- }
- ::v-deep .el-table_1_column_1 {
- border-radius: 8px 0 0 8px;
- }
- ::v-deep .el-table_1_column_2 {
- border-radius: 0 8px 8px 0;
- font-weight: bold;
- }
- ::v-deep .el-descriptions-item__label {
- font-family: PingFang-SC-Bold, PingFang-SC;
- font-weight: bold;
- color: #333333;
- }
- }
- .span-index{
- width: 24px;
- height: 24px;
- line-height: 24px;
- text-align: center;
- display: inline-block;
- border-radius: 50%;
- background: #185DA6;
- color: #fff;
- margin-right: 10px;
- margin-bottom: 4px;
- }
- ::v-deep .el-table .el-table__row td {
- color: #fff;
- }
- </style>
|