zhuwei 2 년 전
부모
커밋
b62471bdf8
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/components/dialog/SortNodeDialog.vue

+ 2 - 2
src/components/dialog/SortNodeDialog.vue

@@ -136,13 +136,13 @@ const sortNodeMoadl = ()=>{
 
 const nodeSortModalSave = async()=>{
     nodeSortModalLoading.value = true;
-    const {code,data} = await submitArchiveTreeSort(nodeSortTableData.value)
+    const {code,data} = await submitArchiveTreeSort({"listSort":nodeSortTableData.value})
     //console.log(res);
     nodeSortModalLoading.value = false;
     if (code == 200) {
         window.$message?.success('修改成功')
         window?.location?.reload()  //刷新页面
     }
-    
+
 }
 </script>