From 32004d6bb7db528c151cca5bd78c4e557171a9ee Mon Sep 17 00:00:00 2001
From: Junjie <DELL@qq.com>
Date: 星期二, 23 十二月 2025 14:09:54 +0800
Subject: [PATCH] #

---
 src/main/webapp/components/WatchCrnCard.js |   47 +++++++++++++++++++++++------------------------
 1 files changed, 23 insertions(+), 24 deletions(-)

diff --git a/src/main/webapp/components/WatchCrnCard.js b/src/main/webapp/components/WatchCrnCard.js
index 96a8574..e460b0a 100644
--- a/src/main/webapp/components/WatchCrnCard.js
+++ b/src/main/webapp/components/WatchCrnCard.js
@@ -105,6 +105,7 @@
       handler(newVal, oldVal) {
         if (newVal.crnNo != 0) {
           this.activeNames = newVal.crnNo;
+          this.searchCrnNo = newVal.crnNo;
           const idx = this.crnList.findIndex(i => i.crnNo == newVal.crnNo);
           if (idx >= 0) { this.currentPage = Math.floor(idx / this.pageSize) + 1; }
         }
@@ -122,33 +123,31 @@
       this.currentPage = 1;
     },
     getCrnStateInfo() {
+      if (this.$root.sendWs) {
+        this.$root.sendWs(JSON.stringify({
+          "url": "/crn/table/crn/state",
+          "data": {}
+        }));
+      }
+    },
+    setCrnList(res) {
       let that = this;
-      $.ajax({
-        url: baseUrl + "/crn/table/crn/state",
-        headers: {
-          token: localStorage.getItem("token"),
-        },
-        method: "post",
-        success: (res) => {
-          // 鍫嗗灈鏈轰俊鎭〃鑾峰彇
-          if (res.code == 200) {
-            let list = res.data;
+      if (res.code == 200) {
+        let list = res.data;
 
-            if (that.searchCrnNo == "") {
-              that.crnList = list;
-            } else {
-              let tmp = [];
-              list.forEach((item) => {
-                if (item.crnNo == that.searchCrnNo) {
-                  tmp.push(item);
-                }
-              });
-              that.crnList = tmp;
-              that.currentPage = 1;
+        if (that.searchCrnNo == "") {
+          that.crnList = list;
+        } else {
+          let tmp = [];
+          list.forEach((item) => {
+            if (item.crnNo == that.searchCrnNo) {
+              tmp.push(item);
             }
-          }
-        },
-      });
+          });
+          that.crnList = tmp;
+          that.currentPage = 1;
+        }
+      }
     },
     openControl() {
       this.showControl = !this.showControl;

--
Gitblit v1.9.1