Merge pull request #17 from ygcaicn/master

修复build:prod sortablejs错误

Former-commit-id: fcd8a0d5a3ccc9d4da5afddf8a651d63aab74929
This commit is contained in:
郝先瑞
2023-08-09 19:54:05 +08:00
committed by GitHub
3 changed files with 11 additions and 7 deletions

View File

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

View File

@@ -83,6 +83,6 @@ export function deleteArticle(id: number) {
return request({
url: "/api/v1/article/delete",
method: "post",
params: { id },
data: { id },
});
}

View File

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