4***@qq.com
4***@qq.com
  • 发布:2024-04-22 11:26
  • 更新:2024-04-22 20:57
  • 阅读:63

在index导入navbar时,搜索框不显示

分类:HBuilderX

<template>
<view>
<navbar />
</view>
</template>

<script>
import navbar from"@/uni_modules/navbar/navbar.vue"
export default {
data() {
return {

        }  
    },  
    methods: {  

    },  
    uni_modules:{  
        navbar  
    }  
}  

</script>

<style lang="scss">

</style>
导入navbar时,搜索框不显示

<template>
<view>
<view class="box-bg">
<uni-nav-bar>

            <view class="input-view">  
                <uni-icons class="input-uni-icon" type="search" size="18" color="#999" />  
                <input confirm-type="search" class="nav-bar-input" type="text" placeholder="输入搜索关键词">  
            </view>  
            <template v-slot:right>  
                <view class="city">  
                    搜索  
                </view>  
            </template>  
        </uni-nav-bar>  
    </view>  
</view>  

</template>

<script>
import uninavbar from"@/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-nav-bar.vue"
export default {
data() {
return {

        }  
    },  
    methods: {  

    },  
    uni_modules:{  
        uninavbar  
    }  
}  

</script>

<style lang="scss">
$nav-height: 30px;

.box-bg {  
    background-color: #F5F5F5;  
    padding: 5px 0;  
}  

.city {  
    /* #ifndef APP-PLUS-NVUE */  
    display: flex;  
    /* #endif */  
    flex-direction: row;  
    align-items: center;  
    justify-content: flex-start;  
    // width: 160rpx;  
    margin-left: 4px;  
}  

.input-view {  
    /* #ifndef APP-PLUS-NVUE */  
    display: flex;  
    /* #endif */  
    flex-direction: row;  
    // width: 500rpx;  
    flex: 1;  
    background-color: #f8f8f8;  
    height: $nav-height;  
    border-radius: 15px;  
    padding: 0 15px;  
    flex-wrap: nowrap;  
    margin: 7px 0;  
    line-height: $nav-height;  
}  

.input-uni-icon {  
    line-height: $nav-height;  
}  

.nav-bar-input {  
    height: $nav-height;  
    line-height: $nav-height;  
    /* #ifdef APP-PLUS-NVUE */  
    width: 370rpx;  
    /* #endif */  
    padding: 0 5px;  
    font-size: 12px;  
    background-color: #f8f8f8;  
}  

</style>
这个就正常显示,是什么原因

2024-04-22 11:26 负责人:无 分享
已邀请:
爱豆豆

爱豆豆 - 办法总比困难多

发个完整的代码包 帮你看下

DCloud_UNI_HRK

DCloud_UNI_HRK

你点开uni_modules文件夹看看路径就知道了,你这个路径明显不对
@/uni_modules/navbar/navbar.vue

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

    路径是对的,我是在uni_modules文件夹下面新建目录navbar,在navbar目录里再建一个navbar.vue

    2024-04-22 22:59

  • DCloud_UNI_HRK

    回复 4***@qq.com: 你是运行到那个端?给我看看问题工程

    2024-04-23 11:21

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

    回复 DCloud_UNI_HRK: 刚弄好了,被官方下载的插件误导,直接用了uni_modules文件,下载uni_modules插件后,我把所有文件弄到components文件里,问题解决了!

    2024-04-23 22:20

要回复问题请先登录注册