feat(custom): 新增豆子记录

This commit is contained in:
2024-01-25 22:47:53 +08:00
parent f7b4942ef9
commit ab960e139f
5 changed files with 281 additions and 27 deletions

8
src/views/game/jl/api.js Normal file
View File

@@ -0,0 +1,8 @@
import { request } from '@/utils'
export default {
// 游戏列表
getGmaeList: () => request.post('/game/list'),
// 豆子记录
getData: (data) => request.post('/coin/list', data),
}