Crud表格的批量修改和替换

This commit is contained in:
2025-05-28 18:44:58 +08:00
parent aa0290b345
commit 8b2c34d70b
18 changed files with 628 additions and 274 deletions

View File

@@ -119,5 +119,16 @@ export default {
method: "post",
data
})
},
/**
* 选择行后,批量修改“优先级”
* @returns
*/
priorityReplace(data = { selectRows: [], priority: "" }) {
return request({
url: "/project/testDemand/priorityReplace/",
method: "post",
data
})
}
}