Browse Source

fix: 预约挂号列表页面的pageIndex限制为1

carver 2 years ago
parent
commit
4f9672b18c

+ 1 - 1
antbuilder/industry/hospital/hooks/index.js

@@ -29,7 +29,7 @@ registerHooks({
 					code: ["code"],
 					// Http返回数据中的error message字段名称
 					msg: ["msg"],
-					miniVersion: globalExt.miniVersion || "0.0.52",
+					miniVersion: globalExt.miniVersion || "0.0.53",
 				});
 				monitor.setCommonInfo({
 					tag: this.globalData.appId,

+ 1 - 1
antbuilder/industry/hospitalV2/components/subscribe-record/index.js

@@ -50,7 +50,7 @@ Component(
 
 			/* 分页逻辑 */
 			async onService(params) {
-				if (!this.hisPatientId) return;
+				if (!this.hisPatientId || params.pageIndex > 1) return;
 				return services.getSubscribeRecordList(
 					Object.assign(
 						{

+ 1 - 1
config.by.prod.json

@@ -14,7 +14,7 @@
 			"debugTemplateUuid": "",
 			"env": "prod",
 			"terminal": 24,
-			"miniVersion": "0.0.52"
+			"miniVersion": "0.0.53"
 		}
 	}
 }

+ 1 - 1
config.by.qa.json

@@ -14,7 +14,7 @@
 			"debugTemplateUuid": "",
 			"env": "qa",
 			"terminal": 24,
-			"miniVersion": "0.0.52"
+			"miniVersion": "0.0.53"
 		}
 	}
 }

+ 1 - 1
config.json

@@ -14,7 +14,7 @@
 			"debugTemplateUuid": "",
 			"env": "qa",
 			"terminal": 24,
-			"miniVersion": "0.0.52"
+			"miniVersion": "0.0.53"
 		}
 	}
 }