antd-management-fast-framework 1.11.13 → 1.11.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/utils/actionAssist.js +2 -2
- package/package.json +1 -1
package/es/utils/actionAssist.js
CHANGED
|
@@ -38,14 +38,14 @@ function getApiDataCore(_ref) {
|
|
|
38
38
|
var m = (0, _tools.getPathValue)(props, modelName);
|
|
39
39
|
|
|
40
40
|
if ((m || null) == null) {
|
|
41
|
-
recordError("getApiDataCore error: model ".concat(modelName, " is null or undefined"));
|
|
41
|
+
(0, _tools.recordError)("getApiDataCore error: model ".concat(modelName, " is null or undefined"));
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
var _user = user,
|
|
45
45
|
data = _user.data;
|
|
46
46
|
|
|
47
47
|
if ((data || null) == null) {
|
|
48
|
-
recordError("getApiDataCore error: key \u201Cdata\u201D in model ".concat(modelName, " is null or undefined"));
|
|
48
|
+
(0, _tools.recordError)("getApiDataCore error: key \u201Cdata\u201D in model ".concat(modelName, " is null or undefined"));
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
return data;
|