From 4a658573bb8a13526ff2ecbd5413324a1512e942 Mon Sep 17 00:00:00 2001 From: LiuJiaNan <15703339975@163.com> Date: Tue, 28 Oct 2025 14:21:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=9E=9A=E4=B8=BE=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- enum/dictionary/index.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 enum/dictionary/index.js diff --git a/enum/dictionary/index.js b/enum/dictionary/index.js new file mode 100644 index 0000000..34b252f --- /dev/null +++ b/enum/dictionary/index.js @@ -0,0 +1,15 @@ +/** + * 是否类型枚举 + */ +export const RADIO_WHETHER_ENUM = [ + { id: "1", name: "是" }, + { id: "0", name: "否" }, +]; + +/** + * 有无类型枚举 + */ +export const RADIO_PRESENCE_OR_ABSENCE_ENUM = [ + { id: "1", name: "有" }, + { id: "0", name: "无" }, +];