mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-04-14 02:20:17 +08:00
141 lines
4.9 KiB
HTML
141 lines
4.9 KiB
HTML
{% extends "base-left.html" %}
|
||
{% load staticfiles %}
|
||
|
||
{% block css %}
|
||
<link rel="stylesheet" href="{% static 'plugins/datatables/jquery.dataTables.min.css' %}">
|
||
<link rel="stylesheet" href="{% static 'js/plugins/layer/skin/layer.css' %}">
|
||
{% endblock %}
|
||
|
||
{% block content %}
|
||
|
||
<!-- Main content -->
|
||
<section class="content">
|
||
<div id="devlist">
|
||
<div class="box box-primary" id="liebiao">
|
||
<div class="box-header">
|
||
<div class="btn-group pull-left">
|
||
<button type="button" id="btnCreate" class="btn btn-default">
|
||
<i class="glyphicon glyphicon-plus"></i>新增
|
||
</button>
|
||
|
||
</div>
|
||
<div class="btn-group pull-left"> </div>
|
||
<div class="btn-group pull-left">
|
||
<button type="button" id="btnDelete" class="btn btn-default">
|
||
<i class="glyphicon glyphicon-trash"></i>删除
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<div class="box-body">
|
||
<table id="dtbList" class="display" cellspacing="0" width="100%">
|
||
<thead>
|
||
<tr valign="middle">
|
||
<th><input type="checkbox" id="checkAll"></th>
|
||
<th>ID</th>
|
||
<th>名称</th>
|
||
<th>类别</th>
|
||
<th>所属</th>
|
||
<th>操作</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
</tbody>
|
||
</table>
|
||
<br> <br>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- /.content -->
|
||
|
||
{% endblock %}
|
||
|
||
|
||
{% block javascripts %}
|
||
<script src="{% static 'plugins/datatables/jquery.dataTables.min.js' %}"></script>
|
||
<script src="{% static 'plugins/datatables/dataTables.const.js' %}"></script>
|
||
<script src="{% static 'js/plugins/layer/layer.js' %}"></script>
|
||
|
||
<script type="text/javascript">
|
||
var oDataTable = null;
|
||
$(function () {
|
||
oDataTable = initTable();
|
||
|
||
function initTable() {
|
||
var oTable = $('#dtbList').DataTable($.extend(true, {},
|
||
DATATABLES_CONSTANT.DATA_TABLES.DEFAULT_OPTION,
|
||
{
|
||
ajax: {
|
||
"url": "{% url 'system:basic-structure-list' %}",
|
||
|
||
},
|
||
columns: [
|
||
DATATABLES_CONSTANT.DATA_TABLES.COLUMN.CHECKBOX,
|
||
{
|
||
data: "id",
|
||
width: "5%",
|
||
},
|
||
{
|
||
data: "name",//parent
|
||
width: "20%",
|
||
},
|
||
|
||
{
|
||
data: "type",
|
||
render: function (data, type, row, meta) {
|
||
if (data == 'unit') {
|
||
return "单位";
|
||
} else if (data == 'department') {
|
||
return "部门";
|
||
}
|
||
}
|
||
},
|
||
{
|
||
data: "parent__name",
|
||
},
|
||
|
||
{
|
||
data: "id",
|
||
width: "12%",
|
||
bSortable: "false",
|
||
render: function (data, type, row, meta) {
|
||
var ret = "";
|
||
var ret = "<button title='详情-编辑' onclick='doUpdate("
|
||
+ data + ")'><i class='glyphicon glyphicon-pencil'></i></button>";
|
||
ret = ret + "<button title='关联用户' onclick='doAddUser("
|
||
+ data + ")'><i class='glyphicon glyphicon-user'></i></button>";
|
||
ret = ret + "<button title='删除' onclick='doDelete("
|
||
+ data + ")'><i class='glyphicon glyphicon-trash'></i></button>";
|
||
return ret;
|
||
}
|
||
}],
|
||
"order": [
|
||
[1, 'id']
|
||
],
|
||
}));
|
||
return oTable;
|
||
}
|
||
|
||
});
|
||
|
||
</script>
|
||
<script type="text/javascript">
|
||
$("#btnCreate").click(function () {
|
||
layer.open({
|
||
type: 2,
|
||
title: '新增',
|
||
shadeClose: false,
|
||
maxmin: true,
|
||
area: ['800px', '400px'],
|
||
content: "{% url 'system:basic-structure-create' %}",
|
||
end: function () {
|
||
//新增内容,弹窗关闭后刷新oDatable
|
||
oDataTable.ajax.reload();
|
||
}
|
||
});
|
||
});
|
||
</script>
|
||
|
||
{% endblock %}
|