用过都说好
用过都说好
  • 发布:2024-05-13 15:11
  • 更新:2024-05-13 16:33
  • 阅读:268

button组件调用抖音小程序客服能力

分类:uni-app

open-type属性如何调用抖音小程序button组件bytehi客服能力

2024-05-13 15:11 负责人:无 分享
已邀请:
爱豆豆

爱豆豆 - 办法总比困难多

直接使用就行
参考文档:https://developer.open-douyin.com/docs/resource/zh-CN/mini-app/develop/component/open-capacity/button-bytehi

<template>  
    <view class="content">  
        <button open-type="byteHi" @bytehi="eventHandler"></button>  
    </view>  
</template>  
<script>  
    export default {  
        methods: {  
            eventHandler(e) {  
                if (e.detail.errNo) {  
                    console.log("跳转byteHi客服页失败", e.detail);  
                } else {  
                    console.log("跳转byteHi客服页成功");  
                }  
            }  
        }  
    }  
</script>  

要回复问题请先登录注册