|
|
|
@ -1,10 +1,10 @@ |
|
|
|
<template> |
|
|
|
<div style="display: flex;"> |
|
|
|
<div :style="'width:'+Math.floor((window.pageWidth - 200 - 120 - 70)/2) + 'px;'"> |
|
|
|
<div :style="'width:'+Math.floor((window.pageWidth - 210 - 120 - 80)/2) + 'px;'"> |
|
|
|
<el-table id="tableSummary" row-key="id" :data="doctorCheck.checkSummaryList" :row-style="{ height: '30px' }" |
|
|
|
:height="window.pageHeight < 600 ? Math.floor((380 - 40)*2/5):Math.floor((window.pageHeight-220-40)*2/5)" |
|
|
|
:height="window.pageHeight < 600 ? Math.floor((380 - 80)*2/5):Math.floor((window.pageHeight-220-80)*2/5)" |
|
|
|
width="100%" border @row-click="rowClick"> |
|
|
|
<el-table-column prop="summary" label="小结" :width="Math.floor((window.pageWidth - 200 - 124 - 70)/2)" > |
|
|
|
<el-table-column prop="summary" label="小结" :width="Math.floor((window.pageWidth - 210 - 124 - 80)/2)" > |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input type="textarea" v-model="scope.row.summary" :autosize="{ minRows: 1, maxRows: 100 }" |
|
|
|
:disabled="doctorCheck.RegisterCheckEdit.completeFlag=='1' || doctorCheck.RegisterCheckEdit.completeFlag=='2'" placeholder="请输入小结"> |
|
|
|
@ -13,11 +13,11 @@ |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
|
<div :style="'margin-left:2px;width:'+Math.floor((window.pageWidth - 200 - 120 - 70)/2) + 'px;'"> |
|
|
|
<div :style="'margin-left:2px;width:'+Math.floor((window.pageWidth - 210 - 120 - 80)/2) + 'px;'"> |
|
|
|
<el-table id="tableSuggestion" row-key="id" :data="doctorCheck.checkSuggestionList" :row-style="{ height: '30px' }" |
|
|
|
:height="window.pageHeight < 600 ? Math.floor((380 - 40)*2/5):Math.floor((window.pageHeight-220-40)*2/5)" |
|
|
|
:height="window.pageHeight < 600 ? Math.floor((380 - 80)*2/5):Math.floor((window.pageHeight-220-80)*2/5)" |
|
|
|
width="100%" border @row-click="rowClick"> |
|
|
|
<el-table-column prop="suggestion" label="建议" :width="Math.floor((window.pageWidth - 200 - 124 - 70)/2)" > |
|
|
|
<el-table-column prop="suggestion" label="建议" :width="Math.floor((window.pageWidth - 210 - 124 - 80)/2)" > |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input type="textarea" v-model="scope.row.suggestion" :autosize="{ minRows: 1, maxRows: 100 }" |
|
|
|
:disabled="doctorCheck.RegisterCheckEdit.completeFlag=='1' || doctorCheck.RegisterCheckEdit.completeFlag=='2'" placeholder="请输入建议"> |
|
|
|
|