jmash-core-mp 0.1.39 → 0.1.40
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/lib/api/dicts.d.ts +1 -1
- package/lib/api/dicts.js +1 -1
- package/package.json +1 -1
- package/src/api/dicts.ts +2 -2
package/lib/api/dicts.d.ts
CHANGED
package/lib/api/dicts.js
CHANGED
package/package.json
CHANGED
package/src/api/dicts.ts
CHANGED
|
@@ -115,9 +115,9 @@ export class CustomBizDict {
|
|
|
115
115
|
// 查询条件
|
|
116
116
|
query: any;
|
|
117
117
|
|
|
118
|
-
constructor(results:
|
|
118
|
+
constructor(results: Entry[], query: any) {
|
|
119
119
|
this.values.length = 0;
|
|
120
|
-
this.values.push(...results
|
|
120
|
+
this.values.push(...(results || []));
|
|
121
121
|
this.query = query;
|
|
122
122
|
}
|
|
123
123
|
// 根据给定键获取业务数据项的值的方法
|