imatrix-ui 2.9.62-dw → 2.9.64-dw
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
|
@@ -729,14 +729,14 @@ gridParams.$rowIndex < gridParams.gridData.length) {
|
|
|
729
729
|
gridParams.superGrid.clearSelection()
|
|
730
730
|
}
|
|
731
731
|
gridParams.isCreateRow = false
|
|
732
|
-
if (isRestore
|
|
732
|
+
if (isRestore === undefined || isRestore === false) {
|
|
733
733
|
// 表示是删除操作,执行删除记录后回调
|
|
734
734
|
if (isEditOptionFunction('afterDelete', listCode)) {
|
|
735
735
|
const isSubTableShowPage = gridParams.isSubTableShowPage
|
|
736
736
|
// 每页显示多少条
|
|
737
737
|
const pageSize = gridParams.pagination && gridParams.pagination.pageSize
|
|
738
738
|
const isMobile = false
|
|
739
|
-
gridParams.options.lineEditOptions.afterDelete.call(this, rowIndex, gridParams.
|
|
739
|
+
gridParams.options.lineEditOptions.afterDelete.call(this, rowIndex, gridParams.gridData[rowIndex], isSubTableShowPage ? gridParams.subTableData : gridParams.gridData, isMobile, this.baseURL, isSubTableShowPage ? gridParams.gridData : null, pageSize, gridParams.additionalParamMap)
|
|
740
740
|
}
|
|
741
741
|
}
|
|
742
742
|
}
|