正式用户权限分配

This commit is contained in:
sjl
2025-11-14 16:19:18 +08:00
parent af05b9c810
commit e9b09e2193
8 changed files with 425 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
import request from '@/utils/request'
/**
* 获取移动端、便携式正式用户列表
* @returns {AxiosPromise}
*/
export const getFormalUserList = () => {
return request({
url: '/user-boot/user/getFormalUserList',
method: 'post'
})
}