|
@@ -1,183 +0,0 @@
|
|
|
-<!DOCTYPE html>
|
|
|
-<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
|
|
-<head>
|
|
|
- <th:block th:include="include :: header('新增申请记录')" />
|
|
|
- <th:block th:include="include :: datetimepicker-css" />
|
|
|
-</head>
|
|
|
-<body class="white-bg">
|
|
|
- <div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
|
|
- <form class="form-horizontal m" id="form-record-add">
|
|
|
- <h4 class="form-header h4">申请记录信息</h4>
|
|
|
- <div class="form-group">
|
|
|
- <label class="col-sm-3 control-label">申请部门:</label>
|
|
|
- <div class="col-sm-8">
|
|
|
- <input name="applyOid" class="form-control" type="text">
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="form-group">
|
|
|
- <label class="col-sm-3 control-label">登记部门:</label>
|
|
|
- <div class="col-sm-8">
|
|
|
- <input name="orgId" class="form-control" type="text">
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="form-group">
|
|
|
- <label class="col-sm-3 control-label">申请时间:</label>
|
|
|
- <div class="col-sm-8">
|
|
|
- <div class="input-group date">
|
|
|
- <input name="applyTime" class="form-control" placeholder="yyyy-MM-dd" type="text">
|
|
|
- <span class="input-group-addon"><i class="fa fa-calendar"></i></span>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="form-group">
|
|
|
- <label class="col-sm-3 control-label">接口数量:</label>
|
|
|
- <div class="col-sm-8">
|
|
|
- <input name="intNumbers" class="form-control" type="text">
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="form-group">
|
|
|
- <label class="col-sm-3 control-label">备注:</label>
|
|
|
- <div class="col-sm-8">
|
|
|
- <input name="remarks" class="form-control" type="text">
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <h4 class="form-header h4">申请明细信息</h4>
|
|
|
- <div class="row">
|
|
|
- <div class="col-sm-12">
|
|
|
- <button type="button" class="btn btn-white btn-sm" onclick="addColumn()"><i class="fa fa-plus"> 增加</i></button>
|
|
|
- <button type="button" class="btn btn-white btn-sm" onclick="sub.delColumn()"><i class="fa fa-minus"> 删除</i></button>
|
|
|
- <div class="col-sm-12 select-table table-striped">
|
|
|
- <table id="bootstrap-table"></table>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- <th:block th:include="include :: footer" />
|
|
|
- <th:block th:include="include :: datetimepicker-js" />
|
|
|
- <script th:inline="javascript">
|
|
|
- var prefix = ctx + "apply/record"
|
|
|
- $("#form-record-add").validate({
|
|
|
- focusCleanup: true
|
|
|
- });
|
|
|
-
|
|
|
- function submitHandler() {
|
|
|
- if ($.validate.form()) {
|
|
|
- $.operate.save(prefix + "/add", $('#form-record-add').serialize());
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- $("input[name='applyTime']").datetimepicker({
|
|
|
- format: "yyyy-mm-dd",
|
|
|
- minView: "month",
|
|
|
- autoclose: true
|
|
|
- });
|
|
|
-
|
|
|
- $(function() {
|
|
|
- var options = {
|
|
|
- pagination: false,
|
|
|
- showSearch: false,
|
|
|
- showRefresh: false,
|
|
|
- showToggle: false,
|
|
|
- showColumns: false,
|
|
|
- columns: [{
|
|
|
- checkbox: true
|
|
|
- },
|
|
|
- {
|
|
|
- field: 'index',
|
|
|
- align: 'center',
|
|
|
- title: "序号",
|
|
|
- formatter: function (value, row, index) {
|
|
|
- var columnIndex = $.common.sprintf("<input type='hidden' name='index' value='%s'>", $.table.serialNumber(index));
|
|
|
- return columnIndex + $.table.serialNumber(index);
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- field: 'intId',
|
|
|
- align: 'center',
|
|
|
- title: '接口表id',
|
|
|
- formatter: function(value, row, index) {
|
|
|
- var html = $.common.sprintf("<input class='form-control' type='text' name='intDetailedList[%s].intId' value='%s'>", index, value);
|
|
|
- return html;
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- field: 'strAt',
|
|
|
- align: 'center',
|
|
|
- title: '开始时间',
|
|
|
- formatter: function(value, row, index) {
|
|
|
- var html = $.common.sprintf("<input class='form-control' type='text' name='intDetailedList[%s].strAt' value='%s'>", index, value);
|
|
|
- return html;
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- field: 'endAt',
|
|
|
- align: 'center',
|
|
|
- title: '结束时间',
|
|
|
- formatter: function(value, row, index) {
|
|
|
- var html = $.common.sprintf("<input class='form-control' type='text' name='intDetailedList[%s].endAt' value='%s'>", index, value);
|
|
|
- return html;
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- field: 'accessId',
|
|
|
- align: 'center',
|
|
|
- title: 'access_id',
|
|
|
- formatter: function(value, row, index) {
|
|
|
- var html = $.common.sprintf("<input class='form-control' type='text' name='intDetailedList[%s].accessId' value='%s'>", index, value);
|
|
|
- return html;
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- field: 'secretKey',
|
|
|
- align: 'center',
|
|
|
- title: 'secret_key',
|
|
|
- formatter: function(value, row, index) {
|
|
|
- var html = $.common.sprintf("<input class='form-control' type='text' name='intDetailedList[%s].secretKey' value='%s'>", index, value);
|
|
|
- return html;
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- field: 'status',
|
|
|
- align: 'center',
|
|
|
- title: '状态',
|
|
|
- formatter: function(value, row, index) {
|
|
|
- var html = $.common.sprintf("<input class='form-control' type='text' name='intDetailedList[%s].status' value='%s'>", index, value);
|
|
|
- return html;
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- field: 'remarks',
|
|
|
- align: 'center',
|
|
|
- title: '备注',
|
|
|
- formatter: function(value, row, index) {
|
|
|
- var html = $.common.sprintf("<input class='form-control' type='text' name='intDetailedList[%s].remarks' value='%s'>", index, value);
|
|
|
- return html;
|
|
|
- }
|
|
|
-
|
|
|
- }]
|
|
|
- };
|
|
|
- $.table.init(options);
|
|
|
- });
|
|
|
-
|
|
|
- function addColumn() {
|
|
|
- var count = $("#" + table.options.id).bootstrapTable('getData').length;
|
|
|
- sub.editColumn();
|
|
|
-
|
|
|
- $("#" + table.options.id).bootstrapTable('insertRow', {
|
|
|
- index: count,
|
|
|
- row: {
|
|
|
- index: $.table.serialNumber(count),
|
|
|
- intId: "",
|
|
|
- strAt: "",
|
|
|
- endAt: "",
|
|
|
- accessId: "",
|
|
|
- secretKey: "",
|
|
|
- status: "",
|
|
|
- remarks: ""
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
- </script>
|
|
|
-</body>
|
|
|
-</html>
|