feat(3.8): 进群

This commit is contained in:
chashaobao
2026-01-18 10:13:18 +08:00
parent 6fd07f9071
commit d17a3e1461
3 changed files with 7 additions and 6 deletions

View File

@ -1,3 +1,3 @@
export default definePageConfig({ export default definePageConfig({
navigationBarTitleText: '进通告群', navigationBarTitleText: '邀请运营',
}); });

View File

@ -34,7 +34,7 @@ export default function GroupDetail() {
<div className={`${PREFIX}__city-name`}>{operator?.cityName}</div> <div className={`${PREFIX}__city-name`}>{operator?.cityName}</div>
{operator && operator.groupQrCode ? ( {operator && operator.groupQrCode ? (
<Fragment> <Fragment>
<div className={`${PREFIX}__text`}></div> <div className={`${PREFIX}__text`}></div>
<Image className={`${PREFIX}__qrcode`} src={operator?.groupQrCode} showMenuByLongpress mode="aspectFill" /> <Image className={`${PREFIX}__qrcode`} src={operator?.groupQrCode} showMenuByLongpress mode="aspectFill" />
</Fragment> </Fragment>
) : null} ) : null}

View File

@ -43,10 +43,11 @@ export default function BizService() {
if (!checkCityCode(cityCode)) { if (!checkCityCode(cityCode)) {
return; return;
} }
const group = cityOperators.find(g => String(g.cityCode) === cityCode); // const group = cityOperators.find(g => String(g.cityCode) === cityCode);
if (group) { // if (group) {
openCustomerServiceChat(group.groupLink); // openCustomerServiceChat(group.groupLink);
} // }
navigateTo(PageUrl.GroupDetail, { cityCode });
}, },
[cityOperators] [cityOperators]
); );