黎星凯
2024-04-15 62b6a7fac3f2acde70b578431147c4a01f19c182
admin-web/src/api/system/role.js
@@ -54,15 +54,15 @@
}
// 角色状态修改
export function changeRoleStatus(role_id, status) {
  const data = {
    role_id,
    status
  }
export function changeRoleStatus(row) {
  // const data = {
  //   role_id,
  //   status
  // }
  return request({
    url: '/pc/fin/sys/role/select/changeStatus',
    url: '/system/role/edit',
    method: 'post',
    data: data
    data: row
  })
}