Spaces:
Sleeping
Sleeping
File size: 4,675 Bytes
f0953a4 |
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 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
<template>
<div class="home">
<!-- 顶部搜索栏 -->
<header class="home__header">
<div class="header__wrapper">
<van-search
v-model="searchForm.keyword"
class="header__search"
shape="round"
placeholder="请输入搜索关键词或输入链接直接解析"
@search="handleSearch"
/>
<van-icon
name="https://b.yzcdn.cn/vant/icon-demo-1126.png"
class="header__action"
@click="handleLogout"
/>
</div>
</header>
<!-- 主要内容区 -->
<main class="home__content">
<router-view v-slot="{ Component }">
<transition name="fade" mode="out-in">
<component :is="Component" />
</transition>
</router-view>
</main>
<!-- 底部导航栏 -->
<van-tabbar class="home__tabbar" route>
<van-tabbar-item to="/resource" icon="search">搜索</van-tabbar-item>
<van-tabbar-item to="/douban" icon="video">热门</van-tabbar-item>
<van-tabbar-item to="/setting" icon="setting-o">设置</van-tabbar-item>
</van-tabbar>
<!-- 全局加载状态 -->
<van-overlay :show="resourceStore.loading" class="home__loading" @touchmove.prevent>
<van-loading type="spinner" color="#fff" size="24px"> 资源搜索中... </van-loading>
</van-overlay>
<!-- 返回顶部 -->
<van-back-top right="30px" bottom="100px" />
</div>
</template>
<script setup lang="ts">
import { ref, watch } from "vue";
import { useRouter, useRoute } from "vue-router";
import { showConfirmDialog } from "vant";
import { useResourceStore } from "@/stores/resource";
import { useUserSettingStore } from "@/stores/userSetting";
// 接口定义
interface SearchForm {
keyword: string;
}
// 状态管理
const resourceStore = useResourceStore();
const settingStore = useUserSettingStore();
// 响应式数据
const searchForm = ref<SearchForm>({
keyword: "",
});
// 路由相关
const router = useRouter();
const route = useRoute();
// 初始化
settingStore.getSettings();
// 监听路由参数
watch(
() => route.query.keyword as string,
(keyword) => {
if (keyword) {
searchForm.value.keyword = keyword;
handleSearch();
} else {
searchForm.value.keyword = resourceStore.keyword;
}
}
);
watch(
() => resourceStore.keyword,
(newKeyword) => {
searchForm.value.keyword = newKeyword;
}
);
// 方法定义
const handleSearch = async () => {
const keyword = searchForm.value.keyword.trim();
if (!keyword) return;
if (keyword.startsWith("http")) {
await resourceStore.parsingCloudLink(keyword);
return;
}
if (route.path !== "/resource") {
await router.push("/resource");
}
await resourceStore.searchResources(keyword);
};
const handleLogout = () => {
showConfirmDialog({
title: "退出登录",
message: "确定要退出登录吗?",
}).then(() => {
localStorage.removeItem("token");
router.push("/login");
});
};
</script>
<style lang="scss" scoped>
.home {
// 布局
min-height: 100vh;
background: var(--theme-background);
display: flex;
flex-direction: column;
// 头部搜索
&__header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
background: var(--theme-other_background);
backdrop-filter: blur(8px);
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
.header__wrapper {
display: flex;
align-items: center;
padding: 8px;
}
.header__search {
flex: 1;
padding: 0;
background: transparent;
}
.header__action {
padding: 8px;
margin-left: 4px;
color: var(--theme-color);
font-size: 24px;
cursor: pointer;
line-height: 1;
&:active {
color: var(--theme-theme);
}
}
}
// 主内容区 - 调整顶部间距
&__content {
padding-top: 64px; // 搜索框高度(48px) + 上下padding(8px * 2)
padding-bottom: 100px; // tabbar高度 + 底部安全区域
box-sizing: border-box;
flex: 1;
}
// 加载状态
&__loading {
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
color: #fff;
}
}
// 过渡动画
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.2s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
// 深度修改 Vant 组件样式
:deep(.van-tabbar) {
background: var(--theme-other_background);
backdrop-filter: blur(8px);
border-top: 1px solid rgba(0, 0, 0, 0.05);
}
:deep(.van-tabbar-item) {
color: var(--theme-color);
}
:deep(.van-tabbar-item--active) {
color: var(--theme-theme);
}
</style>
|