You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong_qianduan/components/search/index.vue

74 lines
1.3 KiB

11 months ago
<template>
<!-- 搜索框 -->
<view class="search-wrapper">
<view class="index-search" @click="onClick">
<view class="index-cont-search t-c">
<text class="search-icon iconfont icon-search"></text>
<text class="search-text">{{ tips }}</text>
</view>
</view>
</view>
</template>
<script>
export default {
props: {
tips: {
type: String,
10 months ago
default: 'iPhone15'
11 months ago
}
},
data() {
return {}
},
methods: {
onClick() {
this.$emit('event')
}
}
}
</script>
<style lang="scss" scoped>
.search-wrapper {
background: #fff;
padding: 13rpx;
}
.index-search {
border-bottom: 0;
background: #fff;
border-radius: 50rpx;
overflow: hidden;
font-size: 28rpx;
color: #6d6d6d;
box-sizing: border-box;
line-height: 64rpx;
display: flex;
align-items: center;
.index-cont-search {
width: 100%;
font-size: 28rpx;
background: #f7f7f7;
display: flex;
10 months ago
align-items:center;
height: 64rpx;
background: #F7F8FA;
border-radius: 68rpx 68rpx 68rpx 68rpx;
opacity: 1;
11 months ago
}
.index-cont-search .search-icon {
font-size: 28rpx;
10 months ago
margin-left: 26rpx;
11 months ago
}
.index-cont-search .search-text {
margin-left: 14rpx;
}
}
</style>