修复菜单排序问题

This commit is contained in:
橙子
2022-10-16 13:43:23 +08:00
parent 464b768c55
commit 95c506c638
10 changed files with 18 additions and 17 deletions

View File

@@ -49,6 +49,6 @@ export function delData(code) {
return request({
url: '/<#= entityName #>/delList',
method: 'delete',
data:"string"==typeof(code)?code:[code]
data:"string"==typeof(code)?[code]:code
})
}