- 新增 scriptService 对接话术接口,cs-chat 支持关键词自动回复 - chat-history 增加 waitChatImReady,修复私聊/群聊/客服历史加载 - 恢复 dashouduan/guanshiduan 兼容页跳转 fighter 保留旧二维码 - 商家我的页头像与标签挤压样式优化 Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
472 B
JavaScript
15 lines
472 B
JavaScript
/** 旧二维码兼容:dashouduan → 打手中心,inviteCode 自动注册逻辑不变 */
|
||
import { parseSceneOptions } from '../../utils/base-page.js';
|
||
|
||
Page({
|
||
onLoad(options) {
|
||
const parsed = parseSceneOptions(options || {});
|
||
const inviteCode = parsed.inviteCode || options.inviteCode || '';
|
||
let url = '/pages/fighter/fighter';
|
||
if (inviteCode) {
|
||
url += `?inviteCode=${encodeURIComponent(inviteCode)}`;
|
||
}
|
||
wx.reLaunch({ url });
|
||
},
|
||
});
|