hookehuyr

feat: 添加编辑家庭页面功能

- 新增 EditFamily 页面组件,包含家庭信息编辑表单
- 在 app.config.js 中注册新页面路由
- 修改 Dashboard 页面跳转逻辑至新页面
- 调整 CreateFamily 页面按钮样式
......@@ -25,6 +25,7 @@ export default {
'pages/UserAgreement/index',
'pages/CouponDetail/index',
'pages/EditProfile/index',
'pages/EditFamily/index',
],
window: {
backgroundTextStyle: 'light',
......
<!--
* @Date: 2025-08-27 17:44:53
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-08-27 20:51:19
* @LastEditTime: 2025-08-28 12:55:42
* @FilePath: /lls_program/src/pages/CreateFamily/index.vue
* @Description: 文件描述
-->
......@@ -140,7 +140,7 @@
<!-- Submit Button -->
<view
@click="handleCreateFamily"
class="w-full py-4 bg-blue-500 text-white text-lg font-medium rounded-lg flex items-center justify-center"
class="w-full py-3 bg-blue-500 text-white text-lg font-medium rounded-lg flex items-center justify-center"
>
创建家庭
</view>
......
......@@ -143,7 +143,7 @@ const handleSyncSteps = () => {
};
const goToProfile = () => {
Taro.navigateTo({ url: '/pages/Profile/index' });
Taro.navigateTo({ url: '/pages/EditFamily/index' });
};
const goToActivities = () => {
......
This diff is collapsed. Click to expand it.