IO-1722 replaced hex to rgba

This commit is contained in:
swtmply
2023-05-06 02:56:02 +08:00
parent 08e5543536
commit 3988386c79
3 changed files with 12 additions and 11 deletions

View File

@@ -396,7 +396,7 @@ export function ShopInfoROStatusComponent({ bodyshop, form }) {
);
}
const ColorPicker = ({ value, onChange, style, ...restProps }) => {
export const ColorPicker = ({ value, onChange, style, ...restProps }) => {
const handleChange = (color) => {
if (onChange) onChange(color.rgb);
};

View File

@@ -15,6 +15,7 @@ import { useTranslation } from "react-i18next";
import ColorpickerFormItemComponent from "../form-items-formatted/colorpicker-form-item.component";
import FormListMoveArrows from "../form-list-move-arrows/form-list-move-arrows.component";
import LayoutFormRow from "../layout-form-row/layout-form-row.component";
import { ColorPicker } from "./shop-info.rostatus.component";
export default function ShopInfoSchedulingComponent({ form }) {
const { t } = useTranslation();
@@ -283,7 +284,7 @@ export default function ShopInfoSchedulingComponent({ form }) {
key={`${index}color`}
name={[field.name, "color"]}
>
<ColorpickerFormItemComponent />
<ColorPicker />
</Form.Item>
<Space wrap>