Header.vue
3.12 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
<template>
<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" href="/contact" color="blue-darken-2 mt-4">Concat Us
</v-btn>
</v-col>
</v-row>
</v-container>
<div class="tabs">
<div class="tw-max-w-[1200px] tw-mx-auto">
<v-tabs mobile-breakpoint="580" v-model="tab" bg-color="blue-darken-1" slider-color="grey-lighten-3"
tab-slider-size="6px" selected-class="active" :grow="screenWidth > 600 ? false : true">
<v-tab :value="1" to="/"><span @click="handleTabClick" class="text-grey-lighten-3 tw-font-bold">Home</span>
</v-tab>
<v-tab :value="2" to="/products">
<span @click="handleTabClick" class="text-grey-lighten-3 tw-font-bold">Products</span>
</v-tab>
<v-tab :value="3" to="/about"><span @click="handleTabClick"
class="text-grey-lighten-3 tw-font-bold">About</span>
</v-tab>
<v-tab :value="4" to="/contact"><span @click="handleTabClick"
class="text-grey-lighten-3 tw-font-bold">Contact</span>
</v-tab>
</v-tabs>
</div>
</div>
<ContactDialog />
</template>
<script setup lang="ts">
import { ref, watchEffect } from 'vue'
import ContactDialog from '@/components/ContactDialog.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 { width: screenWidth } = useDisplay()
const productStore = useProductListStore()
const categoryStore = useCategoryStore()
const input = ref()
const router = useRouter()
const dialog = useDialogStore()
const handleKeyDown = (e: any) => {
if (e.keyCode == 13) {
handleClick()
}
}
const handleClick = () => {
categoryStore.updateDisplay(!input.value)
productStore.updateKeyword(input.value)
productStore.updatePageNo(1)
router.push('/products')
}
const tab = ref(1)
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)
}
}
})
</script>
<style lang="scss" scoped>
.tabs {
background-color: #1f88e5;
}
.active :deep {
.v-tab__slider {
bottom: 3px;
}
}
</style>