zzz-pc-view 0.0.145 → 0.0.146

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zzz-pc-view",
3
- "version": "0.0.145",
3
+ "version": "0.0.146",
4
4
  "main": "src/index.umd.js",
5
5
  "module": "src/index.es.js",
6
6
  "types": "src/index.d.ts",
package/src/index.es.js CHANGED
@@ -5458,10 +5458,7 @@ class CurdHandler extends FilterHandler {
5458
5458
  */
5459
5459
  constructor(curdTargetPrototype, param, ...args) {
5460
5460
  const CurdTarget = curdTargetPrototype.constructor;
5461
- super(new CurdTarget(
5462
- 1
5463
- /* FILTER */
5464
- ), ...args);
5461
+ super(WithPrototype.bindObject({}, curdTargetPrototype), ...args);
5465
5462
  /**
5466
5463
  * 定义一个只读属性,用于存储 CURD 操作的目标模型构造函数。
5467
5464
  * 这个属性将用于在组件中创建和操作数据记录。