问卷模块优化与全面项目结构调整:

1. 类型定义:
   - 完善 SurveyItem 类型定义,添加所有必要字段
   - 优化类型注解,增强代码可维护性
   - 更新 components.d.ts 类型声明文件

2. 组件重构:
   - 将 SuvreyItem 组件变量名从 item 统一修改为 survey
   - 添加类型标注,提高代码健壮性
   - 修复模板中的变量引用
   - 优化 MarketItem、Navigation 和 Search 组件

3. 功能优化:
   - 将删除和保存模板功能从 Index.vue 移至 useSurveyData.ts 钩子中
   - 优化函数导出,提高代码复用性
   - 改进 Home 组件与问卷模块的交互逻辑

4. 样式优化:
   - 精简 SCSS 代码,移除冗余样式和注释
   - 将样式从 Index.vue 移至 SuvreyItem.vue 组件内部
   - 优化样式结构,提高可维护性

5. 资源添加:
   - 新增 tabbar 图标资源,统一底部导航栏样式
This commit is contained in:
Huangzhe
2025-05-13 15:45:25 +08:00
parent 36946f632f
commit e87a064156
16 changed files with 612 additions and 485 deletions

View File

@@ -1,9 +1,9 @@
<script setup lang="ts">
import { AiFillHome } from 'vue-icons-plus/ai';
import { h, ref } from 'vue';
import { useRouter, type RouteLocationRaw } from 'vue-router';
import { ref, watch } from 'vue';
import { useRoute, useRouter } from 'vue-router';
const router = useRouter()
const router = useRouter();
const route = useRoute();
const navigation = ref([
{
@@ -12,7 +12,7 @@ const navigation = ref([
name: 'home',
path: '/home'
},
icon: h(AiFillHome)
icon: '/tabbar/home.png'
},
{
title: '伊调研',
@@ -20,7 +20,7 @@ const navigation = ref([
name: 'home',
path: '/home'
},
icon: h(AiFillHome)
icon: '/tabbar/yl.png'
},
{
title: '我的',
@@ -28,28 +28,42 @@ const navigation = ref([
name: '',
path: '/survey'
},
icon: h(AiFillHome)
icon: '/tabbar/mine.png'
}
]);
// 当前的 nav
const currentNav = navigation.value.find((item) => item.link.path === route.fullPath);
const activeTab = ref(currentNav?.title);
/**
* Handle changing of navigation
* @param {object} nav - the navigation item selected
*/
function handleChangeNav(nav: any) {
const params = {} as RouteLocationRaw
function handleChangeNav(title: string) {
const nav = navigation.value.find((item) => item.title === title);
const params: { [key: string]: string } = {};
// 如果有 name 表示,优先取 name 参数
nav.link.name.length != 0 ? (params.name = nav.link.name as string) : (params.path = nav.link.path)
router.push(params)
nav && nav.link.name.length !== 0
? (params.name = nav.link.name as string)
: (params.path = nav?.link.path as string);
router.push(params);
}
watch(activeTab, (value: string) => {
handleChangeNav(value);
});
</script>
<template>
<div class="navigation">
<section @click="handleChangeNav(item)" v-for="item in navigation" :key="item.title" class="navigation-item">
<component :is="item.icon"></component>
<div>{{ item.title }}</div>
</section>
<van-tabbar v-model="activeTab">
<van-tabbar-item v-for="item in navigation" :key="item.title" :name="item.title">
<template #icon>
<img :src="item.icon" />
</template>
{{ item.title }}
</van-tabbar-item>
</van-tabbar>
</div>
</template>