Browse Source

no message

xiaochan 1 month ago
parent
commit
9f41c9c38f
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/views/system/JumpRedirect.vue

+ 1 - 2
src/views/system/JumpRedirect.vue

@@ -68,14 +68,13 @@ const openAddress = {
       times: XEUtils.toNumber(param.times),
       deptCode: param.dept,
     };
-    console.log(data);
     if (stringIsBlank(data.patientId)) {
       setMsg("门诊号不能为空");
     }
     if (stringIsBlank(data.times)) {
       setMsg("住院次数不能为空");
     }
-    // routerPush(`/mzEmrEditorV2?params=${window.btoa(JSON.stringify(data))}`);
+    routerPush(`/mzEmrEditorV2?params=${window.btoa(JSON.stringify(data))}`);
   },
 };