feat:
This commit is contained in:
@ -45,7 +45,7 @@ const GET_CONTACT_TYPE_OPTIONS = [
|
||||
{
|
||||
type: GET_CONTACT_TYPE.INVITE,
|
||||
icon: 'https://publiccdn.neighbourhood.com.cn/img/invite-operations.png',
|
||||
title: '邀请运营进群(进会员)',
|
||||
title: '邀请运营进群(送会员)',
|
||||
desc: '每邀请进一个主播群送一个日会员',
|
||||
btnText: '邀请',
|
||||
},
|
||||
|
||||
@ -161,7 +161,7 @@ export default function CompanyPublishJobBuy(props: IProps) {
|
||||
<div
|
||||
key={item.payPrice}
|
||||
className={classNames(`${PREFIX}__company-publish-job-buy__item`, {
|
||||
selected: selectItem && item.payPrice === selectItem.payPrice,
|
||||
selected: selectItem && item.id === selectItem.id,
|
||||
disabled: item.payPrice === 0,
|
||||
})}
|
||||
onClick={item.payPrice === 0 ? undefined : () => handleClickItem(item)}
|
||||
|
||||
@ -167,9 +167,9 @@ export default function JobBuy(props: IProps) {
|
||||
{productList.map(item => {
|
||||
return (
|
||||
<div
|
||||
key={item.payPrice}
|
||||
key={item.id}
|
||||
className={classNames(`${PREFIX}__job-buy__item`, {
|
||||
selected: selectItem && item.payPrice === selectItem.payPrice,
|
||||
selected: selectItem && item.id === selectItem.id,
|
||||
disabled: item.payPrice === 0,
|
||||
})}
|
||||
onClick={item.payPrice === 0 ? undefined : () => handleClickItem(item)}
|
||||
|
||||
@ -17,4 +17,25 @@
|
||||
border-radius: 16px;
|
||||
margin-top: 24px;
|
||||
}
|
||||
|
||||
&__recommend {
|
||||
display: inline-flex;
|
||||
line-height: 36px;
|
||||
padding: 0 8px;
|
||||
height: 36px;
|
||||
background: rgb(255, 80, 81);
|
||||
border-radius: 4px;
|
||||
font-size: 24px;
|
||||
color: #fff;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
position: absolute;
|
||||
left: 208px;
|
||||
top: 8px;
|
||||
width: 128px;
|
||||
|
||||
&-cell {
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,6 +1,7 @@
|
||||
import { Image } from '@tarojs/components';
|
||||
|
||||
import { Cell } from '@taroify/core';
|
||||
import { GoodJob } from '@taroify/icons';
|
||||
import { useCallback } from 'react';
|
||||
|
||||
import MaterialCard from '@/components/material-card';
|
||||
@ -34,7 +35,15 @@ export default function AnchorFragment() {
|
||||
<Cell
|
||||
isLink
|
||||
align="center"
|
||||
title="免费领主播会员"
|
||||
title={
|
||||
<div className={`${PREFIX}__recommend-cell`}>
|
||||
免费领主播会员
|
||||
<div className={`${PREFIX}__recommend`}>
|
||||
<GoodJob />
|
||||
强烈推荐
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
className={`${PREFIX}__cell`}
|
||||
onClick={handleClickInviteOperations}
|
||||
/>
|
||||
|
||||
@ -27,6 +27,7 @@ export enum RESPONSE_ERROR_CODE {
|
||||
INSUFFICIENT_FREE_BALANCE = 'INSUFFICIENT_FREE_BALANCE', // 免费查看次数(未购买会员)超限
|
||||
BOSS_VIP_EXPIRED = 'BOSS_VIP_EXPIRED', // 会员过期
|
||||
CHAT_MSG_SEND_NOT_ALLOW = 'CHAT_MSG_SEND_NOT_ALLOW',
|
||||
JOB_EXIST_ONE_PUBLISHED = 'JOB_EXIST_ONE_PUBLISHED',
|
||||
}
|
||||
|
||||
export const RESPONSE_ERROR_INFO: { [key in RESPONSE_ERROR_CODE]?: string } = {
|
||||
|
||||
@ -19,7 +19,7 @@ const PREFIX = 'invite-operations';
|
||||
export default function InviteOperations() {
|
||||
const location = useLocation();
|
||||
const userInfo = useUserInfo();
|
||||
const [cityCode, setCityCode] = useState<string>(location.cityCode);
|
||||
const [cityCode, setCityCode] = useState<string>();
|
||||
const [staffInfo, setStaffInfo] = useState<StaffInfo | null>(null);
|
||||
|
||||
const handleClickCityMenu = useCallback(() => {
|
||||
|
||||
@ -114,6 +114,7 @@ export interface GetOrderInfoRequest {
|
||||
}
|
||||
|
||||
export interface ProductSpecResult {
|
||||
id: string;
|
||||
productId: string;
|
||||
productSpecId: ProductSpecId;
|
||||
productType: ProductType;
|
||||
|
||||
Reference in New Issue
Block a user