diff --git a/src/components/product-dialog/index.less b/src/components/product-dialog/index.less
index d89cb84..73e41cd 100644
--- a/src/components/product-dialog/index.less
+++ b/src/components/product-dialog/index.less
@@ -226,6 +226,20 @@
margin-top: 32px;
}
+ &__hint {
+ font-size: 24px;
+ line-height: 40px;
+ text-align: center;
+ color: @blColorG1;
+ margin-top: 24px;
+
+ .highlight {
+ color: @blHighlightColor;
+ display: inline;
+ }
+
+ }
+
}
// ============================================= 群 ================================================= //
diff --git a/src/components/product-dialog/steps-ui/job-buy.tsx b/src/components/product-dialog/steps-ui/job-buy.tsx
index e59b170..301103c 100644
--- a/src/components/product-dialog/steps-ui/job-buy.tsx
+++ b/src/components/product-dialog/steps-ui/job-buy.tsx
@@ -152,6 +152,9 @@ export default function JobBuy(props: IProps) {
);
})}
+
diff --git a/src/constants/app.ts b/src/constants/app.ts
index 7d4fc6a..76ca762 100644
--- a/src/constants/app.ts
+++ b/src/constants/app.ts
@@ -76,6 +76,7 @@ export enum PageUrl {
Partner = 'pages/partner/index',
WithdrawRecord = 'pages/withdraw-record/index',
GroupDelegatePublish = 'pages/group-delegate-publish/index',
+ GiveVip = 'pages/give-vip/index',
}
export enum PluginUrl {
diff --git a/src/hooks/use-config.tsx b/src/hooks/use-config.tsx
index 76f99b4..6527439 100644
--- a/src/hooks/use-config.tsx
+++ b/src/hooks/use-config.tsx
@@ -98,6 +98,7 @@ export const APP_CONFIG: AppConfigType = {
PageUrl.Partner,
PageUrl.WithdrawRecord,
PageUrl.GroupDelegatePublish,
+ PageUrl.GiveVip,
// PageUrl.DevDebug,
],
window: {
diff --git a/src/pages/give-vip/index.config.ts b/src/pages/give-vip/index.config.ts
new file mode 100644
index 0000000..6777d95
--- /dev/null
+++ b/src/pages/give-vip/index.config.ts
@@ -0,0 +1,3 @@
+export default definePageConfig({
+ navigationBarTitleText: '赠送会员',
+});
diff --git a/src/pages/give-vip/index.less b/src/pages/give-vip/index.less
new file mode 100644
index 0000000..d38210c
--- /dev/null
+++ b/src/pages/give-vip/index.less
@@ -0,0 +1 @@
+.give-vip {}
diff --git a/src/pages/give-vip/index.tsx b/src/pages/give-vip/index.tsx
new file mode 100644
index 0000000..0febdb8
--- /dev/null
+++ b/src/pages/give-vip/index.tsx
@@ -0,0 +1,12 @@
+import { Button } from '@taroify/core';
+
+import { logWithPrefix } from '@/utils/common';
+
+import './index.less';
+
+const PREFIX = 'give-vip';
+const log = logWithPrefix(PREFIX);
+
+export default function GiveVip() {
+ return ;
+}