3***@qq.com
3***@qq.com
  • 发布:2024-09-27 18:05
  • 更新:2024-09-27 18:05
  • 阅读:66

【报Bug】botton open-type="contact"

分类:uni-app

产品分类: uniapp/小程序/微信

PC开发环境操作系统: Windows

PC开发环境操作系统版本号: 23H2

HBuilderX类型: 正式

HBuilderX版本号: 4.27

第三方开发者工具版本号: - 微信开发者工具 Nightly 1.06.2408022”

基础库版本号: sdsv43555555555

项目创建方式: HBuilderX

示例代码:

<template>
<view class="center">

    <view class="function">  
        <text class="title">常用功能</text>  
            <view class="functionBox">  

                 <button open-type="contact" class="service">  
                     <uni-icons font-family="Service" class="family" :size="19" color="#f11">&#xe60c;</uni-icons>  
                     <text class="serviceText">平台客服</text>  
                 </button>  

                <view class="service" @click="address()">  
                    <uni-icons type="location" size="24" color="#f44"></uni-icons>  
                    <text class="serviceText">我的地址</text>  
                </view>  

                <navigator url="/pages/my/myScore" class="service">  
                    <uni-icons type="star" size="24" color="#f44"></uni-icons>  
                    <text class="serviceText">我的评价</text>  
                </navigator>  

                <navigator url="/pages/my/Chat" class="service">  
                    <uni-icons type="chat" size="24" color="#f44"></uni-icons>  
                    <text class="serviceText">消息中心</text>  
                </navigator>  
            </view>  
    </view>  

    <view class="other_function">  
        <text class="title">其他功能</text>  
            <view class="functionBox">  

                <button open-type="contact" class="service">  
                    <uni-icons type="shop" size="24" color="#f44"></uni-icons>  
                    <text class="serviceText">邀请朋友</text>  
                </button>  

                <button open-type="contact" class="service">  
                    <uni-icons type="shop" size="24" color="#f44"></uni-icons>  
                    <text class="serviceText">成为摊主</text>  
                </button>  

                <button open-type="contact" class="service">  
                    <uni-icons font-family="Comperate" :size="24" color="#f44">&#xe601;</uni-icons>  
                    <text class="serviceText">商务合作</text>  
                </button>  

                <navigator url="/pages/my/Feedback" class="service">  
                    <uni-icons type="compose" size="24" color="#f44"></uni-icons>  
                    <text class="serviceText">意见反馈</text>  
                </navigator>  
            </view>  
    </view>  
</view>  

</template>

<script setup>

function address(){

uni.navigateTo({  
    url:'/pages/my/addressPage/addressPage'  
})  

}
</script>

<style scoped lang="scss">
@font-face {
font-family: Service;
src: url('/static/Service.ttf') format('truetype');
}
@font-face {
font-family: Comperate;
src: url('/static/comperate.ttf') format('truetype');
}
.center{
.function,.other_function{
display: flex;
flex-direction: column;
justify-content: flex-start;
background-color: #fff;
border-radius: 30rpx;
margin: 20rpx;
.title{
padding-left: 30rpx;
padding-top: 20rpx;
font-size: 28rpx;
}
.functionBox{
margin: 20rpx;
padding-bottom: 10rpx;
display: grid;
grid-template-columns: repeat(4,1fr);
gap: 30rpx;
.service{
all: unset; / 重置所有样式 /
display: inline-flex; / 重新设置显示属性 /
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
.family{
padding: 5rpx;
}
.serviceText{
font-size: 22rpx;
}
}
}
}
.other_function{
margin-top: 40rpx;
}
}
</style>

操作步骤:

尝试在botton 外面添加view 没有用

预期结果:

实际结果:

找不到更好的办法!求助

bug描述:

不管我点击什么功能他就跳转小程序客服 我的@click 不能用了 ,navigator 也不能用点了就跳转小程序客服

2024-09-27 18:05 负责人:无 分享
已邀请:

要回复问题请先登录注册