追加vuedraggable组件缺失的文件。

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

1
.gitignore vendored
View File

@ -6,3 +6,4 @@ dist-ssr
/.idea/
/.vscode/
/stats.html
*.iml

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

5175
lib/vuedraggable/dist/vuedraggable.umd.js vendored Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

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) {

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/dist" />
<excludeFolder url="file://$MODULE_DIR$/lib" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>