heyujie
2021-11-30 89e847aafdc25922d97f2ca465391efae9c21640
userApi.go
@@ -63,6 +63,22 @@
   return res.Success,res.Data
}
func (api UserApi) GetUserProfile() (bool,interface{}) {
   url := "/data/api-u/users/profile"
   netNode := getNetNode(url2Topic(Topic_System_Service, url))
   client := NewClient(WithNodes(netNode))
   query := map[string]string {}
   respBody, err := client.DoGetRequest(url, query, nil)
   if err != nil {
      return false,nil
   }
   var res Result
   if err = json.Unmarshal(respBody, &res); err != nil {
      return false,nil
   }
   return res.Success,res.Data
}
func (api UserApi) SaveAuth(paramBody map[string]interface{}) (bool,interface{}) {
   url := "/data/api-u/users/saveAuth"
   netNode := getNetNode(url2Topic(Topic_System_Service, url))