pengjun 4 months ago
parent
commit
91f1ea85cc
  1. 26
      src/components/patientRegister/PatientRegisterEdit.vue

26
src/components/patientRegister/PatientRegisterEdit.vue

@ -565,55 +565,55 @@
class="el-table__body-wrapper tbody" highlight-current-row @row-click="rowick" @row-dblclick="patientDblclick" class="el-table__body-wrapper tbody" highlight-current-row @row-click="rowick" @row-dblclick="patientDblclick"
ref="patientList"> ref="patientList">
<el-table-column type="index" width="30" align="center" /> <el-table-column type="index" width="30" align="center" />
<el-table-column prop="patientNo" label="档案号" min-width="80" align="center" />
<el-table-column prop="customerOrgName" label="单位" min-width="180" show-overflow-tooltip/>
<el-table-column prop="departmentName" label="部门" min-width="120" show-overflow-tooltip>
<el-table-column prop="patientNo" label="档案号" min-width="80" align="center" sortable/>
<el-table-column prop="customerOrgName" label="单位" min-width="180" show-overflow-tooltip sortable/>
<el-table-column prop="departmentName" label="部门" min-width="120" show-overflow-tooltip sortable>
<template slot-scope="scope"> <template slot-scope="scope">
<div> <div>
{{ scope.row.customerOrgName == scope.row.departmentName ? '':scope.row.departmentName }} {{ scope.row.customerOrgName == scope.row.departmentName ? '':scope.row.departmentName }}
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="lastTime" label="末次体检" min-width="80" align="center">
<el-table-column prop="lastTime" label="末次体检" min-width="100" align="center" sortable>
<template slot-scope="scope"> <template slot-scope="scope">
<div v-if="scope.row.lastTime"> <div v-if="scope.row.lastTime">
{{ moment(scope.row.lastTime).format("yyyy-MM-DD") }} {{ moment(scope.row.lastTime).format("yyyy-MM-DD") }}
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="medicalTimes" label="次数" min-width="70" align="center" />
<el-table-column prop="displayName" label="姓名" min-width="70" align="center" />
<el-table-column prop="sexId" label="性别" min-width="50" align="center">
<el-table-column prop="medicalTimes" label="次数" min-width="70" align="center" sortable/>
<el-table-column prop="displayName" label="姓名" min-width="70" align="center" sortable/>
<el-table-column prop="sexId" label="性别" min-width="50" align="center" sortable>
<template slot-scope="scope"> <template slot-scope="scope">
<div> <div>
{{ dddw(dict.sex, "id", scope.row.sexId, "displayName") }} {{ dddw(dict.sex, "id", scope.row.sexId, "displayName") }}
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="maritalStatusId" label="婚姻" min-width="50" align="center">
<el-table-column prop="maritalStatusId" label="婚姻" min-width="50" align="center" sortable>
<template slot-scope="scope"> <template slot-scope="scope">
<div> <div>
{{ dddw(dict.maritalStatus, "id", scope.row.maritalStatusId, "displayName") }} {{ dddw(dict.maritalStatus, "id", scope.row.maritalStatusId, "displayName") }}
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="birthDate" label="出生日期" min-width="80" align="center">
<el-table-column prop="birthDate" label="出生日期" min-width="100" align="center" sortable>
<template slot-scope="scope"> <template slot-scope="scope">
<div v-if="scope.row.birthDate"> <div v-if="scope.row.birthDate">
{{ moment(scope.row.birthDate).format("yyyy-MM-DD") }} {{ moment(scope.row.birthDate).format("yyyy-MM-DD") }}
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="nationId" label="民族" min-width="50" align="center">
<el-table-column prop="nationId" label="民族" min-width="50" align="center" sortable>
<template slot-scope="scope"> <template slot-scope="scope">
<div> <div>
{{ dddw(dict.nation, "id", scope.row.nationId, "displayName") }} {{ dddw(dict.nation, "id", scope.row.nationId, "displayName") }}
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="idNo" label="身份证号" min-width="150" align="center" />
<el-table-column prop="mobileTelephone" label="手机号" min-width="110" align="center" />
<el-table-column prop="telephone" label="电话" min-width="120" align="center" />
<el-table-column prop="idNo" label="身份证号" min-width="160" align="center" sortable/>
<el-table-column prop="mobileTelephone" label="手机号" min-width="110" align="center" sortable/>
<el-table-column prop="telephone" label="电话" min-width="120" align="center" sortable/>
</el-table> </el-table>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button class="commonbutton" @click="dialogVisible = false" style="width:90px;">取消</el-button> <el-button class="commonbutton" @click="dialogVisible = false" style="width:90px;">取消</el-button>

Loading…
Cancel
Save