| | |
| | | prop="patno" |
| | | width="120" |
| | | /> |
| | | |
| | | <el-table-column |
| | | label="姓名" |
| | | align="center" |
| | | key="patname" |
| | | prop="patname" |
| | | /> |
| | | > |
| | | <template slot-scope="scope"> |
| | | <el-button |
| | | size="medium" |
| | | type="text" |
| | | @click=" |
| | | $router.push({ |
| | | path: '/patient/indexls/', |
| | | query: { id: scope.row.id }, |
| | | }) |
| | | " |
| | | ><span class="button-textsc">{{ |
| | | scope.row.patname |
| | | }}</span></el-button |
| | | > |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="性别" align="center" key="sex" prop="sex"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ scope.row.sex == 1 ? "男" : "女" }}</span> |
| | |
| | | width="120" |
| | | /> |
| | | |
| | | |
| | | <el-table-column |
| | | label="入院诊断" |
| | | align="center" |
| | |
| | | prop="diagname" |
| | | width="190" |
| | | /> |
| | | |
| | | |
| | | <el-table-column |
| | | label="科室" |
| | |
| | | }, |
| | | }, |
| | | created() { |
| | | |
| | | this.getList(); |
| | | this.listDept(); |
| | | this.gettabList(); |