From 2592dc279ec82bf3649a4dbe644c6416263a10ef Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期五, 07 三月 2025 17:10:25 +0800
Subject: [PATCH] 各模块功能新增

---
 src/stores/grid-info.js |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/stores/grid-info.js b/src/stores/grid-info.js
index c193329..3b673d6 100644
--- a/src/stores/grid-info.js
+++ b/src/stores/grid-info.js
@@ -1,11 +1,13 @@
 import { ref } from 'vue';
 import { defineStore } from 'pinia';
 
-// 璧拌埅璁惧
 export const useGridStore = defineStore('grid', () => {
+  // 缃戞牸鎺у埗绫婚泦鍚�
+  const gridClzList = ref([]);
+
   const selectedSatelliteProxy = undefined;
 
   const selectedGridCellAndDataDetail = ref(undefined);
 
-  return { selectedSatelliteProxy, selectedGridCellAndDataDetail };
+  return { gridClzList, selectedSatelliteProxy, selectedGridCellAndDataDetail };
 });

--
Gitblit v1.9.3