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/WatchRgvCard.js | 45 ++++++++++++++++++++++-----------------------
1 files changed, 22 insertions(+), 23 deletions(-)
diff --git a/src/main/webapp/components/WatchRgvCard.js b/src/main/webapp/components/WatchRgvCard.js
index 7adaf36..881b896 100644
--- a/src/main/webapp/components/WatchRgvCard.js
+++ b/src/main/webapp/components/WatchRgvCard.js
@@ -112,31 +112,30 @@
this.currentPage = 1;
},
getRgvStateInfo() {
+ if (this.$root.sendWs) {
+ this.$root.sendWs(JSON.stringify({
+ "url": "/rgv/table/rgv/state",
+ "data": {}
+ }));
+ }
+ },
+ setRgvList(res) {
let that = this;
- $.ajax({
- url: baseUrl + "/rgv/table/rgv/state",
- headers: {
- token: localStorage.getItem("token"),
- },
- method: "post",
- success: (res) => {
- if (res.code == 200) {
- let list = res.data || [];
- if (that.searchRgvNo == "") {
- that.rgvList = list;
- } else {
- let tmp = [];
- list.forEach((item) => {
- if (item.rgvNo == that.searchRgvNo) {
- tmp.push(item);
- }
- });
- that.rgvList = tmp;
- that.currentPage = 1;
+ if (res.code == 200) {
+ let list = res.data || [];
+ if (that.searchRgvNo == "") {
+ that.rgvList = list;
+ } else {
+ let tmp = [];
+ list.forEach((item) => {
+ if (item.rgvNo == that.searchRgvNo) {
+ tmp.push(item);
}
- }
- },
- });
+ });
+ that.rgvList = tmp;
+ that.currentPage = 1;
+ }
+ }
},
openControl() {
this.showControl = !this.showControl;
--
Gitblit v1.9.1