123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <template>
- <view
- class="search-bar-container" :style="{
- height,
- borderColor: color,
- background
- }" @click="handleClick"
- >
- <BeeIcon :src="require('./search.png')"></BeeIcon>
- <input v-model="content" style="font-size: 24upx;" type="text" placeholder="输入您想搜索的商品" />
- <button class="bee-btn" :style="{ background: color }" @click="handleClickBtn">
- {{ btnText }}
- </button>
- </view>
- </template>
- <script>
- export default {
- name: 'SearchBar',
- props: {
- prevent: {
- type: Boolean,
- default: false
- },
- height: {
- type: String,
- default: '72upx'
- },
- color: {
- type: String,
- default: '#FA5151'
- },
- btnText: {
- type: String,
- default: '搜索'
- },
- background: {
- type: String
- }
- },
- data() {
- return {
- content: ''
- }
- },
- methods: {
- handleClick() {
- if (this.prevent) {
- this.$emit('click')
- }
- },
- handleClickBtn() {
- if (!this.prevent) {
- this.$emit('click-btn', this.content)
- }
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .search-bar-container {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- position: relative;
- border: 2upx solid #fa5151;
- padding: 16upx 122upx 16upx 16upx;
- box-sizing: border-box;
- border-radius: 100px;
- input {
- flex: 1;
- color: #999999;
- margin-left: 14upx;
- }
- .bee-btn {
- display: flex;
- align-items: center;
- justify-content: center;
- position: absolute;
- color: #f9f9f9;
- right: 0;
- top: -2upx;
- width: 120upx;
- height: 72upx;
- font-size: 28upx;
- border-radius: 100px;
- transition: all 350ms;
- &:active {
- opacity: 0.7;
- }
- }
- }
- </style>
|