hookehuyr

refactor: 将项目名称从“亲子学院”更改为“美乐爱觉教育”

更新了所有相关页面和组件中的项目名称,确保一致性
<!--
* @Date: 2025-03-21 16:52:39
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-03-21 16:56:29
* @LastEditTime: 2025-05-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>
......
......@@ -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>
......
<!--
* @Date: 2025-03-20 19:55:21
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-05-15 11:56:30
* @LastEditTime: 2025-05-16 17:40:55
* @FilePath: /mlaj/src/views/HomePage.vue
* @Description: 亲子学院首页组件
* @Description: 美乐爱觉教育首页组件
*
* 主要功能模块:
* 1. 用户欢迎区:显示用户信息和每日打卡
......
<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>
......
......@@ -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>
......
<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>
......