Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
mlaj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2025-05-16 17:41:28 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3c172c9b0c902d8287c7ba049d891f0a609c1dc4
3c172c9b
1 parent
17d3e78c
refactor: 将项目名称从“亲子学院”更改为“美乐爱觉教育”
更新了所有相关页面和组件中的项目名称,确保一致性
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
15 additions
and
15 deletions
src/components/ui/TermsPopup.vue
src/layouts/AppLayout.vue
src/views/HomePage.vue
src/views/auth/ForgotPasswordPage.vue
src/views/auth/LoginPage.vue
src/views/auth/RegisterPage.vue
src/components/ui/TermsPopup.vue
View file @
3c172c9
<!--
* @Date: 2025-03-21 16:52:39
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-0
3-21 16:56:29
* @LastEditTime: 2025-0
5-16 17:41:13
* @FilePath: /mlaj/src/components/ui/TermsPopup.vue
* @Description: 文件描述
-->
...
...
@@ -20,10 +20,10 @@
<div class="flex-1 overflow-y-auto p-4 pt-0">
<div v-if="type === 'terms'" class="space-y-4 text-gray-600">
<p>欢迎使用
亲子学院
!在使用我们的服务之前,请仔细阅读以下用户协议。</p>
<p>欢迎使用
美乐爱觉教育
!在使用我们的服务之前,请仔细阅读以下用户协议。</p>
<h5 class="font-medium text-gray-800">1. 服务内容</h5>
<p>
亲子学院
为用户提供在线教育、活动报名等服务。我们保留随时修改或中断服务的权利,而无需事先通知用户。</p>
<p>
美乐爱觉教育
为用户提供在线教育、活动报名等服务。我们保留随时修改或中断服务的权利,而无需事先通知用户。</p>
<h5 class="font-medium text-gray-800">2. 用户责任</h5>
<p>用户在使用本服务时必须遵守所有适用的法律法规。用户承诺提供真实、准确、完整的个人信息。</p>
...
...
@@ -34,7 +34,7 @@
<h5 class="font-medium text-gray-800">4. 免责声明</h5>
<p>对于因不可抗力或非本平台原因造成的服务中断或其他缺陷,本平台不承担任何责任。</p>
<h5 class="font-medium text-gray-800">1. 服务内容</h5>
<p>
亲子学院
为用户提供在线教育、活动报名等服务。我们保留随时修改或中断服务的权利,而无需事先通知用户。</p>
<p>
美乐爱觉教育
为用户提供在线教育、活动报名等服务。我们保留随时修改或中断服务的权利,而无需事先通知用户。</p>
<h5 class="font-medium text-gray-800">2. 用户责任</h5>
<p>用户在使用本服务时必须遵守所有适用的法律法规。用户承诺提供真实、准确、完整的个人信息。</p>
...
...
src/layouts/AppLayout.vue
View file @
3c172c9
...
...
@@ -11,12 +11,12 @@
<slot name="header-right"></slot>
</div>
</header>
<!-- Main Content -->
<main class="app-content" :class="{ 'has-bottom-nav': showBottomNav }">
<slot></slot>
</main>
<!-- Bottom Navigation -->
<van-tabbar v-if="showBottomNav" route safe-area-inset-bottom>
<van-tabbar-item to="/home" icon="home-o">首页</van-tabbar-item>
...
...
@@ -37,7 +37,7 @@ export default {
props: {
title: {
type: String,
default: '
亲子学院
'
default: '
美乐爱觉教育
'
},
showBack: {
type: Boolean,
...
...
@@ -51,7 +51,7 @@ export default {
setup(props) {
const router = useRouter()
const route = useRoute()
const goBack = () => {
if (window.history.length > 1) {
router.back()
...
...
@@ -59,7 +59,7 @@ export default {
router.push('/')
}
}
return {
goBack
}
...
...
@@ -119,4 +119,4 @@ export default {
.app-content.has-bottom-nav {
padding-bottom: 50px;
}
</style>
\ No newline at end of file
</style>
...
...
src/views/HomePage.vue
View file @
3c172c9
<!--
* @Date: 2025-03-20 19:55:21
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-05-1
5 11:56:30
* @LastEditTime: 2025-05-1
6 17:40:55
* @FilePath: /mlaj/src/views/HomePage.vue
* @Description:
亲子学院
首页组件
* @Description:
美乐爱觉教育
首页组件
*
* 主要功能模块:
* 1. 用户欢迎区:显示用户信息和每日打卡
...
...
src/views/auth/ForgotPasswordPage.vue
View file @
3c172c9
<template>
<div class="min-h-screen flex flex-col bg-gradient-to-br from-green-50 via-teal-50 to-blue-50 py-12 px-4 sm:px-6 lg:px-8">
<div class="sm:mx-auto sm:w-full sm:max-w-md">
<h1 class="text-center text-3xl font-bold text-gray-800 mb-2">
亲子学院
</h1>
<h1 class="text-center text-3xl font-bold text-gray-800 mb-2">
美乐爱觉教育
</h1>
<h2 class="text-center text-xl font-medium text-gray-600">重置密码</h2>
</div>
...
...
src/views/auth/LoginPage.vue
View file @
3c172c9
...
...
@@ -3,7 +3,7 @@
class="min-h-screen flex flex-col bg-gradient-to-br from-green-50 via-teal-50 to-blue-50 py-12 px-4 sm:px-6 lg:px-8"
>
<div class="sm:mx-auto sm:w-full sm:max-w-md">
<h1 class="text-center text-3xl font-bold text-gray-800 mb-2">
亲子学院
</h1>
<h1 class="text-center text-3xl font-bold text-gray-800 mb-2">
美乐爱觉教育
</h1>
<h2 class="text-center text-xl font-medium text-gray-600">欢迎回来</h2>
</div>
...
...
src/views/auth/RegisterPage.vue
View file @
3c172c9
<template>
<div class="min-h-screen flex flex-col bg-gradient-to-br from-green-50 via-teal-50 to-blue-50 py-12 px-4 sm:px-6 lg:px-8">
<div class="sm:mx-auto sm:w-full sm:max-w-md">
<h1 class="text-center text-3xl font-bold text-gray-800 mb-2">
亲子学院
</h1>
<h1 class="text-center text-3xl font-bold text-gray-800 mb-2">
美乐爱觉教育
</h1>
<h2 class="text-center text-xl font-medium text-gray-600">创建账号</h2>
</div>
...
...
Please
register
or
login
to post a comment