From d3a67d3573d2e7a27fbfbb472783338808a30d78 Mon Sep 17 00:00:00 2001 From: yms Date: Thu, 14 Nov 2024 20:57:21 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CustomFormComponents/FormInput/{index.less => index.css} | 0 src/components/CustomFormComponents/FormInput/index.tsx | 2 +- .../Group/{index.module.css => index.css} | 0 src/components/CustomFormComponents/Group/index.tsx | 4 +--- 4 files changed, 2 insertions(+), 4 deletions(-) rename src/components/CustomFormComponents/FormInput/{index.less => index.css} (100%) rename src/components/CustomFormComponents/Group/{index.module.css => index.css} (100%) diff --git a/src/components/CustomFormComponents/FormInput/index.less b/src/components/CustomFormComponents/FormInput/index.css similarity index 100% rename from src/components/CustomFormComponents/FormInput/index.less rename to src/components/CustomFormComponents/FormInput/index.css diff --git a/src/components/CustomFormComponents/FormInput/index.tsx b/src/components/CustomFormComponents/FormInput/index.tsx index 22b9716..cf2175a 100644 --- a/src/components/CustomFormComponents/FormInput/index.tsx +++ b/src/components/CustomFormComponents/FormInput/index.tsx @@ -1,5 +1,5 @@ import { View, Input } from "@tarojs/components"; -import "./index.less"; +import "./index.css"; interface FormInputProps { placeholder?: string; diff --git a/src/components/CustomFormComponents/Group/index.module.css b/src/components/CustomFormComponents/Group/index.css similarity index 100% rename from src/components/CustomFormComponents/Group/index.module.css rename to src/components/CustomFormComponents/Group/index.css diff --git a/src/components/CustomFormComponents/Group/index.tsx b/src/components/CustomFormComponents/Group/index.tsx index a30e7b0..4d3bad6 100644 --- a/src/components/CustomFormComponents/Group/index.tsx +++ b/src/components/CustomFormComponents/Group/index.tsx @@ -1,11 +1,9 @@ -import "./index.module.css"; import { useEffect, useMemo, useState } from "react"; - import { cloneDeep, isEqual } from "lodash"; import RenderComponent from "../FormComponentRender"; import { View } from "@tarojs/components"; import { Flex, Row, Col } from "@taroify/core"; - +import "./index.css"; interface GroupProps { value: boolean | string; onChange?: (value: Record[]) => void; -- GitLab