feat(admin-can): 캔 지급 화면에 닉네임 검색·다중 회원번호 입력 및 다중 지급 지원

This commit is contained in:
Yu Sung
2025-11-10 15:42:58 +09:00
parent 0c4e8b8fcb
commit 1e8dd57eec
3 changed files with 166 additions and 24 deletions

View File

@@ -13,8 +13,8 @@ async function insertCan(can, rewardCan, price, currency) {
return Vue.axios.post('/admin/can', request);
}
async function paymentCan(can, method, member_id) {
const request = {memberId: member_id, method: method, can: can}
async function paymentCan(can, method, memberIds) {
const request = {memberIds: memberIds, method: method, can: can}
return Vue.axios.post('/admin/can/charge', request)
}