diff --git a/acupuncture-前台/src/views/screening/h5eva.vue b/acupuncture-前台/src/views/screening/h5eva.vue
index e5bfd303c..b6948d3fe 100644
--- a/acupuncture-前台/src/views/screening/h5eva.vue
+++ b/acupuncture-前台/src/views/screening/h5eva.vue
@@ -283,17 +283,22 @@
:show-close="false"
:close-on-click-modal="false"
>
-
+
+
- 编辑信息
-
-
- 查看结论
+ 确认
@@ -313,6 +318,7 @@ export default {
name: "Notice",
data() {
return {
+ popupRadio: 1,
open: false,
loading: false,
disabled: true,
@@ -648,22 +654,22 @@ export default {
},
methods: {
// 编辑信息
- handleContinue() {
- this.form = { ...this.form, ...this.detailList };
- setTimeout(() => {
+ handlePopupVerify() {
+ if (this.popupRadio === 1) {
+ this.form = { ...this.form, ...this.detailList };
+ setTimeout(() => {
+ this.open = false;
+ }, 500);
+ } else {
+ this.$router.replace({
+ path: "/screening/h5Result",
+ query: {
+ tenantName: this.tenantName,
+ data: JSON.stringify(this.detailList),
+ },
+ });
this.open = false;
- }, 500);
- },
- // 查看结果
- handleResult() {
- this.$router.replace({
- path: "/screening/h5Result",
- query: {
- tenantName: this.tenantName,
- data: JSON.stringify(this.detailList),
- },
- });
- this.open = false;
+ }
},
// 通过手机号查询
getqueryDetailNoToken() {
@@ -985,6 +991,13 @@ export default {