fix: fixed ui of deal ff info editor
This commit is contained in:
@ -0,0 +1,19 @@
|
|||||||
|
import { Divider, Title } from "@mantine/core";
|
||||||
|
import FulfillmentAttributesEditor from "@/modules/dealModularEditorTabs/FulfillmentBase/desktop/components/FulfillmentAttributesEditor/FulfillmentAttributesEditor";
|
||||||
|
|
||||||
|
const CommonInfoView = () => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Title
|
||||||
|
ta={"center"}
|
||||||
|
order={3}
|
||||||
|
w={"100%"}>
|
||||||
|
Общая информация
|
||||||
|
</Title>
|
||||||
|
<Divider />
|
||||||
|
<FulfillmentAttributesEditor />
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default CommonInfoView;
|
||||||
@ -1,8 +1,8 @@
|
|||||||
import { Flex, Stack } from "@mantine/core";
|
import { Flex, Stack } from "@mantine/core";
|
||||||
|
import CommonInfoView from "@/modules/dealModularEditorTabs/FulfillmentBase/desktop/components/CommonInfoView/CommonInfoView";
|
||||||
import ProductsActions from "@/modules/dealModularEditorTabs/FulfillmentBase/desktop/components/DealInfoView/components/ProductsActions/ProductsActions";
|
import ProductsActions from "@/modules/dealModularEditorTabs/FulfillmentBase/desktop/components/DealInfoView/components/ProductsActions/ProductsActions";
|
||||||
import TotalPriceLabel from "@/modules/dealModularEditorTabs/FulfillmentBase/desktop/components/DealInfoView/components/TotalPriceLabel/TotalPriceLabel";
|
import TotalPriceLabel from "@/modules/dealModularEditorTabs/FulfillmentBase/desktop/components/DealInfoView/components/TotalPriceLabel/TotalPriceLabel";
|
||||||
import DealServicesTable from "@/modules/dealModularEditorTabs/FulfillmentBase/desktop/components/DealServicesTable/DealServicesTable";
|
import DealServicesTable from "@/modules/dealModularEditorTabs/FulfillmentBase/desktop/components/DealServicesTable/DealServicesTable";
|
||||||
import FulfillmentAttributesEditor from "@/modules/dealModularEditorTabs/FulfillmentBase/desktop/components/FulfillmentAttributesEditor/FulfillmentAttributesEditor";
|
|
||||||
import styles from "@/modules/dealModularEditorTabs/FulfillmentBase/FulfillmentBase.module.css";
|
import styles from "@/modules/dealModularEditorTabs/FulfillmentBase/FulfillmentBase.module.css";
|
||||||
|
|
||||||
const DealInfoView = () => (
|
const DealInfoView = () => (
|
||||||
@ -13,7 +13,7 @@ const DealInfoView = () => (
|
|||||||
gap={"sm"}
|
gap={"sm"}
|
||||||
direction={"column"}
|
direction={"column"}
|
||||||
className={styles.container}>
|
className={styles.container}>
|
||||||
<FulfillmentAttributesEditor />
|
<CommonInfoView />
|
||||||
</Flex>
|
</Flex>
|
||||||
<Flex
|
<Flex
|
||||||
gap={"sm"}
|
gap={"sm"}
|
||||||
|
|||||||
@ -13,7 +13,7 @@ const DealServicesTable: FC = () => {
|
|||||||
<Flex
|
<Flex
|
||||||
direction={"column"}
|
direction={"column"}
|
||||||
gap={"sm"}
|
gap={"sm"}
|
||||||
h={"73vh"}>
|
h={"58vh"}>
|
||||||
<DealServicesTitle />
|
<DealServicesTitle />
|
||||||
<ScrollArea
|
<ScrollArea
|
||||||
flex={1}
|
flex={1}
|
||||||
|
|||||||
Reference in New Issue
Block a user