hookehuyr

fix(Welcome): 修改创建家庭描述并调整加入家庭按钮样式

将"获取专属口令"改为"设置专属口令"以更准确描述功能
为加入家庭按钮添加底部边距以改善页面布局
1 <!-- 1 <!--
2 * @Date: 2025-08-27 17:43:45 2 * @Date: 2025-08-27 17:43:45
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-08-27 19:58:08 4 + * @LastEditTime: 2025-08-28 21:45:22
5 * @FilePath: /lls_program/src/pages/Welcome/index.vue 5 * @FilePath: /lls_program/src/pages/Welcome/index.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
31 <view> 31 <view>
32 <h3 class="font-bold">创建家庭</h3> 32 <h3 class="font-bold">创建家庭</h3>
33 <p class="text-gray-600 text-sm"> 33 <p class="text-gray-600 text-sm">
34 - 家长创建家庭,获取专属口令 34 + 家长创建家庭,设置专属口令
35 </p> 35 </p>
36 </view> 36 </view>
37 </view> 37 </view>
...@@ -64,7 +64,7 @@ ...@@ -64,7 +64,7 @@
64 <view @click="navigateTo('/pages/CreateFamily/index')" class="w-full py-3.5 bg-blue-500 text-white text-lg font-medium rounded-full text-center"> 64 <view @click="navigateTo('/pages/CreateFamily/index')" class="w-full py-3.5 bg-blue-500 text-white text-lg font-medium rounded-full text-center">
65 创建家庭 65 创建家庭
66 </view> 66 </view>
67 - <view @click="navigateTo('/pages/JoinFamily/index')" class="w-full py-3.5 bg-white text-gray-800 text-lg font-medium rounded-full border border-gray-300 text-center"> 67 + <view @click="navigateTo('/pages/JoinFamily/index')" class="w-full py-3.5 bg-white text-gray-800 text-lg font-medium rounded-full border border-gray-300 text-center" style="margin-bottom: 1rem;">
68 加入家庭 68 加入家庭
69 </view> 69 </view>
70 </view> 70 </view>
......