This commit is contained in:
2026-01-28 16:54:07 +08:00
parent ec972fac8e
commit a5abc874ab
9 changed files with 154 additions and 128 deletions

View File

@@ -131,5 +131,16 @@ export default {
method: "get",
params
})
},
/**
* 拖拽设计需求排序
* @returns
*/
switch_position(from_key, to_key, pos, project_id) {
return request({
url: "/project/switch_position",
method: "get",
params: { from_key, to_key, pos, project_id }
})
}
}