追加vuedraggable组件缺失的文件。

This commit is contained in:
vdpAdmin
2022-01-04 15:59:44 +08:00
parent f9de155e83
commit 9cfb9e95c9
9 changed files with 10349 additions and 15 deletions

View File

@ -121,7 +121,7 @@
let subFormModel = this.formModel[this.widget.options.name]
if (!!subFormModel && (subFormModel.length > 0)) {
subFormModel.forEach(() => {
this.rowIdData.push('r' + generateId())
this.rowIdData.push('id' + generateId())
})
if (!!initFlag) {
@ -135,11 +135,11 @@
},
addToRowIdData() {
this.rowIdData.push('rowId' + generateId())
this.rowIdData.push('id' + generateId())
},
insertToRowIdData(rowIndex) {
this.rowIdData.splice(rowIndex, 0, 'rowId' + generateId())
this.rowIdData.splice(rowIndex, 0, 'id' + generateId())
},
deleteFromRowIdData(rowIndex) {