feat: update

This commit is contained in:
chashaobao
2025-08-28 08:56:26 +08:00
parent 2cb532c3d7
commit 763a6245d2
7 changed files with 35 additions and 0 deletions

View File

@ -226,6 +226,20 @@
margin-top: 32px; margin-top: 32px;
} }
&__hint {
font-size: 24px;
line-height: 40px;
text-align: center;
color: @blColorG1;
margin-top: 24px;
.highlight {
color: @blHighlightColor;
display: inline;
}
}
} }
// ============================================= 群 ================================================= // // ============================================= 群 ================================================= //

View File

@ -152,6 +152,9 @@ export default function JobBuy(props: IProps) {
); );
})} })}
</div> </div>
<div className={`${PREFIX}__job-buy__hint`}>
<div className="highlight">24</div>
</div>
<Button className={`${PREFIX}__job-buy__button`} onClick={handleBuy}> <Button className={`${PREFIX}__job-buy__button`} onClick={handleBuy}>
{`支付 ${selectItem.amt}`} {`支付 ${selectItem.amt}`}
</Button> </Button>

View File

@ -76,6 +76,7 @@ export enum PageUrl {
Partner = 'pages/partner/index', Partner = 'pages/partner/index',
WithdrawRecord = 'pages/withdraw-record/index', WithdrawRecord = 'pages/withdraw-record/index',
GroupDelegatePublish = 'pages/group-delegate-publish/index', GroupDelegatePublish = 'pages/group-delegate-publish/index',
GiveVip = 'pages/give-vip/index',
} }
export enum PluginUrl { export enum PluginUrl {

View File

@ -98,6 +98,7 @@ export const APP_CONFIG: AppConfigType = {
PageUrl.Partner, PageUrl.Partner,
PageUrl.WithdrawRecord, PageUrl.WithdrawRecord,
PageUrl.GroupDelegatePublish, PageUrl.GroupDelegatePublish,
PageUrl.GiveVip,
// PageUrl.DevDebug, // PageUrl.DevDebug,
], ],
window: { window: {

View File

@ -0,0 +1,3 @@
export default definePageConfig({
navigationBarTitleText: '赠送会员',
});

View File

@ -0,0 +1 @@
.give-vip {}

View File

@ -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 <div className={PREFIX}></div>;
}