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
2025-12-29 10:37:47 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e323d2aa01741be0ecd2167cd01607980cefb86a
e323d2aa
1 parent
5b644d56
feat(ActivityHistoryPage): 添加查看星球币按钮功能
添加查看星球币按钮及处理函数,用于跳转至积分页面
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
src/views/recall/ActivityHistoryPage.vue
src/views/recall/ActivityHistoryPage.vue
View file @
e323d2a
...
...
@@ -70,6 +70,10 @@
@click="handleCollectCoins">
收集星球币
</van-button>
<van-button v-else block color="#0052D9" class="!rounded-lg !mb-3 !h-[44px] !text-base !font-bold"
@click="handleViewCoins">
查看星球币
</van-button>
<van-button block plain color="#0052D9" class="!rounded-lg !h-[44px] !text-base !font-medium"
@click="showMissingPopup = true">
...
...
@@ -159,6 +163,13 @@ const handleCollectCoins = async () => {
}
}
/**
* 查看星球币
*/
const handleViewCoins = () => {
router.push({ path: '/recall/points' })
}
const handleSubmitMissing = async () => {
if (!missingInfo.value) {
showToast('请输入补充信息')
...
...
Please
register
or
login
to post a comment