|
@@ -6,11 +6,128 @@
|
|
|
To change this template use File | Settings | File Templates.
|
|
|
--%>
|
|
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
|
+<%@ include file="/webpage/include/taglib.jsp"%>
|
|
|
<html>
|
|
|
<head>
|
|
|
- <title>$Title$</title>
|
|
|
+ <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>
|
|
|
</head>
|
|
|
+<style>
|
|
|
+ .layui-input{
|
|
|
+ height: 28px;
|
|
|
+ margin-top: 6px;
|
|
|
+ /*background: whitesmoke;*/
|
|
|
+ }
|
|
|
+ .layui-form-label {
|
|
|
+ float: left;
|
|
|
+ display: block;
|
|
|
+ padding: 9px 15px;
|
|
|
+ width: 100px;
|
|
|
+ font-weight: 400;
|
|
|
+ line-height: 20px;
|
|
|
+ text-align: right;
|
|
|
+ }
|
|
|
+ .layui-table-view .layui-table {width:100%}
|
|
|
+</style>
|
|
|
<body>
|
|
|
-$END$
|
|
|
+<form id="updateForm">
|
|
|
+ <div class="layui-form-item" style="margin-top: 10px;">
|
|
|
+ <div class="layui-inline">
|
|
|
+ <label class="layui-form-label">工程名称</label>
|
|
|
+ <div class="layui-input-inline">
|
|
|
+ <input type="text" name="hcmc" name="name" lay-verify="" autocomplete="off" class="layui-input">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-inline">
|
|
|
+ <label class="layui-form-label">创建时间</label>
|
|
|
+ <div class="layui-input-inline">
|
|
|
+ <input type="text" name="beginUpdate" id="beginUpdate" lay-verify="" placeholder="yyyy-MM-dd" autocomplete="off" class="layui-input">
|
|
|
+ </div>
|
|
|
+ <div class="layui-form-mid">-</div>
|
|
|
+ <div class="layui-input-inline">
|
|
|
+ <input type="text" name="endUpdate" id="endUpdate" lay-verify="" placeholder="yyyy-MM-dd" autocomplete="off" class="layui-input">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</form>
|
|
|
+<div style="margin: 20px;">
|
|
|
+ <fieldset class="layui-elem-field layui-field-title">
|
|
|
+ <legend style="font-size: 20px;">项目信息</legend>
|
|
|
+ </fieldset>
|
|
|
+ <table class="layui-hide" id="updatetable" lay-filter="updatetable"></table>
|
|
|
+</div>
|
|
|
+<input id="updatebtn" type="button" onclick="updateProject()" style="display: none" />
|
|
|
</body>
|
|
|
+<script>
|
|
|
+ layui.use(['table','form','layedit', 'laydate'], function(){
|
|
|
+ var table = layui.table
|
|
|
+ ,form = layui.form
|
|
|
+ ,laydate = layui.laydate;
|
|
|
+ laydate.render({
|
|
|
+ elem: '#beginUpdate'
|
|
|
+ });
|
|
|
+ laydate.render({
|
|
|
+ elem: '#endUpdate'
|
|
|
+ });
|
|
|
+ //日期
|
|
|
+ form.render();
|
|
|
+ table.render({
|
|
|
+ elem: '#updatetable'
|
|
|
+ ,cols: [[
|
|
|
+ {field:'xmmc',width:100,title:'项目名称'}
|
|
|
+ ,{field:'sgdw',width:120,title:'施工单位'}
|
|
|
+ ,{field:'xmlx',width:100,title:'项目类型'}
|
|
|
+ ,{field:'op',align:'center',title:"操作",width:100,templet:function(d){
|
|
|
+ ////对操作进行初始化
|
|
|
+ var xml = "<a href='xmmc3.html' class='layui-btn layui-btn-xs' lay-event='update'>编辑</a>";
|
|
|
+ return xml;
|
|
|
+ }}
|
|
|
+ ]]
|
|
|
+ ,data:[
|
|
|
+ {
|
|
|
+ "id":"1",
|
|
|
+ "xmmc": "wbs要素1",
|
|
|
+ "sgdw": "wbs识别码",
|
|
|
+ "xmlx":'比例'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id":"2",
|
|
|
+ "xmmc": "wbs要素1",
|
|
|
+ "sgdw": "wbs识别码",
|
|
|
+ "xmlx":'比例'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "id":"1",
|
|
|
+ "xmmc": "wbs要素1",
|
|
|
+ "sgdw": "wbs识别码",
|
|
|
+ "xmlx":'比例'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ ,page: true
|
|
|
+ });
|
|
|
+ table.on('tool(updatetable)', function(obj){
|
|
|
+ var data = obj.data;
|
|
|
+ //console.log(obj)
|
|
|
+ if(obj.event == 'update'){
|
|
|
+// alert(data.id);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+</script>
|
|
|
+<script>
|
|
|
+ function updateProject(){
|
|
|
+ $.ajax({
|
|
|
+ type:"post",
|
|
|
+ url:"${ctx}/jkxl/ddtz",
|
|
|
+ // data:JSON.stringify({id:newid2,type:xmmc2,fee:fyje2}),
|
|
|
+ data:$('#updateForm').serialize(),
|
|
|
+ success:function(result){
|
|
|
+ parent.location.reload();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+</script>
|
|
|
</html>
|