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)}
|
||||
|
||||
Reference in New Issue
Block a user