This commit is contained in:
chashaobao
2025-12-27 16:21:33 +08:00
parent 365f3f6dd6
commit 14853bcda2
8 changed files with 38 additions and 6 deletions

View File

@ -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: '邀请',
},

View File

@ -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)}

View File

@ -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)}