From ef70ce1f8fa30543fbf88627638cc39eb7598f9f Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期六, 22 二月 2025 21:07:16 +0800
Subject: [PATCH] 项目投资及资金来源增设:地方政府专项债券、超长期特别国债

---
 src/utils/dict/DictData.js |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/utils/dict/DictData.js b/src/utils/dict/DictData.js
index afc763e..5190286 100644
--- a/src/utils/dict/DictData.js
+++ b/src/utils/dict/DictData.js
@@ -3,11 +3,13 @@
  * @property {String} label 鏍囩
  * @property {*} value 鏍囩
  * @property {Object} raw 鍘熷鏁版嵁
+ * @property {Object} children 瀛愭爣绛�
  */
 export default class DictData {
-  constructor(label, value, raw) {
+  constructor(label, value, raw, children) {
     this.label = label
     this.value = value
     this.raw = raw
+    this.children = children.length > 0 ? children : undefined
   }
 }

--
Gitblit v1.8.0