Commit da3eed61 authored by 何鹏程's avatar 何鹏程

修改患者列表

parent b0787e19
......@@ -134,7 +134,7 @@ export default {
},
{
name: '性别',
key: 'createUserName',
key: 'sex',
sortable: false,
width: '80',
fixed: false,
......@@ -144,49 +144,52 @@ export default {
},
{
name: '身份证号',
key: 'operateType',
key: 'identityNumber',
sortable: false,
width: '200',
width: '180',
fixed: false
},
{
name: '120急救申请时间',
key: 'requestUri',
key: 'firstAidApplicationTime',
sortable: false,
width: '100',
width: '200',
fixed: false
},
{
name: '车牌号',
key: 'requestUri',
key: 'licensePlateNumber',
sortable: false,
width: '100',
fixed: false
},
{
name: '申请机构',
key: 'requestUri',
key: 'applicant',
sortable: false,
width: '100',
fixed: false
},
{
name: '接诊医院',
key: 'requestUri',
key: 'clinicalHospital',
sortable: false,
width: '100',
fixed: false
},
{
name: '请求绿道',
key: 'requestUri',
key: 'patientType',
sortable: false,
width: '100',
fixed: false
fixed: false,
formatter: (row, column, cellValue, index) => {
return ['', '胸痛中心', '卒中中心', '创伤中心', '烧伤中心'][cellValue] || ''
}
},
{
name: '院前诊断',
key: 'requestUri',
key: 'preHospitalDiagnosis',
sortable: false,
width: '100',
fixed: false
......@@ -209,12 +212,12 @@ export default {
getTableData() {
this.tableData.loading = true
const params = {
operateType: this.searchForm.operateType,
patientType: this.searchForm.patientType,
pageNo: this.pageNum,
pageSize: this.pageSize
}
if (this.searchForm.time && this.searchForm.time.length === 2) {
params.createTime = this.searchForm.time[0] + "_" + this.searchForm.time[1]
params.time = this.searchForm.time[0] + "_" + this.searchForm.time[1]
}
queryIntegrationList(params).then((res) => {
if (res.msg == 201) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment