liuxiaolong
2022-04-07 2fd80c51d911a02000ba75da70865e1a86c2611e
userApi.go
@@ -63,6 +63,24 @@
   return res.Success,res.Data
}
func (api UserApi) GetUserProfile(userId string) (bool,interface{}) {
   url := "/data/api-u/users/profile"
   netNode := getNetNode(url2Topic(Topic_System_Service, url))
   client := NewClient(WithNodes(netNode))
   header := map[string]string {
      "Login_user_id": userId,
   }
   respBody, err := client.DoGetRequest(url, nil, header)
   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))