mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-03 19:03:15 +08:00
81 lines
2.8 KiB
Python
81 lines
2.8 KiB
Python
{% extends 'base-layer.html' %}
|
|
{% load staticfiles %}
|
|
|
|
{% block main %}
|
|
<div class="box box-danger">
|
|
<form class="form-horizontal" id="addForm" method="post">
|
|
{% csrf_token %}
|
|
<input type="hidden" name='id' value="{{ role.id }}"/>
|
|
<div class="box-body">
|
|
<fieldset>
|
|
<legend>
|
|
<h4>修改角色</h4>
|
|
</legend>
|
|
<div class="form-group has-feedback">
|
|
<label class="col-sm-2 control-label">名称</label>
|
|
<div class="col-sm-8">
|
|
<input class="form-control" name="name" type="text" value="{{ role.name }}"/>
|
|
</div>
|
|
</div>
|
|
<div class="form-group has-feedback">
|
|
<label class="col-sm-2 control-label">描述</label>
|
|
<div class="col-sm-8">
|
|
<input class="form-control" name="desc" type="text" value="{{ role.desc }}"/>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
|
|
</div>
|
|
<div class="box-footer ">
|
|
<div class="row span7 text-center ">
|
|
<button type="button" id="btnCancel" class="btn btn-default margin-right ">重置</button>
|
|
<button type="button" id="btnSave" class="btn btn-info margin-right ">保存</button>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
<script src="{% static 'plugins/combo-select/jquery.combo.select.js' %}"></script>
|
|
<script src="{% static 'bootstrap/js/bootstrap-datetimepicker.js' %}"></script>
|
|
<script type="text/javascript">
|
|
|
|
$("#btnSave").click(function () {
|
|
var data = $("#addForm").serialize();
|
|
$.ajax({
|
|
type: $("#addForm").attr('method'),
|
|
url: "{% url 'system:rbac-role-update' %}",
|
|
data: data,
|
|
cache: false,
|
|
success: function (msg) {
|
|
if (msg.result) {
|
|
layer.alert('数据保存成功!', {icon: 1}, function (index) {
|
|
parent.layer.closeAll(); //关闭所有弹窗
|
|
});
|
|
} else {
|
|
layer.alert('数据保存失败', {icon: 5});
|
|
//$('errorMessage').html(msg.message)
|
|
}
|
|
return;
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
/*点取消刷新新页面*/
|
|
$("#btnCancel").click(function () {
|
|
window.location.reload();
|
|
|
|
});
|
|
|
|
/*select 支持输入检索*/
|
|
$(function () {
|
|
$('select').comboSelect();
|
|
});
|
|
|
|
</script>
|
|
|
|
{% endblock %} |