pengjun 4 months ago
parent
commit
95c4fc208f
  1. 2
      src/components/doctorCheck/PatientRegisterList.vue
  2. 8
      src/components/patientRegister/PatientRegisterEdit.vue
  3. 805
      src/components/patientRegister/PatientRegisterList.vue
  4. 5
      src/components/report/BtnReport.vue
  5. 13
      src/components/report/PatientRegisterListNobtn.vue
  6. 2
      src/components/sumDoctorCheck/SumAsbItemStatus.vue

2
src/components/doctorCheck/PatientRegisterList.vue

@ -603,7 +603,7 @@ export default {
/* 部份已检 */
::v-deep .el-table .complete2 {
background: #b9cee9 !important;
background: #ec7504 !important;
}
/* 总检 */
::v-deep .el-table .complete3 {

8
src/components/patientRegister/PatientRegisterEdit.vue

@ -1438,6 +1438,7 @@ export default {
this.peisid = window.sessionStorage.getItem('peisid');
let customerOrgId, customerOrgName, customerOrgParentId
if (this.patientRegister.query.customerOrgId) {
customerOrgParentId = this.patientRegister.query.CustomerOrgParentId
customerOrgId = this.patientRegister.query.customerOrgId
@ -1447,6 +1448,7 @@ export default {
customerOrgId = this.form.customerOrgId
customerOrgName = this.form.customerOrgName
}
this.preCustomerOrgId = this.patientRegister.query.customerOrgId
if (!patientRegisterId) { //
this.form = Object.assign({}, this.form, this.formInit)
@ -2371,8 +2373,10 @@ export default {
btnAdd() {
//
this.clearPerson()
this.dataTransOpts.tableS.patient_register.id = ''
this.dataTransOpts.refresh.patient_register.S++
// this.dataTransOpts.tableS.patient_register.id = ''
// this.dataTransOpts.refresh.patient_register.S++
this.dataTransOpts.tableM.register_check_asbitem = []
//this.changeItemType(deepCopy(this.dataTransOpts.copyGroup.itemTypeIds))
},
//

805
src/components/patientRegister/PatientRegisterList.vue
File diff suppressed because it is too large
View File

5
src/components/report/BtnReport.vue

@ -994,7 +994,8 @@ export default {
// pdf
try {
if (e.completeFlag == "3") {
//
//if (e.completeFlag == "3") {
toOutShell.BusinessCode = e.patientRegisterId;
toOutShell.ExportDirectory = `${path}\\${e.patientName}_${e.patientRegisterNo}.pdf`;
toOutShell.customerOrgName = e.customerOrgName || ""; //
@ -1006,7 +1007,7 @@ export default {
if (JSON.parse(res).code < 0) {
console.log("this.$peisAPI.exportToPdfPre err", res);
}
}
//}
} catch (error) {
console.log("error", error);
this.$message.warning({ showClose: true, message: error });

13
src/components/report/PatientRegisterListNobtn.vue

@ -159,6 +159,19 @@ export default {
this.loadOptsInit = Object.assign({}, this.loadOpts)
this.patientRegister.prList = []
try {
let LocalConfig = JSON.parse(
window.localStorage.getItem("LocalConfig") || null
);
if (LocalConfig?.normal?.maxResultCount) {
this.loadOpts.maxResultCount =
LocalConfig.normal.maxResultCount;
}
} catch (error) {
console.log('window.localStorage.getItem("LocalConfig")', error);
}
//
postapi('/api/app/SysParmValue/GetSysParmValueBySysParmId', { sysParmId: "summary_check_doctor_alias" })
.then(res => {

2
src/components/sumDoctorCheck/SumAsbItemStatus.vue

@ -3,7 +3,7 @@
<div class="asbitemListClass">
<div class="asbTitle">未检组合项目</div>
<div style="overflow-y:auto; height:68px;width:100%; margin-top:2px;border: 1px solid;">
<el-tag style="color:#303133;background-color: white;margin-left: 5px;" v-for="item in data.unCheckedAsbitem" :key="item" size="mini">{{
<el-tag style="color:red;background-color: white;margin-left: 5px;" v-for="item in data.unCheckedAsbitem" :key="item" size="mini">{{
item }}</el-tag>
</div>
</div>

Loading…
Cancel
Save