28 lines
448 B
Vue
28 lines
448 B
Vue
<template>
|
|
<view>
|
|
<nav-bar title="京东" bgColor="#F0F4F9">
|
|
<template v-slot:center>
|
|
<view class="search-box">
|
|
<input type="text" placeholder="" />
|
|
</view>
|
|
</template>
|
|
</nav-bar>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
</script>
|
|
|
|
<style lang="less">
|
|
::v-deep .uni-navbar__header-btns {
|
|
width: auto !important;
|
|
}
|
|
|
|
.search-box {
|
|
width: 100%;
|
|
height: 60rpx;
|
|
background-color: #fff;
|
|
border-radius: 12rpx;
|
|
}
|
|
</style> |