| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <!DOCTYPE html>
- <html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
- <head>
- <th:block th:include="include :: header('导入表结构')" />
- </head>
- <body class="gray-bg">
- <div class="container-div">
- <div class="row">
- <form id="gen-form">
- <input type="hidden" id="projectId" name="projectId" th:value="${modelProject.id}">
- <!-- <div class="col-sm-12 search-collapse">-->
- <!-- <div class="select-list">-->
- <!-- <ul>-->
- <!-- <li>-->
- <!-- 表名称:<input type="text" name="entityName"/>-->
- <!-- </li>-->
- <!-- <li>-->
- <!-- 表逻辑名:<input type="text" name="entityCode"/>-->
- <!-- </li>-->
- <!-- <li>-->
- <!-- <a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>-->
- <!-- <a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i> 重置</a>-->
- <!-- </li>-->
- <!-- </ul>-->
- <!-- </div>-->
- <!-- </div>-->
- </form>
- <div class="col-sm-12 select-table table-striped">
- <table id="bootstrap-table"></table>
- </div>
- </div>
- </div>
- <th:block th:include="include :: footer" />
- <script type="text/javascript">
- var prefix = ctx + "model/modelEntity";
-
- $(function() {
- var options = {
- url: prefix + "/db/list",
- pagination: false,
- showSearch: false,
- showRefresh: false,
- showToggle: false,
- showColumns: false,
- clickToSelect: true,
- rememberSelected: true,
- uniqueId: "entityCode",
- columns: [{
- field: 'state',
- checkbox: true
- },
- {
- title: "序号",
- formatter: function (value, row, index) {
- return $.table.serialNumber(index);
- }
- },
- {
- field: 'entityName',
- title: '表名称',
- formatter: function(value, row, index) {
- return $.table.tooltip(value);
- }
- },
- {
- field: 'entityCode',
- title: '表逻辑名',
- formatter: function(value, row, index) {
- return $.table.tooltip(value);
- }
- },
- ]
- };
- $.table.init(options);
- });
-
- /* 导入表结构-选择表结构-提交 */
- function submitHandler() {
- var rows = $.table.selectColumns("entityCode");
- if (rows.length == 0) {
- $.modal.alertWarning("请至少选择一条记录");
- return;
- }
- var projectId = $("#projectId").val();
- var data = {
- "projectId": projectId,
- "entityCode": rows.join()
- };
- $.operate.save(prefix + "/importTable", data);
- }
- </script>
- </body>
- </html>
|