Commit 1a32fb5d authored by ibuler's avatar ibuler

fix del role url bug

parent be2f0b21
...@@ -87,7 +87,7 @@ function remove_role(role_id){ ...@@ -87,7 +87,7 @@ function remove_role(role_id){
if (confirm("确认删除")) { if (confirm("确认删除")) {
$.ajax({ $.ajax({
type: "POST", type: "POST",
url: "/jperm/role/perm_role_delete/", url: "{% url 'role_del' %}",
data: "id=" + role_id, data: "id=" + role_id,
success: function(msg){ success: function(msg){
alert( "成功: " + msg ); alert( "成功: " + msg );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment