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 @@
-
-
-
-
-
- 登记日期:
-
-
-
-
- 条码号:
-
-
-
- 档案号:
-
-
-
- 姓名:
-
-
-
- 性别:
-
-
-
-
-
-
- 身份证号:
-
-
-
-
-
- 单位作为查询条件
-
-
- 状态:
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ ldddw(dict.completeFlag, "id", scope.row.completeFlag, "displayName") }}
-
-
-
-
- {{ scope.row.isLock == "Y" ? "是" : "否" }}
-
-
-
-
- {{ scope.row.customerOrgParentName ? scope.row.customerOrgParentName : scope.row.customerOrgName }}
-
-
-
-
- {{ scope.row.customerOrgParentName ? scope.row.customerOrgName : "" }}
-
-
-
-
-
- {{ ldddw(dict.sex, "id", scope.row.sexId, "displayName") }}
-
-
-
-
-
-
-
-
-
- {{ ldddw(dict.medicalPackage, "id", scope.row.medicalPackageId, "displayName") }}
-
-
- {{ ldddw(dict.customerOrgGroupAll, "id", scope.row.customerOrgGroupId, "displayName") }}
-
-
-
-
-
-
- {{ ldddw(dict.nation, "id", scope.row.nationId, "displayName") }}
-
-
-
-
-
-
-
- {{ lmoment(scope.row.birthDate, "yyyy-MM-DD") }}
-
-
-
-
-
-
-
-
-
-
-
-
- {{ ldddw(dict.maritalStatus, "id", scope.row.maritalStatusId, "displayName") }}
-
-
-
-
-
-
- {{ ldddw(dict.medicalType, "id", scope.row.medicalTypeId, "displayName") }}
-
-
-
-
-
-
- {{ ldddw(dict.personnelType, "id", scope.row.personnelTypeId, "displayName") }}
-
-
-
-
-
-
-
-
- {{ scope.row.isVip == "Y" ? "是" : "否" }}
-
-
-
-
-
- {{ lmoment(scope.row.creationTime, "yyyy-MM-DD") }}
-
-
-
-
- {{ scope.row.isUpload == "Y" ? "是" : "否" }}
-
-
-
-
-
-
-
-
-
-
-
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 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 加载中...
-
-
-
-
-
-
-
-
- 拍照
-
-
- 读身份证
-
-
- 复制新增
-
-
- 保存
-
-
- 检验单申请
-
-
- 条码打印
-
-
- 条码补打
-
-
- 指引单打印
-
-
- 指引单预览
-
-
- 手动合并项目
-
-
-
- 全个人支付
-
-
- 全单位支付
-
-
- 全赠送
-
-
- 收费
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ moment(scope.row.lastTime).format("yyyy-MM-DD") }}
-
-
-
-
-
-
-
-
- {{ dddw(dict.sex, "id", scope.row.sexId, "displayName") }}
-
-
-
-
-
-
- {{ dddw(dict.maritalStatus, "id", scope.row.maritalStatusId, "displayName") }}
-
-
-
-
-
-
- {{ moment(scope.row.birthDate).format("yyyy-MM-DD") }}
-
-
-
-
-
-
- {{ dddw(dict.nation, "id", scope.row.nationId, "displayName") }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
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 @@
-
-
-
-
- 项目类别
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 添加
-
-
-
- 全添加
-
-
-
- 移除
-
-
-
- 全移除
-
-
-
-
-
-
-
-
-
- 折扣
-
-
-
-
-
- 总金额
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ scope.row.asbitemName }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ dddw(dict.checkCompleteFlag, "id", scope.row.checkCompleteFlag, "displayName") }}
-
-
-
-
-
-
-
-
-
-
- {{ scope.row.creationTime ? moment(scope.row.creationTime).format('yyyy-MM-DD'):'' }}
-
-
-
-
-
-
-
-
-
-
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;
}
});