From 2f8a257efd2b64dc40666b0d332edb7824a9768d Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: 星期日, 27 四月 2025 09:58:29 +0800
Subject: [PATCH] remove all semicolons

---
 src/store/modules/dict.js |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/store/modules/dict.js b/src/store/modules/dict.js
index 7e62a67..af1a3fa 100644
--- a/src/store/modules/dict.js
+++ b/src/store/modules/dict.js
@@ -8,16 +8,16 @@
       // 鑾峰彇瀛楀吀
       getDict(_key) {
         if (_key == null && _key == "") {
-          return null;
+          return null
         }
         try {
           for (let i = 0; i < this.dict.length; i++) {
             if (this.dict[i].key == _key) {
-              return this.dict[i].value;
+              return this.dict[i].value
             }
           }
         } catch (e) {
-          return null;
+          return null
         }
       },
       // 璁剧疆瀛楀吀
@@ -26,27 +26,27 @@
           this.dict.push({
             key: _key,
             value: value
-          });
+          })
         }
       },
       // 鍒犻櫎瀛楀吀
       removeDict(_key) {
-        var bln = false;
+        var bln = false
         try {
           for (let i = 0; i < this.dict.length; i++) {
             if (this.dict[i].key == _key) {
-              this.dict.splice(i, 1);
-              return true;
+              this.dict.splice(i, 1)
+              return true
             }
           }
         } catch (e) {
-          bln = false;
+          bln = false
         }
-        return bln;
+        return bln
       },
       // 娓呯┖瀛楀吀
       cleanDict() {
-        this.dict = new Array();
+        this.dict = new Array()
       },
       // 鍒濆瀛楀吀
       initDict() {

--
Gitblit v1.9.3