@ibiz-template/model-helper 0.1.5 → 0.1.6
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.
|
@@ -115,7 +115,7 @@ export class ServicePathUtil {
|
|
|
115
115
|
num += 1;
|
|
116
116
|
const arr = [];
|
|
117
117
|
deRss.forEach(rs => {
|
|
118
|
-
const items = this.filterDERSs(rs.
|
|
118
|
+
const items = this.filterDERSs(rs.majorAppDataEntityId);
|
|
119
119
|
arr.push([rs, this.calcDeepPath(items, num)]);
|
|
120
120
|
});
|
|
121
121
|
return arr;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiz-template/model-helper",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "控制器包",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"types": "out/index.d.ts",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"pluralize": "^8.0.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@ibiz-template/runtime": "^0.1.
|
|
37
|
+
"@ibiz-template/runtime": "^0.1.6",
|
|
38
38
|
"@types/pluralize": "^0.0.30"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@ibiz-template/runtime": "^0.1.0"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "b140871c2a8700d063b3a6380f0eef5c02768822"
|
|
44
44
|
}
|
|
@@ -161,7 +161,7 @@ export class ServicePathUtil {
|
|
|
161
161
|
num += 1;
|
|
162
162
|
const arr: ServicePathDeep[] = [];
|
|
163
163
|
deRss.forEach(rs => {
|
|
164
|
-
const items = this.filterDERSs(rs.
|
|
164
|
+
const items = this.filterDERSs(rs.majorAppDataEntityId!);
|
|
165
165
|
arr.push([rs, this.calcDeepPath(items, num)]);
|
|
166
166
|
});
|
|
167
167
|
return arr;
|