|
|
|
@ -24,7 +24,7 @@ |
|
|
|
<div class="query"> |
|
|
|
<span>性别:</span> |
|
|
|
<el-select v-model="local.query.sex" placeholder="请选择" clearable style="width: 80px" size="small"> |
|
|
|
<el-option v-for="item in dict.forSex" :key="item.id" :label="item.displayName" :value="item.id"> |
|
|
|
<el-option v-for="item in dict.sex" :key="item.id" :label="item.displayName" :value="item.id"> |
|
|
|
</el-option> |
|
|
|
</el-select> |
|
|
|
</div> |
|
|
|
@ -108,10 +108,10 @@ |
|
|
|
<el-table-column label="分组/套餐" width="150"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div v-if="scope.row.medicalPackageId !== dict.personOrgId && scope.row.customerOrgId === dict.personOrgId"> |
|
|
|
{{ dddw(dict.medicalPackage, "id", scope.row.medicalPackageId, "displayName") }} |
|
|
|
{{ scope.row.medicalPackageName }} |
|
|
|
</div> |
|
|
|
<div v-if="scope.row.medicalPackageId !== dict.personOrgId && scope.row.customerOrgId !== dict.personOrgId"> |
|
|
|
{{ dddw(dict.customerOrgGroupAll, "id", scope.row.customerOrgGroupId, "displayName") }} |
|
|
|
{{ scope.row.customerOrgGroupName }} |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
@ -314,13 +314,34 @@ export default { |
|
|
|
}] |
|
|
|
this.patientRegister.query.cusOrgOCX = `(体检${today}~${today})` |
|
|
|
|
|
|
|
|
|
|
|
/* 首次使用时,再调用 |
|
|
|
//分组,所有分组,不限单位,不限次数 |
|
|
|
postapi("/api/app/CustomerOrgGroup/GetBasicList").then((res) => { |
|
|
|
if (res.code > -1) { |
|
|
|
this.dict.customerOrgGroupAll = res.data; |
|
|
|
} |
|
|
|
}); |
|
|
|
*/ |
|
|
|
//性别(查询) |
|
|
|
getapi("/api/app/for-sex").then((res) => { |
|
|
|
if (res.code == 1) { |
|
|
|
this.dict.forSex = res.data; |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
//性别(仅档案用) |
|
|
|
getapi("/api/app/sex").then((res) => { |
|
|
|
if (res.code == 1) { |
|
|
|
this.dict.sex = res.data; |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
//体检类别 |
|
|
|
getapi("/api/app/medical-type/in-filter").then((res) => { |
|
|
|
if (res.code == 1) { |
|
|
|
this.dict.medicalType = res.data; |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
// 获取组合项目 |
|
|
|
postapi('/api/app/asbitem/GetBasicList', { isFilterActive: 'Y' }).then(res => { |
|
|
|
@ -330,6 +351,7 @@ export default { |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
// 用户 |
|
|
|
let operatorTypes = ["2", "3"] |
|
|
|
if (this.win == 'doctorCheck') operatorTypes = ["1", "3"] |
|
|
|
|