zzz-pc-view 0.0.149 → 0.0.150
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 +1 -1
- package/src/index.es.js +1 -1
- package/src/index.umd.js +1 -1
package/package.json
CHANGED
package/src/index.es.js
CHANGED
|
@@ -5988,7 +5988,7 @@ class CurdHandler extends FilterHandler {
|
|
|
5988
5988
|
* @param {number} total - 列表数据的总数。
|
|
5989
5989
|
*/
|
|
5990
5990
|
setList(list2, total) {
|
|
5991
|
-
this.listRef.value = list2.length > 0 && list2[0] instanceof this.CurdTarget ? this.CurdTarget.bindList(list2) : list2;
|
|
5991
|
+
this.listRef.value = list2.length > 0 && !(list2[0] instanceof this.CurdTarget) ? this.CurdTarget.bindList(list2) : list2;
|
|
5992
5992
|
this.totalRef.value = total;
|
|
5993
5993
|
}
|
|
5994
5994
|
/**
|