You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.3 KiB
Vue
76 lines
1.3 KiB
Vue
4 months ago
|
<template>
|
||
|
<!-- 搜索框 -->
|
||
|
<view class="diy-search">
|
||
|
<view class="inner" :class="itemStyle.searchStyle" @click="onTargetSearch">
|
||
|
<view class="search-input" :style="{ textAlign: itemStyle.textAlign }">
|
||
|
<text class="search-icon iconfont icon-sousuo"></text>
|
||
|
<text> {{ params.placeholder }}</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
|
||
|
/**
|
||
|
* 组件的属性列表
|
||
|
* 用于组件自定义设置
|
||
|
*/
|
||
|
props: {
|
||
|
itemIndex: String,
|
||
|
itemStyle: Object,
|
||
|
params: Object
|
||
|
},
|
||
|
|
||
|
/**
|
||
|
* 组件的方法列表
|
||
|
* 更新属性和数据的方法与更新页面数据的方法类似
|
||
|
*/
|
||
|
methods: {
|
||
|
|
||
|
/**
|
||
|
* 跳转到搜索页面
|
||
|
*/
|
||
|
onTargetSearch() {
|
||
|
this.$navTo('pages/search/index')
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.diy-search {
|
||
|
background: $fuint-theme;
|
||
|
padding: 20rpx 20rpx;
|
||
|
font-size: 26rpx;
|
||
|
}
|
||
|
|
||
|
.inner {
|
||
|
height: 60rpx;
|
||
|
background: $fuint-theme;
|
||
|
overflow: hidden;
|
||
|
|
||
|
&.radius {
|
||
|
border-radius: 10rpx;
|
||
|
}
|
||
|
|
||
|
&.round {
|
||
|
border-radius: 60rpx;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.search-input {
|
||
|
height: 60rpx;
|
||
|
line-height: 60rpx;
|
||
|
color: #999;
|
||
|
padding: 0 20rpx;
|
||
|
background: $fuint-theme;
|
||
|
.search-icon {
|
||
|
margin-right: 8rpx;
|
||
|
}
|
||
|
}
|
||
|
</style>
|