We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.2.7
/
<t-dialog visible="{{serviceConfirm}}" title="是否联系客服?" content="联系客服,快速获取支持服务。" confirm-btn="{{ serviceConfirmBtn }}" cancel-btn="取消" bind:confirm="cancelService" bind:cancel="cancelService" />
serviceConfirm: false,//联系客服确认 serviceConfirmBtn: { content: '确认', openType: 'contact', } // 联系客服 contactService() { this.setData({ serviceConfirm: true }) }, cancelService() { this.setData({ serviceConfirm: false }) },
通过调用函数展示此dialog,然后用户点击确认按钮打开小程序客服
能够正常打开客服页面,但是控制台报错
WeChatLib: 3.3.4 (2024.2.1 17:22:15)与WeChatLib: 3.3.3 (2024.1.23 17:19:51)均有此问题
WeChatLib: 3.3.4 (2024.2.1 17:22:15)
WeChatLib: 3.3.3 (2024.1.23 17:19:51)
原本我希望cell实现点击打开小程序客服的功能。但是只有button的open-type支持调用此能力,于是使用了dialog 透传参数改为open-type: share时没有此问题
open-type: share
The text was updated successfully, but these errors were encountered:
👋 @Nero978,感谢给 TDesign 提出了 issue。 请根据 issue 模版确保背景信息的完善,我们将调查并尽快回复你。
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
tdesign-miniprogram 版本
1.2.7
重现链接
/
重现步骤
期望结果
通过调用函数展示此dialog,然后用户点击确认按钮打开小程序客服
实际结果
能够正常打开客服页面,但是控制台报错
基础库版本
WeChatLib: 3.3.4 (2024.2.1 17:22:15)
与WeChatLib: 3.3.3 (2024.1.23 17:19:51)
均有此问题补充说明
原本我希望cell实现点击打开小程序客服的功能。但是只有button的open-type支持调用此能力,于是使用了dialog
透传参数改为
open-type: share
时没有此问题The text was updated successfully, but these errors were encountered: