1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
| <template>
| <div class="layout">
| <div class="search" @click="handleSearch">
| <u-icon name="search"></u-icon>
| {{ res.list[0].title }}
| </div>
| <div slot="right" open-type="contact" class="navbar-right message" @click="linkMsgDetail" style="border-style:none;background:rgb(234,234,234);" >
| <image style="width:53rpx;height:53rpx;margin-top:6rpx;" src="@/static/img/title.png"></image>
| </div>
| </div>
| </template>
| <script>
| import '@/uview-components/uview-ui'
| export default {
| title:"搜索栏",
| props: ["res","storeId"],
| methods: {
| linkMsgDetail(){
| uni.navigateTo({
| url:`/pages/tabbar/home/title`
| })
| },
|
| handleSearch() {
| if(this.storeId){
| uni.navigateTo({
| url: `/pages/navigation/search/searchPage?storeId=${this.storeId}`,
| });
| }else{
| uni.navigateTo({
| url: `/pages/navigation/search/searchPage`,
| });
| }
|
| },
| },
| };
| </script>
| <style lang="scss" scoped>
| @import "./tpl.scss";
|
| .search {
| height: 64rpx;
| border-radius: 10rpx;
| display: flex;
| align-items: center;
| justify-content: center;
| background: #ededed;
| }
|
| .layout {
| background: #fff;
| padding: 0 16rpx;
| position: relative;
| }
| .navbar-right{
| position: absolute;
| top: 0;
| // right: 0;
| }
| .message{
| right:40rpx;
| }
| </style>
|
|