pengjun 3 weeks ago
parent
commit
baf608bbce
  1. 36
      src/components/sumDoctorCheck/SumSug.vue

36
src/components/sumDoctorCheck/SumSug.vue

@ -150,8 +150,8 @@
:data="scope.row.medicalInterpretations" border @row-click="rowClickSug0" :show-header="false">
<el-table-column width="30">
<template slot-scope="scope2">
<el-tag class="moveTag2" style="cursor: move;background-color: #EEEEEE;">
<div style="width: 16px;">{{ scope2.$index + 1 }}).</div>
<el-tag class="moveTag2">
<div class="moveTag2div">{{ scope2.$index + 1 }}).</div>
</el-tag>
</template>
</el-table-column>
@ -159,7 +159,7 @@
<template slot-scope="scope2">
<div @dblclick="openSymbols(scope.$index, 'medicalInterpretations', scope2.$index)">
<el-input type="textarea" v-model="scope2.row.suggestionContent" placeholder="请输入建议内容"
:disabled="sumBtnDisabled" :autosize="{ minRows: 1, maxRows: 10 }">
:disabled="sumBtnDisabled" :autosize="{ minRows: 1, maxRows: 3 }">
</el-input>
</div>
</template>
@ -187,8 +187,8 @@
:data="scope.row.commonReasons" border @row-click="rowClickSug1" :show-header="false">
<el-table-column width="30">
<template slot-scope="scope2">
<el-tag class="moveTag2" style="cursor: move;background-color: #EEEEEE;">
<div style="width: 16px;">{{ scope2.$index + 1 }}).</div>
<el-tag class="moveTag2">
<div class="moveTag2div">{{ scope2.$index + 1 }}).</div>
</el-tag>
</template>
</el-table-column>
@ -196,7 +196,7 @@
<template slot-scope="scope2">
<div @dblclick="openSymbols(scope.$index, 'commonReasons', scope2.$index)">
<el-input type="textarea" v-model="scope2.row.suggestionContent" placeholder="请输入建议内容"
:disabled="sumBtnDisabled" :autosize="{ minRows: 1, maxRows: 10 }">
:disabled="sumBtnDisabled" :autosize="{ minRows: 1, maxRows: 3 }">
</el-input>
</div>
</template>
@ -224,8 +224,8 @@
:data="scope.row.healthGuidances" border @row-click="rowClickSug2" :show-header="false">
<el-table-column width="30">
<template slot-scope="scope2">
<el-tag class="moveTag2" style="cursor: move;background-color: #EEEEEE;">
<div style="width: 16px;">{{ scope2.$index + 1 }}).</div>
<el-tag class="moveTag2">
<div class="moveTag2div">{{ scope2.$index + 1 }}).</div>
</el-tag>
</template>
</el-table-column>
@ -233,7 +233,7 @@
<template slot-scope="scope2">
<div @dblclick="openSymbols(scope.$index, 'healthGuidances', scope2.$index)">
<el-input type="textarea" v-model="scope2.row.suggestionContent" placeholder="请输入健康指导"
:disabled="sumBtnDisabled" :autosize="{ minRows: 1, maxRows: 10 }">
:disabled="sumBtnDisabled" :autosize="{ minRows: 1, maxRows: 3 }">
</el-input>
</div>
</template>
@ -1638,6 +1638,16 @@ export default {
@import '../../assets/css/global_table.css';
@import '../../assets/css/global.css';
.moveTag2 {
width: 24px;
height: 24px;
cursor: move;
background-color: #EEEEEE;
}
.moveTag2div{
margin-top: -5px;
}
::v-deep .el-icon-search:before {
color: #00F;
}
@ -1645,17 +1655,17 @@ export default {
/* 表格底色 .el-table__body .el-table__body-wrapper*/
::v-deep .el-table {
background-color: #B9CEE9;
color: #52555F;
color: #000;
}
::v-deep .el-table__row {
background-color: #B9CEE9;
color: #52555F;
color: #000;
}
::v-deep .el-textarea__inner {
background-color: #B9CEE9;
color: #52555F;
color: #000;
}
/* 设置单元格内内容顶对齐 */
@ -1692,7 +1702,7 @@ export default {
height: 23px;
padding: 1px 15px 1px 2px;
background-color: #B9CEE9;
color: #52555F !important;
color: #000 !important;
}
::v-deep .commonFont .el-textarea__inner {

Loading…
Cancel
Save