hookehuyr

fix(ui): 更新活动申请历史弹窗中的文本和样式

调整弹窗标题、按钮文字及表单高度,优化用户体验
...@@ -10,13 +10,13 @@ ...@@ -10,13 +10,13 @@
10 <div class="bg-white px-4 py-3 flex items-center justify-between shadow-sm"> 10 <div class="bg-white px-4 py-3 flex items-center justify-between shadow-sm">
11 <div class="flex items-center gap-3"> 11 <div class="flex items-center gap-3">
12 <!-- <van-icon name="arrow-left" class="text-[#333]" @click="emit('update:show', false)" /> --> 12 <!-- <van-icon name="arrow-left" class="text-[#333]" @click="emit('update:show', false)" /> -->
13 - <div class="text-[#333] font-bold text-base">我的申请记录</div> 13 + <div class="text-[#333] font-bold text-base">遗失的星球活动</div>
14 </div> 14 </div>
15 <van-icon name="cross" class="text-[#999]" @click="emit('update:show', false)" /> 15 <van-icon name="cross" class="text-[#999]" @click="emit('update:show', false)" />
16 </div> 16 </div>
17 17
18 <div class="bg-white px-4 py-3 flex justify-between items-center sticky top-0 z-20 shadow-sm"> 18 <div class="bg-white px-4 py-3 flex justify-between items-center sticky top-0 z-20 shadow-sm">
19 - <span class="text-[#333] font-medium text-sm">活动记录</span> 19 + <span class="text-[#333] font-medium text-sm">已补充</span>
20 <div class="flex items-center text-[#666] text-sm"> 20 <div class="flex items-center text-[#666] text-sm">
21 <span>{{ apply_records.length }}条</span> 21 <span>{{ apply_records.length }}条</span>
22 </div> 22 </div>
...@@ -81,7 +81,7 @@ ...@@ -81,7 +81,7 @@
81 class="!rounded-lg !h-[44px] !text-base !font-bold" 81 class="!rounded-lg !h-[44px] !text-base !font-bold"
82 @click="open_add" 82 @click="open_add"
83 > 83 >
84 - 新增记录 84 + 新增
85 </van-button> 85 </van-button>
86 </div> 86 </div>
87 </div> 87 </div>
...@@ -90,12 +90,12 @@ ...@@ -90,12 +90,12 @@
90 v-model:show="show_form_popup" 90 v-model:show="show_form_popup"
91 round 91 round
92 position="bottom" 92 position="bottom"
93 - :style="{ height: '50%' }" 93 + :style="{ height: '70%' }"
94 class="flex flex-col" 94 class="flex flex-col"
95 > 95 >
96 <div class="p-4 flex-1 flex flex-col"> 96 <div class="p-4 flex-1 flex flex-col">
97 <div class="flex items-center justify-between mb-5"> 97 <div class="flex items-center justify-between mb-5">
98 - <h3 class="text-center font-bold text-lg text-[#333]">{{ form_mode === 'add' ? '新增记录' : '编辑记录' }}</h3> 98 + <h3 class="text-center font-bold text-lg text-[#333]">{{ form_mode === 'add' ? '新增' : '编辑' }}</h3>
99 <van-icon name="cross" class="text-[#999]" @click="close_form_popup" /> 99 <van-icon name="cross" class="text-[#999]" @click="close_form_popup" />
100 </div> 100 </div>
101 101
......