pengjun 2 years ago
parent
commit
57293778d7
  1. 8
      src/components/sumDoctorCheck/SumAsbItemStatus.vue
  2. 5
      src/components/sumDoctorCheck/SumItems.vue

8
src/components/sumDoctorCheck/SumAsbItemStatus.vue

@ -3,28 +3,28 @@
<div class="asbitemListClass">
<div style="font-size:9px;color: #303133;">未检组合项目</div>
<div style="overflow-y:auto; height:68px;width:100%; margin-top:2px;border: 1px solid;">
<el-tag style="color:#303133;margin-left: 5px;" v-for="item in data.unCheckedAsbitem" :key="item" size="mini">{{
<el-tag style="color:#303133;background-color: white;margin-left: 5px;" v-for="item in data.unCheckedAsbitem" :key="item" size="mini">{{
item }}</el-tag>
</div>
</div>
<div class="asbitemListClass">
<div style="font-size:9px;color: #303133;">弃检组合项目</div>
<div style="overflow-y:auto; height:68px;width:100%; margin-top:2px;border: 1px solid;">
<el-tag style="color:#303133;margin-left: 5px;" v-for="item in data.giveUpAsbitem" :key="item" size="mini">{{ item
<el-tag style="color:#303133;background-color: white;margin-left: 5px;" v-for="item in data.giveUpAsbitem" :key="item" size="mini">{{ item
}}</el-tag>
</div>
</div>
<div class="asbitemListClass">
<div style="font-size:9px;color: #303133;">组合项目已检但无值的明细项目</div>
<div style="overflow-y:auto; height:68px;width:100%; margin-top:2px;border: 1px solid;">
<el-tag style="color:#303133;margin-left: 5px;" v-for="item in data.checkedNullValueItem" :key="item" size="mini">{{ item
<el-tag style="color:#303133;background-color: white;margin-left: 5px;" v-for="item in data.checkedNullValueItem" :key="item" size="mini">{{ item
}}</el-tag>
</div>
</div>
<div class="asbitemListClass">
<div style="font-size:9px;color: #303133;">组合项目已检但弃检的明细项目</div>
<div style="overflow-y:auto; height:68px;width:100%; margin-top:2px;border: 1px solid;">
<el-tag style="color:#303133;margin-left: 5px;" v-for="item in data.checkedGiveUpItem" :key="item" size="mini">{{
<el-tag style="color: #303133;background-color: white;margin-left: 5px;" v-for="item in data.checkedGiveUpItem" :key="item" size="mini">{{
item }}</el-tag>
</div>
</div>

5
src/components/sumDoctorCheck/SumItems.vue

@ -5,8 +5,9 @@
<el-table :data="RegisterCheckList" width="180" :height="divHeight" border highlight-current-row
@row-click="rowClick" ref="registerCheckList">
<el-table-column prop="asbitemName" label="组合项目" width="180">
<!--
<template slot-scope="scope">
<div>
<div>
<el-tooltip class="item" effect="dark" content="未检" placement="top">
<i v-show="scope.row.completeFlag == '0'" class="el-icon-circle-plus"
style="font-size: 18px;color: red;" />
@ -17,9 +18,11 @@
<el-tooltip class="item" effect="dark" content="弃检" placement="top">
<i v-show="scope.row.completeFlag == '2'" class="el-icon-remove" style="font-size: 18px;" />
</el-tooltip>
{{ scope.row.asbitemName }}
</div>
</template>
-->
</el-table-column>
</el-table>
</div>

Loading…
Cancel
Save