feat: 添加悬浮按钮并修改页面跳转逻辑

fix: 修正页面导航栏状态更新逻辑
This commit is contained in:
huertian 2025-01-07 13:55:09 +08:00
parent db3e2fdc13
commit 2b671bdf78
6 changed files with 23 additions and 8 deletions

1
components.d.ts vendored
View File

@ -19,6 +19,7 @@ declare module 'vue' {
WdCollapseItem: typeof import('wot-design-uni/components/wd-collapse-item/wd-collapse-item.vue')['default']
WdDropMenu: typeof import('wot-design-uni/components/wd-drop-menu/wd-drop-menu.vue')['default']
WdDropMenuItem: typeof import('wot-design-uni/components/wd-drop-menu-item/wd-drop-menu-item.vue')['default']
WdFab: typeof import('wot-design-uni/components/wd-fab/wd-fab.vue')['default']
WdForm: typeof import('wot-design-uni/components/wd-form/wd-form.vue')['default']
WdIcon: typeof import('wot-design-uni/components/wd-icon/wd-icon.vue')['default']
WdInput: typeof import('wot-design-uni/components/wd-input/wd-input.vue')['default']

View File

@ -36,7 +36,8 @@ const nameLabelIconMap = {
progress: {
title: '进度管理',
icon: 'transfer',
roles: ['teacher', 'admin', 'sysadmin'] as const //
roles: ['teacher', 'sysadmin'] as const //
// roles: ['teacher', 'admin', 'sysadmin'] as const //
},
my: {
title: '我的',

View File

@ -5,7 +5,7 @@ export const useConfig = defineStore('config', () => {
// const BASE_URL = ref<string>("https://ppmp.fenshenzhike.com/api");
// const BASE_URL = ref<string>("http://localhost:1218/api");
const BASE_URL = ref<string>("http://192.168.0.119:1218/api");
// const BASE_URL = ref<string>("http://192.30.5.20:1218/api");
// const BASE_URL = ref<string>("http://192.30.5.14:1218/api");
return {
BASE_URL

View File

@ -11,6 +11,7 @@ import { useToast } from 'wot-design-uni';
import type { DropMenuItemBeforeToggle } from 'wot-design-uni/components/wd-drop-menu-item/types';
import WdTag from 'wot-design-uni/components/wd-tag/wd-tag.vue';
const toast = useToast()
const router = useRouter()
const value = ref<number>(0)
@ -192,7 +193,6 @@ onPullDownRefresh(() => {
onLoad(() => {
loadLessons()
})
</script>
<template>
@ -207,6 +207,7 @@ onLoad(() => {
<wd-sort-button title="进度" allow-reset v-model="value" @change="handleChange" />
</view>
</div>
<wd-collapse v-model="expandedCourse">
<wd-status-tip v-if="Object.keys(groupedLessons).length === 0"
image="https://registry.npmmirror.com/wot-design-uni-assets/*/files/content.png" tip="当前账号没有分配微课" />
@ -225,7 +226,6 @@ onLoad(() => {
const hasCompleted = courses.some(lesson => calcLessonProgress(lesson) === 100)
const hasNotStarted = courses.some(lesson => calcLessonProgress(lesson) === 0)
if (hasCompleted && hasNotStarted) return true
const hasInProgress = courses.some(lesson => {
const progress = calcLessonProgress(lesson)
return progress > 0 && progress < 100
@ -286,9 +286,10 @@ onLoad(() => {
class="w-full py-2 gap-12 flex justify-between items-center border-b border-b-solid border-neutral-100 last:border-b-0 first:pt-0 last:pb-0">
<div class="flex items-center gap-1 self-center">
<div>
<div v-if="calcLessonProgress(lesson) === 100" class="i-tabler-circle-check"></div>
<div v-else-if="calcLessonProgress(lesson) === 0" class="i-tabler-circle-dashed"></div>
<div v-else class="i-tabler-hourglass-empty"></div>
<div v-if="calcLessonProgress(lesson) === 100" class="i-tabler-circle-check text-emerald"></div>
<div v-else-if="calcLessonProgress(lesson) === 0" class="i-tabler-circle-dashed text-neutral">
</div>
<div v-else class="i-tabler-hourglass-empty text-blue"></div>
</div>
<wd-badge is-dot :hidden="true">
<span>{{ lesson.microLessonName || '无标题微课' }}</span>

View File

@ -30,7 +30,7 @@ const goProgress = (lessonId: number) => {
lessonId: `${lessonId}`
}
})
tabbar.activeTab = 'progress'
// tabbar.activeTab = 'progress'
}
const loadLesson = async () => {

View File

@ -8,6 +8,7 @@ import { useMessage, useToast } from 'wot-design-uni';
import StatusBlock from './StatusBlock.vue';
import { useRoute } from 'uni-mini-router';
import { useUser } from '@/stores/useUser';
import { useTabbar } from '@/stores/useTabbar'
import { onPullDownRefresh } from '@dcloudio/uni-app'
const route = useRoute()
@ -15,6 +16,7 @@ const message = useMessage()
const message_reject = useMessage('wd-message-box-slot')
const toast = useToast()
const user = useUser()
const tabbar = useTabbar()
type GroupedLessons = { [key: string]: LessonTask[] }
@ -374,6 +376,14 @@ const refresh = async () => {
onPullDownRefresh(() => {
refresh()
})
const handleClick = () => {
uni.switchTab({
url: '/pages/index/index',
success: () => {
tabbar.activeTab = 'home'
}
})
}
</script>
<template>
@ -543,6 +553,8 @@ onPullDownRefresh(() => {
</div>
</div>
</page-wrapper>
<wd-fab position="left-bottom" @click="handleClick" :inactiveIcon="'home'" :expandable="false"
:gap="{ left: 20, bottom: 140 }" />
</template>
<style scoped></style>