hookehuyr

style: 调整 Dashboard 和 RewardCategories 页面的样式和文案

- 修改 Dashboard 页面的内边距和阴影样式
- 将 RewardCategories 页面的提示框标题从"提示"改为"温馨提示"
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
43 </view> 43 </view>
44 44
45 <!-- Points circles --> 45 <!-- Points circles -->
46 - <view class="flex justify-between px-5 py-6 my-4 bg-white rounded-xl shadow-md mx-4"> 46 + <view class="flex justify-between px-3 py-3 my-4 bg-white rounded-xl shadow-md mx-4">
47 <template v-if="!showTotalPointsOnly"> 47 <template v-if="!showTotalPointsOnly">
48 <PointsCollector 48 <PointsCollector
49 ref="pointsCollectorRef" 49 ref="pointsCollectorRef"
......
1 <!-- 1 <!--
2 * @Date: 2025-08-27 17:47:03 2 * @Date: 2025-08-27 17:47:03
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-09-05 17:18:30 4 + * @LastEditTime: 2025-09-05 17:23:10
5 * @FilePath: /lls_program/src/pages/RewardCategories/index.vue 5 * @FilePath: /lls_program/src/pages/RewardCategories/index.vue
6 * @Description: 积分兑换分类 6 * @Description: 积分兑换分类
7 --> 7 -->
...@@ -63,7 +63,7 @@ const goToRewards = (category) => { ...@@ -63,7 +63,7 @@ const goToRewards = (category) => {
63 } else { 63 } else {
64 // 弹出确认提示框, 不用进行操作, 只是文本提示用户进行线下兑换 64 // 弹出确认提示框, 不用进行操作, 只是文本提示用户进行线下兑换
65 Taro.showModal({ 65 Taro.showModal({
66 - title: '提示', 66 + title: '温馨提示',
67 content: category.tips, 67 content: category.tips,
68 showCancel: false 68 showCancel: false
69 }).then(res => { 69 }).then(res => {
......