diff --git a/src/components/doctorCheck/PatientRegisterListBak.vue b/src/components/doctorCheck/PatientRegisterListBak.vue deleted file mode 100644 index 242c786..0000000 --- a/src/components/doctorCheck/PatientRegisterListBak.vue +++ /dev/null @@ -1,335 +0,0 @@ - - - diff --git a/src/components/patientRegister/PatientLis.vue b/src/components/patientRegister/PatientLis.vue index f901917..f797974 100644 --- a/src/components/patientRegister/PatientLis.vue +++ b/src/components/patientRegister/PatientLis.vue @@ -4,9 +4,9 @@
- -
- +
+
加载中...
@@ -261,7 +261,7 @@ export default { oneClick: 0, // 1 表示行单击一次 DbClick: 0, // 1 表示行有单击第二次 - lisLabel:'https://fuss10.elemecdn.com/1/8e/aeffeb4de74e2fde4bd74fc7b4486jpeg.jpeg', + lisLabel: 'https://fuss10.elemecdn.com/1/8e/aeffeb4de74e2fde4bd74fc7b4486jpeg.jpeg', }; }, @@ -295,9 +295,17 @@ export default { "customerOrg", ]), + // 照片显示 peoplePhoto() { return photoParse(this.tableDataCurrentRow.photo) + }, + + // 表体高度 + tableHeight() { + let fixHeight = this.window.pageHeight < 600 ? 600 : this.window.pageHeight + return Math.floor((fixHeight - 243) * 2 / 3) } + }, methods: { ...mapActions(["getCustomerOrgGroup", "getPatientRegisterAbs"]), @@ -524,7 +532,7 @@ export default { "yyyy-MM-DD" ); if (body.startDate > body.endDate) { - this.$message.warning({ showClose: true, message: "起始日期不能大于截止日期,数据校验不通过!"}); + this.$message.warning({ showClose: true, message: "起始日期不能大于截止日期,数据校验不通过!" }); return; } } @@ -544,8 +552,8 @@ export default { }; console.log("/api/app/LisRequest/GetListInFilter", body); - - postapi("/api/app/LisRequest/GetListInFilter", body) + // /api/app/patientregister/getlistinfilter + postapi("/api/app/patientregister/getlistinfilter", body) .then(res => { if (res.code != -1) { // 刷新最大记录数 @@ -622,7 +630,7 @@ export default { let isPrintLisRequest = false; let res = null; if (prId.length < 1) { - this.$message.info({ showClose: true, message: "人员信息尚未保存,不可执行此操作!"}); + this.$message.info({ showClose: true, message: "人员信息尚未保存,不可执行此操作!" }); return; } @@ -668,7 +676,7 @@ export default { //检验条码打印 lisPrint(prId, ReportCode, isPreview) { if (!this.$peisAPI) { - this.$message.info({ showClose: true, message: "此功能,需要在壳客户端才可运行!"}); + this.$message.info({ showClose: true, message: "此功能,需要在壳客户端才可运行!" }); return; } @@ -677,8 +685,8 @@ export default { let toOutShell = { ReportCode, token, - isBuildImage:'N', - IsUploadPdf:'N', + isBuildImage: 'N', + IsUploadPdf: 'N', preViewCanPrint: "N", Parameters: [ { Name: "printer", Value: user }, @@ -785,8 +793,8 @@ export default { let toOutShell = { ReportCode, token, - isBuildImage:'N', - IsUploadPdf:'N', + isBuildImage: 'N', + IsUploadPdf: 'N', preViewCanPrint: "Y", Parameters: [ { Name: "printer", Value: user }, diff --git a/src/components/patientRegister/PatientRegisterEditBak240401.vue b/src/components/patientRegister/PatientRegisterEditBak240401.vue deleted file mode 100644 index 1d38716..0000000 --- a/src/components/patientRegister/PatientRegisterEditBak240401.vue +++ /dev/null @@ -1,1791 +0,0 @@ - - - diff --git a/src/components/patientRegister/PatientRegisterItem240407.vue b/src/components/patientRegister/PatientRegisterItem240407.vue deleted file mode 100644 index d83c41b..0000000 --- a/src/components/patientRegister/PatientRegisterItem240407.vue +++ /dev/null @@ -1,1189 +0,0 @@ - - - - diff --git a/src/views/customerOrg/patientLis.vue b/src/views/customerOrg/patientLis.vue index fc71a30..7f87df2 100644 --- a/src/views/customerOrg/patientLis.vue +++ b/src/views/customerOrg/patientLis.vue @@ -137,9 +137,9 @@ export default { }); //分组,所有分组,不限单位,不限次数 - getapi("/api/app/customer-org-group?MaxResultCount=1000").then((res) => { - if (res.code == 1) { - this.dict.customerOrgGroupAll = res.data.items; + getapi("/api/app/customerorggroup/getlistinfilter").then((res) => { + if (res.code > -1) { + this.dict.customerOrgGroupAll = res.data; } });