会员信息

This commit is contained in:
admin-lmm
2023-07-04 14:28:19 +08:00
parent e7c14eab3f
commit 3ffb759cbc
2 changed files with 41 additions and 1 deletions

View File

@@ -96,3 +96,20 @@ export function updatePlateNumber(data){
})
}
// 查询会员详情页 平台测试员状态
export function selectPlatformTesterStatus(data){
return request({
url: '/member/info/selectPlatformTesterStatus',
method: 'post',
data: data
})
}
// 修改会员详情页 平台测试员状态
export function updatePlatformTester(data){
return request({
url: '/member/info/updatePlatformTester',
method: 'post',
data: data
})
}