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.
44 lines
870 B
44 lines
870 B
<template>
|
|
<view>
|
|
<u-navbar back-text="返回"
|
|
is-back
|
|
:title="title"
|
|
back-icon-color="#fff"
|
|
:back-text-style="{
|
|
color: '#fff'
|
|
}"
|
|
:background="{
|
|
backgroundImage: 'linear-gradient(0deg, #c10d12 0%, #c10d12 4%, #e26165 99%, #e26165 100%)'
|
|
}">
|
|
<view class="slot-wrap" @click="toSearch">
|
|
<u-search :show-action="false" shape="round" placeholder="请输入搜索内容"></u-search>
|
|
</view>
|
|
</u-navbar>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
title: String
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
methods: {
|
|
toSearch() {
|
|
this.$u.route({
|
|
url: '/package_sub/pages/Shop/Search'
|
|
})
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.slot-wrap {
|
|
margin: auto;
|
|
}
|
|
</style>
|