mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-04-24 19:00:22 +08:00
99 lines
3.4 KiB
Python
99 lines
3.4 KiB
Python
{% extends 'base-layer.html' %}
|
|
{% load staticfiles %}
|
|
{% block css %}
|
|
<link rel="stylesheet" href="{% static 'plugins/select2/select2.min.css' %}">
|
|
<!-- iCheck for checkboxes and radio inputs -->
|
|
{% endblock %}
|
|
{% block main %}
|
|
<div class="box box-danger">
|
|
<form class="form-horizontal" id="addForm" method="post">
|
|
<input type="hidden" name='id' value="{{ supplier.id }}" />
|
|
{% csrf_token %}
|
|
<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="firm" type="text" value="{{ supplier.firm }}"/>
|
|
</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="contact_details" type="text" value="{{ supplier.contact_details}}"/>
|
|
</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" id="desc" name="desc" type="text" value="{{ supplier.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/select2/select2.full.min.js' %}"></script>
|
|
<script type="text/javascript">
|
|
|
|
function getUrl() {
|
|
if ($("input[name='id']").val()) {
|
|
var url = "{% url 'cmdb:eam-supplier-update' %}";
|
|
} else {
|
|
var url = "{% url 'cmdb:eam-supplier-create' %}";
|
|
}
|
|
return url
|
|
}
|
|
|
|
$("#btnSave").click(function () {
|
|
var data = $("#addForm").serialize();
|
|
$.ajax({
|
|
type: $("#addForm").attr('method'),
|
|
url: getUrl(),
|
|
data: data,
|
|
cache: false,
|
|
success: function (msg) {
|
|
if (msg.result) {
|
|
layer.alert('数据保存成功!', {icon: 1}, function (index) {
|
|
parent.layer.closeAll(); //关闭所有弹窗
|
|
});
|
|
} else {
|
|
layer.alert(msg.error, {icon: 5});
|
|
//$('errorMessage').html(msg.message)
|
|
}
|
|
return;
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
/*点取消刷新新页面*/
|
|
$("#btnCancel").click(function () {
|
|
window.location.reload();
|
|
|
|
});
|
|
|
|
$(function () {
|
|
//Initialize Select2 Elements
|
|
$(".select2").select2();
|
|
});
|
|
|
|
</script>
|
|
|
|
{% endblock %} |