user.ts 212 B

123456789
  1. import http from '../utils/http'
  2. const UserApi = {
  3. async UpdateName(dto: any) {
  4. return http.put('/api/services/wxapp/WxUser/UpdateName', dto) as Promise<IRestResult<string>>
  5. },
  6. }
  7. export default UserApi