feat: 添加分页组件和地址选择组件,优化样式和类型定义

refactor: 重构路由配置,移除订单页面路由

style: 统一使用CSS变量替换硬编码颜色值

docs: 添加前端数据需求分析文档

fix: 修复登录页面记住我功能,更新用户信息页面链接

perf: 优化搜索组件动画效果和响应式设计

chore: 更新TypeScript类型定义,添加订单和地址相关类型
This commit is contained in:
qingfeng1121
2026-01-19 11:35:50 +08:00
parent c287650fbb
commit 73cf25e586
20 changed files with 4618 additions and 422 deletions

View File

@@ -0,0 +1,63 @@
<!-- 分页组件 -->
<template>
<div class="pagination">
<ul>
<li v-for="page in totalPages" :key="page">
<a href="#" @click="changePage(page)">{{ page }}</a>
</li>
</ul>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue'
const props = defineProps({
totalPages: {
type: Number,
default: 1
}
})
const emit = defineEmits(['changePage'])
const changePage = (page: number) => {
emit('changePage', page)
}
</script>
<style scoped>
.pagination {
display: flex;
justify-content: center;
align-items: center;
margin-top: var(--spacing-md);
}
.pagination ul {
display: flex;
justify-content: center;
align-items: center;
list-style: none;
}
.pagination ul li {
margin: 0 var(--spacing-xs);
}
.pagination ul li a {
display: block;
padding: var(--spacing-xs) var(--spacing-sm);
border: 1px solid var(--border-light);
border-radius: var(--border-radius);
font-size: 14px;
font-weight: 600;
color: var(--primary-color);
transition: all var(--transition-normal) ease;
}
.pagination ul li a:hover {
background-color: var(--primary-color);
color: var(--text-color);
}
</style>