-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathBreadcrumb.vue
More file actions
114 lines (101 loc) · 2.55 KB
/
Breadcrumb.vue
File metadata and controls
114 lines (101 loc) · 2.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
<template>
<a-breadcrumb :style="{ margin: '16px 0' }">
<a-breadcrumb-item>{{ navigation_title }}</a-breadcrumb-item>
<div class="header-left">
<a-button type="outline" status="success" shape="round" @click="handleOpenForm">
<template #icon>
<icon-apps />
</template>
<template #default>{{ now_site_title }}</template>
</a-button>
<a-button type="outline" status="success" shape="round" @click="refreshPage">
<template #icon>
<icon-refresh />
</template>
<template #default>重载源</template>
</a-button>
</div>
<!-- 中间搜索框 -->
<div class="header-center">
<a-input-search
placeholder="搜索视频"
enter-button
@search="onSearch"
style="width: 300px"
/>
</div>
<!-- 右侧控制按钮 -->
<div class="header-right">
<a-button type="outline" status="success" shape="round" @click="minimize">
<template #icon>
<icon-bug />
</template>
<template #default>调试</template>
</a-button>
<a-button type="outline" status="success" shape="round" @click="maximize">
<template #icon>
<icon-settings />
</template>
<template #default>设置</template>
</a-button>
<a-button type="outline" status="success" shape="round" @click="closeWindow">
<template #icon>
<icon-user />
</template>
<template #default>用户设置</template>
</a-button>
<slot name="default"></slot>
</div>
</a-breadcrumb>
</template>
<script setup>
const props = defineProps({
navigation_title: String,
now_site_title: String,
});
const emit = defineEmits([
"handleOpenForm",
"closeWindow",
"maximize",
"minimize",
"refreshPage",
"onSearch",
]);
const handleOpenForm = () => {
emit("handleOpenForm");
};
const refreshPage = () => {
emit("refreshPage");
};
const onSearch = (value) => {
emit("onSearch", value);
};
const closeWindow = () => {
emit("closeWindow");
};
const minimize = () => {
emit("minimize");
};
const maximize = () => {
emit("maximize");
};
</script>
<style scoped>
.header-left,
.header-right {
display: flex;
align-items: center;
}
.header-left button,
.header-right button {
margin-right: 10px;
}
.header-center {
flex-grow: 1;
display: flex;
justify-content: center;
}
.header-center a-input-search {
width: 300px;
}
</style>