hookehuyr

fix: 更新项目配置文件和修复头像删除按钮样式

更新项目中的appid配置,确保一致性
调整头像删除按钮的高度样式,使用rpx单位
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 "miniprogramRoot": "./dist", 2 "miniprogramRoot": "./dist",
3 "projectname": "lls_program", 3 "projectname": "lls_program",
4 "description": "lls_program", 4 "description": "lls_program",
5 - "appid": "wx5cda2321cfcf9efa", 5 + "appid": "wxbf875033c6115304",
6 "setting": { 6 "setting": {
7 "urlCheck": true, 7 "urlCheck": true,
8 "es6": false, 8 "es6": false,
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 "miniprogramRoot": "./", 2 "miniprogramRoot": "./",
3 "projectname": "lls_program", 3 "projectname": "lls_program",
4 "description": "lls_program", 4 "description": "lls_program",
5 - "appid": "touristappid", 5 + "appid": "wxbf875033c6115304",
6 "setting": { 6 "setting": {
7 "urlCheck": true, 7 "urlCheck": true,
8 "es6": false, 8 "es6": false,
......
1 <!-- 1 <!--
2 * @Date: 2025-08-27 17:44:53 2 * @Date: 2025-08-27 17:44:53
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-09-16 13:50:15 4 + * @LastEditTime: 2025-09-16 17:13:50
5 * @FilePath: /lls_program/src/pages/CreateFamily/index.vue 5 * @FilePath: /lls_program/src/pages/CreateFamily/index.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -128,7 +128,7 @@ ...@@ -128,7 +128,7 @@
128 <view 128 <view
129 v-if="familyAvatar" 129 v-if="familyAvatar"
130 @click.stop="deleteAvatar" 130 @click.stop="deleteAvatar"
131 - class="absolute -top-2 -right-2 w-5 h-5 bg-red-500 rounded-full flex items-center justify-center" 131 + class="absolute -top-2 -right-2 w-5 bg-red-500 rounded-full flex items-center justify-center" style="height: 41rpx;"
132 > 132 >
133 <view class="text-white text-lg">×</view> 133 <view class="text-white text-lg">×</view>
134 </view> 134 </view>
......