n20-common-lib 2.22.49 → 2.22.50
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
|
@@ -828,7 +828,15 @@ export default {
|
|
|
828
828
|
showClose: true
|
|
829
829
|
})
|
|
830
830
|
}
|
|
831
|
-
this.$
|
|
831
|
+
this.$msgboxPor({
|
|
832
|
+
title: $lc('确认删除所选附件吗?'),
|
|
833
|
+
message: $lc('删除后数据不可恢复'),
|
|
834
|
+
type: 'error',
|
|
835
|
+
confirmButtonText: $lc('确认'),
|
|
836
|
+
cancelButtonText: $lc('取消')
|
|
837
|
+
}).then(() => {
|
|
838
|
+
this.$emit('delete-rows', this.selectionList)
|
|
839
|
+
}).catch(() => undefined)
|
|
832
840
|
},
|
|
833
841
|
|
|
834
842
|
async getFileInfo(row, type) {
|