diff --git a/src/api/activity.js b/src/api/activity.js index 6356f70..bde6fae 100644 --- a/src/api/activity.js +++ b/src/api/activity.js @@ -61,6 +61,15 @@ export function pageRoomContribution(params) { }) } +// 奖励发放记录 +export function pageRewardGrantRecord(params) { + return request({ + url: '/reward-grant-record/page', + method: 'get', + params + }) +} + // ////////////////////// 代理活动 ////////////////////////////////// // 代理活动历史记录 export function pageAgentActivity(params) { diff --git a/src/lang/messages/base/menu-en.js b/src/lang/messages/base/menu-en.js index 8cab82f..87c531e 100644 --- a/src/lang/messages/base/menu-en.js +++ b/src/lang/messages/base/menu-en.js @@ -69,6 +69,7 @@ export default { '红包发送记录': 'Red Packet Send Records', '退款扣除目标': 'Refund Deduction Targets', '房间支持活动': 'Room Support Activities', + '奖励发放记录': 'Reward Grant Records', '代理活动历史': 'Agent Activity History', '现金邀请用户': 'Cash Invite Users', '邀请配置': 'Invite Configuration', diff --git a/src/lang/messages/en.js b/src/lang/messages/en.js index c38e8b1..6a9e174 100644 --- a/src/lang/messages/en.js +++ b/src/lang/messages/en.js @@ -140,6 +140,7 @@ export default { '自定义名人堂': 'Custom Hall of Fame', '喇叭列表': 'Trumpet List', '房间支持活动': 'Room Support Activities', + '奖励发放记录': 'Reward Grant Records', '审批管理': 'Approval Management', '头像审核': 'Avatar Approval', '昵称审核': 'Nickname Approval', diff --git a/src/router/index.js b/src/router/index.js index 905b868..f078d96 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -914,6 +914,12 @@ export const mockRouters = [ component: () => import('@/views/game/trumpet/index'), meta: { title: '喇叭列表', icon: 'form' } }, + { + path: '/activity/reward-grant-record', + name: 'RewardGrantRecord', + component: () => import('@/views/activity/reward-grant-record/index'), + meta: { title: '奖励发放记录', icon: 'form' } + }, { path: '/activity/room/contribution', name: 'ActivityRoomContribution', diff --git a/src/views/activity/reward-grant-record/index.vue b/src/views/activity/reward-grant-record/index.vue new file mode 100644 index 0000000..64d9672 --- /dev/null +++ b/src/views/activity/reward-grant-record/index.vue @@ -0,0 +1,231 @@ + + + + + + + + + 搜索 + + + + + + + {{ rewardTypeName(scope.row.rewardType) }} + + + + + + + + + + {{ scope.row.userProfile.userNickname || '-' }} + + 短ID:{{ scope.row.userProfile.account || '-' }} + 靓号:{{ specialAccount(scope.row.userProfile) }} + + + - + + + + + + + + + + + + + + {{ scope.row.roomProfile.roomName || '-' }} + + 房间ID:{{ scope.row.roomProfile.roomAccount || '-' }} + 内部ID:{{ scope.row.roomProfile.id || '-' }} + + + - + + + + + + {{ formatNumber(scope.row.roomContribution) }} + + + + + {{ formatNumber(scope.row.rewardCoins) }} + + + + + {{ formatWeek(scope.row.dateNumber) }} + + + + + {{ scope.row.grantTime | parseTime }} + + + + + + + + + + +