This commit is contained in:
gazebo
2019-12-02 18:32:55 +08:00
parent 4133454e46
commit 1dc40112d5

View File

@@ -347,7 +347,7 @@ func (a *API) AccessStorePage2(fullURL string, params map[string]interface{}, is
if statusMap, ok := jsonResult1["status"].(map[string]interface{}); !ok {
return platformapi.ErrLevelGeneralFail, utils.NewErrorCode(utils.Format4Output(jsonResult1, true), "999")
} else {
code = utils.Interface2String(statusMap["errorCode"])
code = utils.Int64ToStr(utils.ForceInterface2Int64(statusMap["errorCode"]))
errMsg = utils.Interface2String(statusMap["message"])
}
} else {