增加积分调整日志

This commit is contained in:
2026-07-21 18:59:45 +08:00
parent 4fbc4500fd
commit 140a068b88
23 changed files with 673 additions and 18 deletions

View File

@@ -0,0 +1,13 @@
import createAxios from '/@/utils/axios'
export const url = '/admin/mall.PointsLog/'
export function getUserAsset(userAssetId: string | number) {
return createAxios({
url: url + 'add',
method: 'get',
params: {
userAssetId,
},
})
}