hookehuyr

refactor(helpCenter): 重命名关闭按钮类名并移除过期的帮助项

移除不再需要的密码修改帮助项,并将关闭按钮类名从close-btn改为close-btn1以保持一致性
...@@ -234,7 +234,7 @@ ...@@ -234,7 +234,7 @@
234 white-space: nowrap; 234 white-space: nowrap;
235 } 235 }
236 236
237 - .close-btn { 237 + .close-btn1 {
238 padding: 10rpx; 238 padding: 10rpx;
239 239
240 .close-text { 240 .close-text {
......
1 <!-- 1 <!--
2 * @Date: 2022-09-19 14:11:06 2 * @Date: 2022-09-19 14:11:06
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-07-03 20:52:12 4 + * @LastEditTime: 2025-08-13 10:42:47
5 * @FilePath: /jgdl/src/pages/helpCenter/index.vue 5 * @FilePath: /jgdl/src/pages/helpCenter/index.vue
6 * @Description: 帮助中心页面 6 * @Description: 帮助中心页面
7 --> 7 -->
...@@ -85,7 +85,7 @@ ...@@ -85,7 +85,7 @@
85 <!-- 详情头部 --> 85 <!-- 详情头部 -->
86 <view class="detail-header"> 86 <view class="detail-header">
87 <view class="detail-title">{{ currentHelpItem?.title }}</view> 87 <view class="detail-title">{{ currentHelpItem?.title }}</view>
88 - <view class="close-btn" @click="closeDetail"> 88 + <view class="close-btn1" @click="closeDetail">
89 <text class="close-text">关闭</text> 89 <text class="close-text">关闭</text>
90 </view> 90 </view>
91 </view> 91 </view>
...@@ -316,21 +316,6 @@ const helpItems = ref([ ...@@ -316,21 +316,6 @@ const helpItems = ref([
316 '领取新的行驶证' 316 '领取新的行驶证'
317 ] 317 ]
318 }, 318 },
319 - {
320 - id: 'h008',
321 - category: 'account',
322 - icon: 'Ask',
323 - title: '如何修改密码?',
324 - description: '保护账户安全,定期修改登录密码',
325 - solution: [
326 - '进入个人中心',
327 - '点击"账户设置"',
328 - '选择"修改密码"',
329 - '输入当前密码',
330 - '设置新密码(至少8位)',
331 - '确认新密码并保存'
332 - ]
333 - }
334 ]) 319 ])
335 320
336 /** 321 /**
......