|
@@ -8,6 +8,7 @@ import { useSize } from "ahooks";
|
|
|
import { useModel } from "@umijs/max";
|
|
|
import { useAjax } from "@/Hook/useAjax";
|
|
|
import { appComponentConfigAddOrUpdate, appComponentConfigGetAppPageList } from "@/services/miniApp/compConfig";
|
|
|
+import MiniBox from "./miniBox";
|
|
|
// 定义组件的 Props 类型
|
|
|
interface Props {
|
|
|
listApi: any
|
|
@@ -112,6 +113,8 @@ const ModalForm = forwardRef((props: Props, ref) => {
|
|
|
{/* 中间展示 content*/}
|
|
|
<Col xl={13} xs={24} style={{ background: token.colorBgContainerDisabled, display: 'flex', alignItems: 'center', justifyContent: 'center' }}>
|
|
|
<Content ref={ContentRef} />
|
|
|
+ {/* 小视窗用户对手机模型的板块拖动删除等操作 */}
|
|
|
+ <MiniBox />
|
|
|
</Col>
|
|
|
{/* 右侧参数设置 set*/}
|
|
|
<Col xl={6} xs={24}>
|