Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
mlaj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2026-01-04 14:44:39 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a165178f7e8b6ff2fd7aae5dc70f09896a48b225
a165178f
1 parent
9c5df36e
fix(ui): 更新活动申请历史弹窗中的文本和样式
调整弹窗标题、按钮文字及表单高度,优化用户体验
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
src/components/ui/ActivityApplyHistoryPopup.vue
src/components/ui/ActivityApplyHistoryPopup.vue
View file @
a165178
...
...
@@ -10,13 +10,13 @@
<div class="bg-white px-4 py-3 flex items-center justify-between shadow-sm">
<div class="flex items-center gap-3">
<!-- <van-icon name="arrow-left" class="text-[#333]" @click="emit('update:show', false)" /> -->
<div class="text-[#333] font-bold text-base">
我的申请记录
</div>
<div class="text-[#333] font-bold text-base">
遗失的星球活动
</div>
</div>
<van-icon name="cross" class="text-[#999]" @click="emit('update:show', false)" />
</div>
<div class="bg-white px-4 py-3 flex justify-between items-center sticky top-0 z-20 shadow-sm">
<span class="text-[#333] font-medium text-sm">
活动记录
</span>
<span class="text-[#333] font-medium text-sm">
已补充
</span>
<div class="flex items-center text-[#666] text-sm">
<span>{{ apply_records.length }}条</span>
</div>
...
...
@@ -81,7 +81,7 @@
class="!rounded-lg !h-[44px] !text-base !font-bold"
@click="open_add"
>
新增
记录
新增
</van-button>
</div>
</div>
...
...
@@ -90,12 +90,12 @@
v-model:show="show_form_popup"
round
position="bottom"
:style="{ height: '
5
0%' }"
:style="{ height: '
7
0%' }"
class="flex flex-col"
>
<div class="p-4 flex-1 flex flex-col">
<div class="flex items-center justify-between mb-5">
<h3 class="text-center font-bold text-lg text-[#333]">{{ form_mode === 'add' ? '新增
记录' : '编辑记录
' }}</h3>
<h3 class="text-center font-bold text-lg text-[#333]">{{ form_mode === 'add' ? '新增
' : '编辑
' }}</h3>
<van-icon name="cross" class="text-[#999]" @click="close_form_popup" />
</div>
...
...
Please
register
or
login
to post a comment