|
@@ -0,0 +1,147 @@
|
|
|
+<div class="main">
|
|
|
+ <div class="content">
|
|
|
+ <div class="container-fluid">
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-md-2">
|
|
|
+ <div class="list-group mt-3">
|
|
|
+ <% for (let compilation of compilationList) { %>
|
|
|
+ <% if (compilation._id === 'all') { %>
|
|
|
+ <a href="/billCode/main" class="list-group-item list-group-item-action <%= compilation.active %>">
|
|
|
+ 所有
|
|
|
+ </a>
|
|
|
+ <% } else { %>
|
|
|
+ <a id="<%= compilation._id %>" href="/billCode/main/?filter=<%= compilation._id %>" class="list-group-item list-group-item-action <%= compilation.active %>">
|
|
|
+ <%= compilation.name %>
|
|
|
+ </a>
|
|
|
+ <% }} %>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-md-10">
|
|
|
+ <div class="warp-p2 mt-3">
|
|
|
+ <table class="table table-hover table-bordered">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th>递延清单库名称</th>
|
|
|
+ <th width="160">编办</th>
|
|
|
+ <th width="160">添加时间</th>
|
|
|
+ <th width="70">操作</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody id="showArea">
|
|
|
+ <% for(let lib of templateLibs){ %>
|
|
|
+ <tr class="libTr">
|
|
|
+ <td id="<%= lib.ID%>"><a href="/billCode/edit/<%= lib.ID%>?locked=true"><%= lib.name%></a></td>
|
|
|
+ <td><%= lib.compilationName%></td>
|
|
|
+ <td><%= moment(lib.createDate).format('YYYY-MM-DD')%></td>
|
|
|
+ <td>
|
|
|
+ <a class="lock-btn-control disabled" href="javascript:void(0);"
|
|
|
+ style="color: #0275d8" onclick='getFeatureLib("<%= lib.ID%>")' title="编辑"><i
|
|
|
+ class="fa fa-pencil-square-o"></i></a>
|
|
|
+ <a class="text-danger lock-btn-control disabled" href="javascript:void(0);"
|
|
|
+ onclick='showDeleteModal("<%= lib.ID%>")' title="删除"><i
|
|
|
+ class="fa fa-remove"></i></a>
|
|
|
+ <a class="lock" data-locked="true" href="javascript:void(0);" title="解锁"><i
|
|
|
+ class="fa fa-unlock-alt"></i></a>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <% } %>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+
|
|
|
+<!--弹出添加-->
|
|
|
+<div class="modal fade" id="add" data-backdrop="static" style="display: none;" aria-hidden="true">
|
|
|
+ <div class="modal-dialog" role="document">
|
|
|
+ <div class="modal-content">
|
|
|
+ <div class="modal-header">
|
|
|
+ <h5 class="modal-title">添加递延清单库</h5>
|
|
|
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
+ <span aria-hidden="true">×</span>
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ <form id="addLibForm" method="post" action="/billCode/addLib"
|
|
|
+ enctype="application/x-www-form-urlencoded21">
|
|
|
+ <div class="form-group">
|
|
|
+ <label>递延清单库名称</label>
|
|
|
+ <input id="name" name="name" class="form-control" placeholder="输入递延清单库名称" type="text">
|
|
|
+ <small class="form-text text-danger" id="nameError" style="display: none">请输入递延清单库名称。</small>
|
|
|
+ </div>
|
|
|
+ <div class="form-group">
|
|
|
+ <label>编办名称</label>
|
|
|
+ <select class="form-control" name="compilationId">
|
|
|
+ <% for (let compilation of compilationList) { %>
|
|
|
+ <% if (compilation.name !== '所有') { %>
|
|
|
+ <option value="<%= compilation._id %>"><%= compilation.name %></option>
|
|
|
+ <% }} %>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <input type="hidden" name="userAccount" value="<%= userAccount%>">
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ <div class="modal-footer">
|
|
|
+ <button id="addLibs" class="btn btn-primary">新建</button>
|
|
|
+ <button type="button" id="cancelBtn" class="btn btn-secondary" data-dismiss="modal">取消</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+
|
|
|
+<!--弹出编辑-->
|
|
|
+<div class="modal fade" id="edit" data-backdrop="static" style="display: none;" aria-hidden="true">
|
|
|
+ <div class="modal-dialog" role="document">
|
|
|
+ <div class="modal-content">
|
|
|
+ <div class="modal-header">
|
|
|
+ <h5 class="modal-title">编辑递延清单库</h5>
|
|
|
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
+ <span aria-hidden="true">×</span>
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ <form>
|
|
|
+ <div class="form-group">
|
|
|
+ <label>递延清单库名称</label>
|
|
|
+ <input id="renameText" class="form-control" placeholder="输入名称" type="text" value="">
|
|
|
+ <small class="form-text text-danger" id="renameError" style="display: none">请输入名称。</small>
|
|
|
+ <input id="libID" type="hidden">
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ <div class="modal-footer">
|
|
|
+ <a id="rename" href="javascript: void(0);" class="btn btn-primary">确定</a>
|
|
|
+ <button type="button" class="btn btn-secondary" data-dismiss="modal">取消</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+
|
|
|
+<!--弹出删除-->
|
|
|
+<div class="modal fade" id="del" data-backdrop="static" style="display: none;" aria-hidden="true">
|
|
|
+ <div class="modal-dialog" role="document">
|
|
|
+ <div class="modal-content">
|
|
|
+ <div class="modal-header">
|
|
|
+ <h5 class="modal-title">删除确认</h5>
|
|
|
+ <button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
+ <span aria-hidden="true">×</span>
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ <h5 class="text-danger">删除后无法恢复,确认是否删除?</h5>
|
|
|
+ <input type="hidden" id="libID_del">
|
|
|
+ <input type="hidden" id="delCount">
|
|
|
+ </div>
|
|
|
+ <div class="modal-footer">
|
|
|
+ <a id="delete" href="javascript:void(0);" class="btn btn-danger">确认</a>
|
|
|
+ <button type="button" class="btn btn-secondary" data-dismiss="modal">取消</button>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+
|
|
|
+<script src="/public/web/lock_util.js"></script>
|
|
|
+<script type="text/javascript" src="/web/maintain/bill_code_lib/js/bill_code.js"></script>
|