12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <%@ include file="/webpage/include/taglib.jsp"%>
- <%--<%@include file="/static/"%>--%>
- <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>
- <link rel="stylesheet" href="${ctxp}/static/plugin/assets/bootstrap.min.css">
- <style>
- .layui-input{ height: 28px;}
- td{text-align: center;font-size: 14px;margin-top: 20px;color: #555}
- .layui_td_1{text-align: center;font-size: 14px;width: 23%;}
- .modal-body{padding: 10px}
- </style>
- </head>
- <body>
- <form id="inputForm"class="layui-form" action="${ctx}/project/tem/importfile" method="post" enctype="multipart/form-data">
- <div class="modal-body">
- <%--<fieldset class="layui-elem-field layui-field-title">--%>
- <%--<legend>222</legend>--%>
- <%--</fieldset>--%>
- <table class="table table-bordered table-striped" width="800px">
- <tr>
- <td class="layui_td_1"><input type="button" class="layui-btn layui-btn-primary layui-btn-sm" value="选择结算文件" id="btnxz"/></td>
- <td>
- <input type="text" autocomplete="off" readonly="readonly" class="layui-input" placeholder="*结算书文件为博微导出xls/xlsx格式文件" id="view_input" style="background-color: whitesmoke">
- </td>
- </tr>
- <tr>
- <td class="layui_td_1">*项目划分</td>
- <td ><select name="type" lay-verify="required" lay-search="">
- <option value="">请选择</option>
- <option value="1">架空线路工程</option>
- <option value="2">电缆工程</option>
- <option value="3">变电站工程</option>
- </select></td>
- </tr>
- <tr>
- <td class="layui_td_1">*项目名称</td>
- <td>
- <input type="text" name="name" autocomplete="off" class="layui-input" id="inputwrite">
- </td>
- </tr>
- <tr>
- <td class="layui_td_1">项目编号</td>
- <td>
- <input type="text" name="" autocomplete="off" class="layui-input">
- </td>
- </tr>
- </table>
- </div>
- <input type="file" style="display: none;" accept=".xls,.xlsx" name="file" id="myfile"/>
- <input id="newText1" hidden name="projectId" value=""/>
- </form>
- </body>
- <script src="${ctxp}/static/plugin/assets/layui/layui.js"></script>
- <%@include file="addItem.js"%>
- </html>
|