MobileHeader.vue
4.55 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<template>
<!-- <div class="bg-grey-lighten-3 tw-w-full tw-h-[60px]"></div> -->
<!-- color="grey-lighten-3" -->
<v-card class="mx-auto !tw-z-10" max-width="" height="60">
<v-layout>
<v-app-bar scroll-behavior="elevate" color="white" density="default">
<v-app-bar-title v-if="!showSearch">
<a href="/"><v-img src="/mobile/index-logo.png" alt="canrud" width="100" height="40" /></a>
</v-app-bar-title>
<template v-slot:append>
<v-btn icon v-if="!showSearch">
<v-icon @click="showSearch = !showSearch">mdi-magnify</v-icon>
</v-btn>
<v-app-bar-nav-icon @click="drawer = !drawer" v-if="!drawer"></v-app-bar-nav-icon>
<v-app-bar-nav-icon @click="drawer = !drawer" v-if="drawer" icon="mdi-window-close"></v-app-bar-nav-icon>
</template>
<div class="tw-h-[36px] tw-w-[300px] ml-8" v-if="showSearch">
<v-text-field dense density="compact" height="24" label="Search keyword" hide-details="auto" variant="solo"
append-inner-icon="mdi-close" @click:appendInner="handleClick" @keydown="handleKeyDown" v-model="input">
</v-text-field>
</div>
</v-app-bar>
<v-navigation-drawer width="512" v-model="drawer" location="right" temporary floating>
<v-list density="compact" nav>
<v-list-item to="/" title="Home" value="home" @click="handleTabClick" color="blue-darken-1">
</v-list-item>
<v-divider></v-divider>
<v-list-item to="/products" title="Products" value="Products" @click="handleTabClick"
color="blue-darken-1"></v-list-item>
<v-divider></v-divider>
<v-list-item to="/about" title="About" value="about" @click="handleTabClick"
color="blue-darken-1"></v-list-item>
<v-divider></v-divider>
<v-list-item to="/contact" title="Contact" value="contact" @click="handleTabClick"
color="blue-darken-1"></v-list-item>
<v-divider></v-divider>
<v-list-item title="Blog" value="blog" color="blue-darken-1">
<a href="http://blog.canrud.com/" target="" title="Blog">Blog</a>
</v-list-item>
</v-list>
</v-navigation-drawer>
</v-layout>
</v-card>
<!-- <v-container>
<v-row class="tw-m-auto tw-flex tw-items-center">
<v-col cols="2" class="pa-0 tw-h-[64px]">
<router-link to="/"><v-img src="/logo.jpg" alt="canrud" /></router-link>
</v-col>
<v-col cols="6" md="8" class="px-0">
<v-text-field
label="Search keyword"
hide-details="auto"
variant="solo"
append-inner-icon="mdi-magnify"
@click:appendInner="handleClick"
@keydown="handleKeyDown"
v-model="input"
>
</v-text-field>
</v-col>
<v-col cols="4" md="2" class="px-0">
<v-btn variant="text" @click="dialogStore.updateDialog(true)" color="blue-darken-2 mt-4"
>Concat Us
</v-btn>
</v-col>
</v-row>
</v-container> -->
<ContactDialog />
</template>
<script setup lang="ts">
import { ref, watchEffect } from 'vue'
import { useProductListStore } from '@/stores/product_list'
import { useRouter } from 'vue-router'
import { useDialogStore } from '@/stores/dialog'
import { useCategoryStore } from '@/stores/category'
import { useDisplay } from 'vuetify'
const drawer = ref(false)
const showSearch = ref(false)
const productStore = useProductListStore()
const categoryStore = useCategoryStore()
const input = ref()
const router = useRouter()
const handleKeyDown = (e: any) => {
if (e.keyCode == 13) {
categoryStore.updateDisplay(!input.value)
productStore.updateKeyword(input.value)
productStore.updatePageNo(1)
router.push('/products')
}
}
const handleClick = () => {
showSearch.value = false
}
const handleTabClick = () => {
categoryStore.updateDisplay(true)
productStore.updateKeyword('')
}
watchEffect(() => {
input.value = productStore.keyword
})
onMounted(() => {
// 获取url的参数
const url = window.location.href
const index = url.indexOf('?')
if (index !== -1) {
const params = url.slice(index + 1).split('&')
const obj: any = {}
params.forEach((item) => {
const arr = item.split('=')
obj[arr[0]] = arr[1]
})
// 获取dialog的状态
if (obj.flag) {
dialog.updateDialog(true)
}
if (obj.keyword) {
productStore.updateKeyword(obj.keyword)
}
}
})
</script>
<style lang="scss" scoped>
.tabs {
background-color: #1f88e5;
}
.active :deep {
.v-tab__slider {
bottom: 3px;
}
}
</style>