|
|
|
@ -1,14 +1,14 @@ |
|
|
|
<template> |
|
|
|
<div style="padding: 0 5px;"> |
|
|
|
<div style="padding: 0 2px;"> |
|
|
|
<div> |
|
|
|
<el-select v-model="diagnosis" placeholder="快速选择诊断疾病" size="small" filterable clearable remote automatic-dropdown |
|
|
|
:remote-method="remoteMethod" @change="quickChoosedDiag" default-first-option ref="diagnosises" value-key="id" |
|
|
|
style="width:250px;text-align: left;padding-right: 15px;"> |
|
|
|
style="width:196px;text-align: left;padding-right: 15px;"> |
|
|
|
<el-option v-for="item in diagnosisesCur" :key="item.id" :value="item" :label="item.displayName" /> |
|
|
|
</el-select> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
<el-table :data="sumDoctorCheck.diagnosisList" :height="window.pageHeight - 110" width="100%" size="small"> |
|
|
|
<el-table :data="sumDoctorCheck.diagnosisList" :height="window.pageHeight < 600 ? 178 : window.pageHeight - 390 - 32" width="100%" size="small"> |
|
|
|
<!-- temporaryselection personnelUnit.nogroupselected--> |
|
|
|
<!-- |
|
|
|
"patientRegisterId": "3fa85f64-5717-4562-b3fc-2c963f66afa6", |
|
|
|
@ -17,12 +17,12 @@ |
|
|
|
"displayOrder": 0, |
|
|
|
"diagnosisName": "string" |
|
|
|
--> |
|
|
|
<el-table-column type="index" label="序号" align="center" width="60" /> |
|
|
|
<el-table-column label="诊断疾病" width="160" prop="diagnosisName" /> |
|
|
|
<el-table-column fixed="right" label="操作" width="60"> |
|
|
|
<el-table-column type="index" align="center" width="25" /> |
|
|
|
<el-table-column label="诊断疾病" min-width="130" prop="diagnosisName" /> |
|
|
|
<el-table-column fixed="right" width="25"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<i class="el-icon-delete" @click="deleteRow(scope.$index)" |
|
|
|
style="font-size: 24px;color: red;cursor:pointer;"></i> |
|
|
|
style="font-size: 20px;color: red;cursor:pointer;"></i> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
|