1234567891011121314151617181920212223242526272829303132333435363738 |
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <%@ include file="/webpage/include/taglib.jsp"%>
- <html>
- <head>
- <title>税金扣减</title>
- <link rel="stylesheet" href="${ctxp}/static/plugin/assets/layui/css/layui.css">
- <link rel="stylesheet" href="${ctxp}/static/plugin/assets/common.css"/>
- <script type="text/javascript" src="${ctxp}/static/plugin/assets/jquery-3.2.1.min.js"></script>
- <script src="${ctxp}/static/plugin/assets/layui/layui.js"></script>
- <%@include file="taxDeductionsForm.js"%>
- </head>
- <style>
- .layui-table-view .layui-table {width:100%}
- .layui-table-cell .layui-form-checkbox[lay-skin="primary"]{top: 50%;transform: translateY(-50%);}
- .mydiv{padding: 5px 7px;border: whitesmoke;line-height: 98%;margin-top: 2px}
- </style>
- <body>
- <div class="layui-btn-group suretable" style="display: none;">
- <button class="layui-btn" data-type="getCheckData" id="freenl">确定</button>
- </div>
- <input id="updatebtn" type="button" onclick="updateProject()" style="display: none" />
- <%--<div class="layui-form-item">--%>
- <%--<div class="" style="margin-left: 10px;margin-top: 10px;">--%>
- <%--<span id="mylable2">项目调整</span>--%>
- <%--<span>:</span>--%>
- <%--<span id="readid2">200</span>--%>
- <%--</div>--%>
- <%--<div class="" style="margin-left: 10px;">--%>
- <%--<input type="radio" name="mydiv" value="1" title="增加" checked="">--%>
- <%--<input type="radio" name="mydiv" value="2" title="减少">--%>
- <%--</div>--%>
- <%--</div>--%>
- <div style="margin-left: 7px;margin-right: 7px">
- <table class="layui-hide" id="longtable" lay-filter="longtable"></table>
- </div>
- </body>
- </html>
|