diff --git a/src/pages/group-detail/index.config.ts b/src/pages/group-detail/index.config.ts
index fceb993..660d09e 100644
--- a/src/pages/group-detail/index.config.ts
+++ b/src/pages/group-detail/index.config.ts
@@ -1,3 +1,3 @@
export default definePageConfig({
- navigationBarTitleText: '进通告群',
+ navigationBarTitleText: '邀请运营',
});
diff --git a/src/pages/group-detail/index.tsx b/src/pages/group-detail/index.tsx
index 3042ec1..c8d0237 100644
--- a/src/pages/group-detail/index.tsx
+++ b/src/pages/group-detail/index.tsx
@@ -34,7 +34,7 @@ export default function GroupDetail() {
{operator?.cityName}
{operator && operator.groupQrCode ? (
- 长按并识别二维码添加运营
+ 长按并识别二维码,邀你进主播通告群
) : null}
diff --git a/src/pages/user-batch-publish/index.tsx b/src/pages/user-batch-publish/index.tsx
index 0f17540..8c6b6fc 100644
--- a/src/pages/user-batch-publish/index.tsx
+++ b/src/pages/user-batch-publish/index.tsx
@@ -43,10 +43,11 @@ export default function BizService() {
if (!checkCityCode(cityCode)) {
return;
}
- const group = cityOperators.find(g => String(g.cityCode) === cityCode);
- if (group) {
- openCustomerServiceChat(group.groupLink);
- }
+ // const group = cityOperators.find(g => String(g.cityCode) === cityCode);
+ // if (group) {
+ // openCustomerServiceChat(group.groupLink);
+ // }
+ navigateTo(PageUrl.GroupDetail, { cityCode });
},
[cityOperators]
);