7***@qq.com
7***@qq.com
  • 发布:2022-06-29 10:48
  • 更新:2022-06-29 10:57
  • 阅读:344

【报Bug】安卓11和模拟器都试过了,两个nvue页面字体大小不一样,差了太多了,还分别用了vue2和vue3测试了,用了Hbuilder 3.2倒是没什么字体大小问题,就是默认字体都挺大

分类:HBuilderX

产品分类: HbuilderX

PC开发环境操作系统: Windows

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

HBuilderX版本号: 3.4.15

示例代码:
<template>  
    <view class="">  
        嘿嘿  
        {{ name }}  
        <button @click="handlerClick">click</button>  
        <button @click="toTwoPage">toTwoPage</button>  
        <foo :fooName="fooName" :obj="obj" @parentCompontents='parentCompontents'></foo>  
    </view>  
</template>  

<script setup>  
import foo from '@/compontents/common/navbar.vue';  
import { ref, reactive } from 'vue';  
const name = '嘿嘿';  
const fooName = 'Supper';  
const parentCompontents =val=>{  
    console.log(val);  
}  
const obj = reactive({  
    name: 'nn',  
    age: 18  
});  
const handlerClick = () => {  
    console.log('dianjile');  
};  
const toTwoPage = () => {  
    uni.navigateTo({  
        url: '../two/two',  
        success: res => {},  
        fail: err => {  
            console.log('err', err);  
        },  
        complete: () => {}  
    });  
};  
defineExpose({  
    fooName,  
    obj  
});  
</script>  

<style></style>  
以上是默认打开页Index.nvue的代码  
以下是跳转页代码  
<template>  
    <view>  
        嘿嘿  
    </view>  
</template>  

<script setup>  

</script>  

<style>  

</style>  

操作步骤:

如题,请管理员核查

预期结果:

如题,请管理员核查

实际结果:

如题,请管理员核查

bug描述:

安卓11和模拟器都试过了,两个nvue页面字体大小不一样,差了太多了,还分别用了vue2和vue3测试了,用了Hbuilder 3.2倒是没什么字体大小问题,就是默认字体都挺大,上传的源码预览时请点击toTwoPage按钮即可跳转到第二个nvue页面,一目了然

2022-06-29 10:48 负责人:无 分享
已邀请:
BoredApe

BoredApe - 有问题就会有答案。

请上传一个能重现问题的测试工程

  • 7***@qq.com (作者)

    已经上传了源码

    2022-06-30 08:24

该问题目前已经被锁定, 无法添加新回复