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-26 13:50:01 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a048db733d19b7b112042756b20f1ed3f0d67544
a048db73
1 parent
5862c12a
fix: 更新活动统计字段名称为jh_payment_qty和jh_volunteers_qty
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
src/views/recall/timeline.vue
src/views/recall/timeline.vue
View file @
a048db7
...
...
@@ -176,8 +176,8 @@ onMounted(async () => {
idcard: userInfo.value.idCard
})
if (res.code) {
activityCount.value = res.data?.payment_qty || 0
volunteerCount.value = res.data?.volunteers_qty || 0
activityCount.value = res.data?.
jh_
payment_qty || 0
volunteerCount.value = res.data?.
jh_
volunteers_qty || 0
recordDate.value = res.data?.record_date || ''
lastActivityDate.value = res.data?.last_activity_date || ''
}
...
...
@@ -186,8 +186,8 @@ onMounted(async () => {
// 如果是收集完成没有缓存字段的情况, 直接查接口
const res = await searchOldActivityAPI()
if (res.code) {
activityCount.value = res.data?.payment_qty || 0
volunteerCount.value = res.data?.volunteers_qty || 0
activityCount.value = res.data?.
jh_
payment_qty || 0
volunteerCount.value = res.data?.
jh_
volunteers_qty || 0
recordDate.value = res.data?.record_date || ''
lastActivityDate.value = res.data?.last_activity_date || ''
}
...
...
Please
register
or
login
to post a comment