1***@qq.com
1***@qq.com
  • 发布:2023-12-17 20:25
  • 更新:2023-12-18 10:44
  • 阅读:216

【报Bug】编译支付宝小程序,input内容无法手动删除

分类:uni-app

产品分类: uniapp/小程序/阿里

PC开发环境操作系统: Windows

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

HBuilderX类型: 正式

HBuilderX版本号: 3.96

第三方开发者工具版本号: 支付宝小程序 编辑器Version 3.8.3

基础库版本号: 不知这个是什么

项目创建方式: HBuilderX

示例代码:

<template>
<view class="content">
<image class="logo" src="/static/logo.png"></image>
<view class="text-area">
<text class="title">{{title}}</text>
<input type="text" placeholder="请输入手机号码" />
</view>
</view>
</template>

<script>
export default {
data() {
return {
title: 'Hello'
}
},
onLoad() {

    },  
    methods: {  

    }  
}  

</script>

<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.logo {  
    height: 200rpx;  
    width: 200rpx;  
    margin-top: 200rpx;  
    margin-left: auto;  
    margin-right: auto;  
    margin-bottom: 50rpx;  
}  

.text-area {  
    display: flex;  
    justify-content: center;  
}  

.title {  
    font-size: 36rpx;  
    color: #8f8f94;  
}  

</style>

操作步骤:

预览真机进入支付宝小程序,在输入框中输入内容,无法删除

预期结果:

可以删除

实际结果:

无法删除

bug描述:

将之前的代码,编译成支付宝小程序时,在预览和真机调试上,input的内容无法使用手机键盘删除。我开了空白项目编译支付宝小程序测试后是没问题的,然后我又将自己的项目的首页清空,只留一个input发现bug依旧存在。

2023-12-17 20:25 负责人:无 分享
已邀请:
YUANRJ

YUANRJ

请提供下测试工程。

要回复问题请先登录注册