fix: 🐛 修复build:prod sortablejs错误

Former-commit-id: dafcdc49c68bff61e0ebe087183671a860f67510
This commit is contained in:
Jachin
2023-08-09 11:04:01 +08:00
parent 21017d407b
commit ee68c1f13f
2 changed files with 10 additions and 6 deletions

View File

@@ -69,6 +69,7 @@
"@types/lodash": "^4.14.195", "@types/lodash": "^4.14.195",
"@types/nprogress": "^0.2.0", "@types/nprogress": "^0.2.0",
"@types/path-browserify": "^1.0.0", "@types/path-browserify": "^1.0.0",
"@types/sortablejs": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^5.59.6", "@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6", "@typescript-eslint/parser": "^5.59.6",
"autoprefixer": "^10.4.14", "autoprefixer": "^10.4.14",

View File

@@ -76,7 +76,7 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
//import Sortable from "sortablejs"; import { default as Sortable, SortableEvent } from "sortablejs";
import { fetchList } from "@/api/article"; import { fetchList } from "@/api/article";
defineOptions({ defineOptions({
@@ -127,14 +127,17 @@ const rowDrag = function () {
const tbody = document.querySelector( const tbody = document.querySelector(
".draggable .el-table__body-wrapper tbody" ".draggable .el-table__body-wrapper tbody"
); );
/* Sortable.create(tbody, { if (!tbody) return;
Sortable.create(tbody as HTMLElement, {
// 可被拖拽的子元素 // 可被拖拽的子元素
draggable: ".draggable .el-table__row", draggable: ".draggable .el-table__row",
onEnd({ newIndex, oldIndex }: { newIndex: number; oldIndex: number }) { onEnd(event: SortableEvent) {
const currRow = list.value.splice(oldIndex, 1)[0]; if (event.oldIndex !== undefined && event.newIndex !== undefined) {
list.value.splice(newIndex, 0, currRow); const currRow = list.value.splice(event.oldIndex, 1)[0];
list.value.splice(event.newIndex, 0, currRow);
}
}, },
}); */ });
}; };
onMounted(() => { onMounted(() => {