pay-admin/src/pages/company/list/table/CustomerEnd.tsx
2026-01-15 18:46:34 +08:00

47 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { MyBetaModalFormProps, MyButtons } from '@/common';
import { ProCard } from '@ant-design/pro-components';
import { useNavigate } from '@umijs/max';
export default function CustomerEnd(props: MyBetaModalFormProps) {
const navigate = useNavigate();
return (
<div>
<ProCard title="客户端小程序配置" bordered headerBordered gutter={16}>
<ProCard
title="品牌主色、全局渐变色配置"
type="inner"
bordered
extra={
<MyButtons.Default
title="去配置"
type="primary"
size="small"
onClick={() => {
navigate(
`/company/list/pages/set_page_info?id=${props?.item?.id}`,
);
}}
/>
}
>
<div style={{ height: '80px' }}>
</div>
</ProCard>
<ProCard
title="金刚区图标配置"
type="inner"
bordered
extra={
<MyButtons.Default title="去配置" type="primary" size="small" />
}
>
<div style={{ height: '80px' }}>
</div>
</ProCard>
</ProCard>
</div>
);
}