Explorar el Código

feat:更换简历跳转地址

zhangsiya hace 2 meses
padre
commit
c0e7cd6ee3
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      tpl/page1.html

+ 2 - 1
tpl/page1.html

@@ -35,13 +35,14 @@
       </div>
   </div>
   <script>
+
     var uuid = "{{.UUID}}";
     // 建立 SSE 连接,监听后端绑定事件
     var source = new EventSource("/resume/events?uuid=" + encodeURIComponent(uuid));
     source.addEventListener('bind', function(e) {
         var data = JSON.parse(e.data);
         // 当绑定后自动跳转到页面2,将 uuid 和 resume_id 作为参数传递
-        window.location.href = "https://bidevtest.jydev.jianyu360.com/succbi/zpgl/app/zpgl.app/biographical_notes.spg?:user=resume_visitor&:password=visitor123&notes_id=" + data.resume_id;
+        window.location.href = "https://jybx2-webtest.jydev.jianyu360.com/succbi/zpgl/app/zpgl.app/biographical_notes.spg?:user=resume_visitor&:password=visitor123&notes_id=" + data.resume_id;
     }, false);
     source.onerror = function(e) {
         console.error("SSE error", e);