hookehuyr

style(页面样式): 调整幼儿园名称和编辑按钮的文本样式

- 将幼儿园名称字体大小调整为sm
- 移除幼儿园地址显示
- 编辑按钮字体大小调整为sm
......@@ -50,8 +50,8 @@
</view>
<!-- 幼儿园信息 -->
<view class="flex-1">
<view class="font-medium text-gray-900 mb-1">{{ matchedKindergarten.name }}</view>
<view class="text-sm text-gray-600">{{ matchedKindergarten.address }}</view>
<view class="text-sm font-medium text-gray-900 mb-1">{{ matchedKindergarten.name }}</view>
<!-- <view class="text-sm text-gray-600">{{ matchedKindergarten.address }}</view> -->
</view>
</view>
</view>
......
<!--
* @Date: 2025-08-27 17:47:46
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-09-09 15:09:58
* @LastEditTime: 2025-09-19 23:01:49
* @FilePath: /lls_program/src/pages/Profile/index.vue
* @Description: 文件描述
-->
......@@ -19,7 +19,7 @@
<h1 class="text-xl font-bold text-white">{{ userInfo.nickName }}</h1>
</view>
</view>
<view v-if="userInfo?.birth_date" @tap="goToEditProfile" class="text-white">
<view v-if="userInfo?.birth_date" @tap="goToEditProfile" class="text-white text-sm">
<span>编辑</span>
</view>
</view>
......