|
|
|
@ -6,9 +6,15 @@ |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div> |
|
|
|
<el-input v-model="scope.row.summaryTitle" placeholder="请输入综述" disabled></el-input> |
|
|
|
<el-table :id="scope.row.id" row-key="summaryContent" style="margin-left: 30px;" |
|
|
|
<el-table :id="scope.row.id" :row-key="scope.$index + scope.row.id" style="margin-left: 30px;" |
|
|
|
:data="scope.row.details" border @row-click="rowClick" :show-header="false"> |
|
|
|
<el-table-column prop="summaryContent" label="综述" /> |
|
|
|
<el-table-column prop="summaryContent" label="综述"> |
|
|
|
<template slot-scope="scope2"> |
|
|
|
<el-input type="textarea" v-model="scope2.row.summaryContent" placeholder="请输入综述" style="width: 95%" |
|
|
|
:disabled="sumDoctorCheck.sumPREdit.completeFlag=='3' || sumDoctorCheck.sumPREdit.isAudit=='Y'"> |
|
|
|
</el-input> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
@ -29,12 +35,12 @@ |
|
|
|
<el-button slot="append" icon="el-icon-d-caret"></el-button> |
|
|
|
--> |
|
|
|
</el-input> |
|
|
|
<el-table :id="'sug' + scope.row.id" row-key="suggestionContent" style="margin-left: 30px;" |
|
|
|
<el-table :id="'sug' + scope.row.id" :row-key="'sug' + scope.$index + scope.row.id" style="margin-left: 30px;" |
|
|
|
:data="scope.row.details" border @row-click="rowClickSug" :show-header="false"> |
|
|
|
<el-table-column prop="suggestionContent" label="建议" > |
|
|
|
<template slot-scope="scope2"> |
|
|
|
<el-input type="textarea" v-model="scope2.row.suggestionContent" placeholder="请输入综述" style="width: 95%" |
|
|
|
:disabled="sumDoctorCheck.sumPREdit.completeFlag=='3' || sumDoctorCheck.sumPREdit.isAudit=='Y'" @blur="blur"> |
|
|
|
:disabled="sumDoctorCheck.sumPREdit.completeFlag=='3' || sumDoctorCheck.sumPREdit.isAudit=='Y'"> |
|
|
|
</el-input> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
|