yue 5 лет назад
Родитель
Сommit
8090d15032

+ 201 - 0
src/main/java/com/jeeplus/modules/sg/managementcenter/activiti/entity/Construction.java

@@ -40,6 +40,47 @@ public class Construction extends ActEntity<Construction> {
     private String networkCabinet;
     private String station;
     private String applyName;
+    //施工通道
+    private String channel;
+    //设备基础是否可以扩容
+    private String capacity;
+    //现场设备尺寸
+    private String sceneSize;
+    //最多可扩容尺寸
+    private String capacitySize;
+    //方案安全隐患
+    private String hiddenDanger;
+    //是否存在低压或通信线等影响施工
+    private String influenceConstruction;
+    //立项重复
+    private String projectRepetition;
+    //是否已实施
+    private String implemented;
+    //变压器无负荷
+    private String transformer;
+    //线路名称一致性
+    private String lineName;
+    //工程量是否一致
+    private String quantities;
+    //设备、开关、杆号一致性
+    private String rodNumber;
+    //政处类型
+    private String administrationType;
+    //是否存在严重政处问题(预判)
+    private String politicalProblem;
+    //前置条件
+    private String precondition;
+    //DTU安放方式核查
+    private String placementMode;
+    //核查环网柜生产日期
+    private String productionDate;
+    //二次是否是集成模块
+    private String integrateModule;
+    //PT是否需要更换
+    private String needReplace;
+    //设备是否有整体改造的必要
+    private String overallTransformation;
+    //
 
     public User getTuser() {
         return tuser;
@@ -266,4 +307,164 @@ public class Construction extends ActEntity<Construction> {
     public void setApplyName(String applyName) {
         this.applyName = applyName;
     }
+
+    public String getChannel() {
+        return channel;
+    }
+
+    public void setChannel(String channel) {
+        this.channel = channel;
+    }
+
+    public String getCapacity() {
+        return capacity;
+    }
+
+    public void setCapacity(String capacity) {
+        this.capacity = capacity;
+    }
+
+    public String getSceneSize() {
+        return sceneSize;
+    }
+
+    public void setSceneSize(String sceneSize) {
+        this.sceneSize = sceneSize;
+    }
+
+    public String getCapacitySize() {
+        return capacitySize;
+    }
+
+    public void setCapacitySize(String capacitySize) {
+        this.capacitySize = capacitySize;
+    }
+
+    public String getHiddenDanger() {
+        return hiddenDanger;
+    }
+
+    public void setHiddenDanger(String hiddenDanger) {
+        this.hiddenDanger = hiddenDanger;
+    }
+
+    public String getInfluenceConstruction() {
+        return influenceConstruction;
+    }
+
+    public void setInfluenceConstruction(String influenceConstruction) {
+        this.influenceConstruction = influenceConstruction;
+    }
+
+    public String getProjectRepetition() {
+        return projectRepetition;
+    }
+
+    public void setProjectRepetition(String projectRepetition) {
+        this.projectRepetition = projectRepetition;
+    }
+
+    public String getImplemented() {
+        return implemented;
+    }
+
+    public void setImplemented(String implemented) {
+        this.implemented = implemented;
+    }
+
+    public String getTransformer() {
+        return transformer;
+    }
+
+    public void setTransformer(String transformer) {
+        this.transformer = transformer;
+    }
+
+    public String getLineName() {
+        return lineName;
+    }
+
+    public void setLineName(String lineName) {
+        this.lineName = lineName;
+    }
+
+    public String getQuantities() {
+        return quantities;
+    }
+
+    public void setQuantities(String quantities) {
+        this.quantities = quantities;
+    }
+
+    public String getRodNumber() {
+        return rodNumber;
+    }
+
+    public void setRodNumber(String rodNumber) {
+        this.rodNumber = rodNumber;
+    }
+
+    public String getAdministrationType() {
+        return administrationType;
+    }
+
+    public void setAdministrationType(String administrationType) {
+        this.administrationType = administrationType;
+    }
+
+    public String getPoliticalProblem() {
+        return politicalProblem;
+    }
+
+    public void setPoliticalProblem(String politicalProblem) {
+        this.politicalProblem = politicalProblem;
+    }
+
+    public String getPrecondition() {
+        return precondition;
+    }
+
+    public void setPrecondition(String precondition) {
+        this.precondition = precondition;
+    }
+
+    public String getPlacementMode() {
+        return placementMode;
+    }
+
+    public void setPlacementMode(String placementMode) {
+        this.placementMode = placementMode;
+    }
+
+    public String getProductionDate() {
+        return productionDate;
+    }
+
+    public void setProductionDate(String productionDate) {
+        this.productionDate = productionDate;
+    }
+
+    public String getIntegrateModule() {
+        return integrateModule;
+    }
+
+    public void setIntegrateModule(String integrateModule) {
+        this.integrateModule = integrateModule;
+    }
+
+    public String getNeedReplace() {
+        return needReplace;
+    }
+
+    public void setNeedReplace(String needReplace) {
+        this.needReplace = needReplace;
+    }
+
+    public String getOverallTransformation() {
+        return overallTransformation;
+    }
+
+    public void setOverallTransformation(String overallTransformation) {
+        this.overallTransformation = overallTransformation;
+    }
 }

+ 114 - 87
src/main/java/com/jeeplus/modules/sg/managementcenter/activiti/mapper/xml/ConstructionMapper.xml

@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 <mapper namespace="com.jeeplus.modules.sg.managementcenter.activiti.mapper.ConstructionMapper">
-    
-	<sql id="constructionColumns">
+
+    <sql id="constructionColumns">
 		a.id AS "id",
 		a.proc_ins_id AS "procInsId",
 		a.user_name AS "userName",
@@ -16,84 +16,111 @@
 		a.update_date AS "updateDate",
 		a.remarks AS "remarks",
 		a.del_flag AS "delFlag",
-		applyName,
-		powerLine,
-		blackoutArea,
-		projectType,
-		powerFailure,
-		preliminaryJudgment,
-		civilEngineering,
-		baseType,
-		planApproval,
-		transformationType,
-		transformationEquipment,
-		newNamed,
-		putInto,
-		electricalConstruction,
-		theAssignment,
-		automation,
-		remote,
-		communicationMode,
-		inSitu,
-		networkCabinet,
-		station
+		a.applyName,
+		a.powerLine,
+		a.blackoutArea,
+		a.projectType,
+		a.powerFailure,
+		a.preliminaryJudgment,
+		a.civilEngineering,
+		a.baseType,
+		a.planApproval,
+		a.transformationType,
+		a.transformationEquipment,
+		a.newNamed,
+		a.putInto,
+		a.electricalConstruction,
+		a.theAssignment,
+		a.automation,
+		a.remote,
+		a.communicationMode,
+		a.inSitu,
+		a.networkCabinet,
+		a.station
+	</sql>
+
+    <sql id="disclose">
+		b.conId,
+		b.channel,
+		b.capacity,
+		b.sceneSize,
+		b.capacitySize,
+		b.hiddenDanger,
+		b.influenceConstruction,
+		b.projectRepetition,
+		b.implemented,
+		b.transformer,
+		b.lineName,
+		b.quantities,
+		b.rodNumber,
+		b.administrationType,
+		b.politicalProblem,
+		b.precondition,
+		b.placementMode,
+		b.productionDate,
+		b.IntegrateModule,
+		b.needReplace,
+		b.overallTransformation
 	</sql>
-	
-	<sql id="constructionJoins">
+
+    <sql id="constructionJoins">
 		LEFT JOIN sys_user updateBy ON updateBy.id = a.update_by
 	</sql>
-	
+
     <resultMap type="Construction" id="ConstructionResult" autoMapping="true">
-    	<result column="reason" property="reason"   typeHandler="com.jeeplus.core.mapper.ConvertBlobTypeHandler"/>
+        <result column="reason" property="reason" typeHandler="com.jeeplus.core.mapper.ConvertBlobTypeHandler"/>
     </resultMap>
 
-	<select id="get" resultMap="ConstructionResult" >
-		SELECT 
-			<include refid="constructionColumns"/>
-		FROM xm_construction_clarificaiton a
-		<include refid="constructionJoins"/>
+    <select id="get" resultMap="ConstructionResult">
+        SELECT
+        <include refid="constructionColumns"/>,
+        <include refid="disclose"/>
+        FROM xm_construction_clarificaiton a
+		LEFT JOIN xm_disclose_conclusion b on a.proc_ins_id=b.proc_ins_id
 		WHERE a.id = #{id}
-	</select>
-	
-	<select id="findList" resultMap="ConstructionResult" >
-		SELECT 
-			<include refid="constructionColumns"/>
-		FROM xm_construction_clarificaiton a
-		<include refid="constructionJoins"/>
-		<where>
-			a.del_flag = #{DEL_FLAG_NORMAL}
-			${dataScope}
-		</where>
-		<choose>
-			<when test="page !=null and page.orderBy != null and page.orderBy != ''">
-				ORDER BY ${page.orderBy}
-			</when>
-			<otherwise>
-				ORDER BY a.update_date DESC
-			</otherwise>
-		</choose>
-	</select>
-	
-	<select id="findAllList" resultMap="ConstructionResult" >
-		SELECT 
-			<include refid="constructionColumns"/>
-		FROM xm_construction_clarificaiton a
-		<include refid="constructionJoins"/>
-		<where>
-			a.del_flag = #{DEL_FLAG_NORMAL}
-			${dataScope}
-		</where>		
-		<choose>
-			<when test="page !=null and page.orderBy != null and page.orderBy != ''">
-				ORDER BY ${page.orderBy}
-			</when>
-			<otherwise>
-				ORDER BY a.update_date DESC
-			</otherwise>
-		</choose>
-	</select>
-	
-	<insert id="insert">
+    </select>
+
+    <select id="findList" resultMap="ConstructionResult">
+        SELECT
+        <include refid="constructionColumns"/>,
+        <include refid="disclose"/>
+        FROM xm_construction_clarificaiton a,xm_disclose_conclusion b
+        <include refid="constructionJoins"/>
+        <where>
+			a.proc_ins_id=b.proc_ins_id and
+            a.del_flag = #{DEL_FLAG_NORMAL}
+            ${dataScope}
+        </where>
+        <choose>
+            <when test="page !=null and page.orderBy != null and page.orderBy != ''">
+                ORDER BY ${page.orderBy}
+            </when>
+            <otherwise>
+                ORDER BY a.update_date DESC
+            </otherwise>
+        </choose>
+    </select>
+
+    <select id="findAllList" resultMap="ConstructionResult">
+        SELECT
+        <include refid="constructionColumns"/>
+        FROM xm_construction_clarificaiton a
+        <include refid="constructionJoins"/>
+        <where>
+            a.del_flag = #{DEL_FLAG_NORMAL}
+            ${dataScope}
+        </where>
+        <choose>
+            <when test="page !=null and page.orderBy != null and page.orderBy != ''">
+                ORDER BY ${page.orderBy}
+            </when>
+            <otherwise>
+                ORDER BY a.update_date DESC
+            </otherwise>
+        </choose>
+    </select>
+
+    <insert id="insert">
 		INSERT INTO xm_construction_clarificaiton(
 			id,
 			proc_ins_id,
@@ -126,8 +153,8 @@
 			#{delFlag}
 		)
 	</insert>
-	
-	<update id="update">
+
+    <update id="update">
 		UPDATE xm_construction_clarificaiton SET
 			proc_ins_id = #{procInsId},
 			user_name = #{userName},
@@ -142,7 +169,7 @@
 		WHERE id = #{id}
 	</update>
 
-	<update id="newUpdate">
+    <update id="newUpdate">
 		UPDATE xm_construction_clarificaiton SET
 			powerLine = #{powerLine},
 			blackoutArea = #{blackoutArea},
@@ -166,24 +193,24 @@
 			station = #{station}
 		WHERE id = #{id}
 	</update>
-	
-	<!--物理删除-->
-	<update id="delete">
+
+    <!--物理删除-->
+    <update id="delete">
 		DELETE FROM xm_construction_clarificaiton
 		WHERE id = #{id}
 	</update>
-	
-	<!--逻辑删除-->
-	<update id="deleteByLogic">
+
+    <!--逻辑删除-->
+    <update id="deleteByLogic">
 		UPDATE xm_construction_clarificaiton SET
 			del_flag = #{DEL_FLAG_DELETE}
 		WHERE id = #{id}
 	</update>
-	
-	
-	<!-- 根据实体名称和字段名称和字段值获取唯一记录 -->
-	<select id="findUniqueByProperty" resultType="OALeave" statementType="STATEMENT">
+
+
+    <!-- 根据实体名称和字段名称和字段值获取唯一记录 -->
+    <select id="findUniqueByProperty" resultType="OALeave" statementType="STATEMENT">
 		select * FROM xm_construction_clarificaiton  where ${propertyName} = '${value}'
 	</select>
-	
+
 </mapper>

+ 1 - 1
src/main/webapp/static/common/js/jeeplus.js

@@ -83,7 +83,7 @@
 	   
 	   
 	   /**alert弹出框,阻塞浏览器窗口*/
-	   alert:function(msg){
+           alert:function(msg){
 		   top.layer.alert(msg, {
 			    skin: 'layui-layer-lan'
 			    ,area:['auto', 'auto']

+ 3 - 4
src/main/webapp/webpage/modules/sg/managementcenter/activiti/divideAudit.jsp

@@ -2,13 +2,12 @@
 <%@ include file="/webpage/include/taglib.jsp"%>
 <html>
 <head>
-	<title>施工单位交底面</title>
+	<title>施工单位交底面</title>
 	<meta name="decorator" content="ani"/>
 	<!-- SUMMERNOTE -->
 	<%@include file="/webpage/include/summernote.jsp" %>
 	<script type="text/javascript">
-
-		$(document).ready(function() {
+		/*$(document).ready(function() {
 			jp.ajaxForm("#inputForm",function(data){
 				if(data.success){
 					jp.success(data.msg);
@@ -82,7 +81,7 @@
 					}
 				}
 			});
-		});
+		});*/
 	</script>
 </head>
 <body>

+ 1 - 23
src/main/webapp/webpage/modules/sg/managementcenter/activiti/divideForm.js

@@ -37,7 +37,7 @@
                 var IntegrateModule = $("#IntegrateModule").val();
                 var needReplace = $("#needReplace").val();
                 var overallTransformation = $("#overallTransformation").val();*/
-            jp.prompt("没有问题, 审批意见", function (message) {
+            jp.prompt("备注说明", function (message) {
                 jp.post("${ctx}/act/task/audit3",
                     {
                         "taskId": "${construction.act.taskId}",
@@ -79,28 +79,6 @@
         })
 
 
-        $("#reject").click(function () {
-            jp.prompt("存在问题, 审批意见", function (message) {
-                jp.post("${ctx}/act/task/audit3",
-                    {
-                        "taskId": "${construction.act.taskId}",
-                        "taskName": "${construction.act.taskName}",
-                        "taskDefKey": "${construction.act.taskDefKey}",
-                        "procInsId": "${construction.act.procInsId}",
-                        "procDefId": "${construction.act.procDefId}",
-                        "flag": "yes",
-                        "comment": window.encodeURI(message)
-                    },
-                    function (data) {
-                        if (data.success) {
-                            jp.success(data.msg);
-                            jp.go("${ctx}/act/task/todo")
-                        }
-                    })
-            })
-        })
-
-
         $('#startTime').datetimepicker({
             format: "YYYY-MM-DD HH:mm:ss"
         });

+ 22 - 49
src/main/webapp/webpage/modules/sg/managementcenter/activiti/divideForm.jsp

@@ -164,11 +164,11 @@
 							<tr>
 								<td class="width-15 active"><label class="pull-right">施工通道:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='channel'  name="channel" class="form-control required"  value=""/>
+									<input type='text' readonly="readonly" id='channel'  name="channel" class="form-control required"  value="${construction.channel}"/>
 								</td>
 								<td class="width-15 active"><label class="pull-right"><font color="red">*</font>设备基础是否可以扩容:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='capacity'  name="capacity" class="form-control required"  value=""/>
+									<input type='text' readonly="readonly" id='capacity'  name="capacity" class="form-control required"  value="${construction.capacity}"/>
 										<%--<select id="capacity"  maxlength="100"  class=" form-control">
 										<option value="是">是</option>
 										<option value="否">否</option>
@@ -178,108 +178,91 @@
 							<tr>
 								<td class="width-15 active"><label class="pull-right">现场设备尺寸:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='sceneSize'  name="sceneSize" class="form-control required"  value=""/>
+									<input type='text' readonly="readonly" id='sceneSize'  name="sceneSize" class="form-control required"  value="${construction.sceneSize}"/>
 								</td>
 								<td class="width-15 active"><label class="pull-right"><font color="red">*</font>最多可扩容尺寸:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='capacitySize'  name="capacitySize" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='capacitySize'  name="capacitySize" class="form-control required"  value="${construction.capacitySize}"/>
 								</td>
 							</tr>
 							<tr>
 								<td class="width-15 active"><label class="pull-right">方案安全隐患:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='hiddenDanger'  name="hiddenDanger" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='hiddenDanger'  name="hiddenDanger" class="form-control required"  value="${construction.hiddenDanger}"/>
 								</td>
 								<td class="width-15 active"><label class="pull-right"><font color="red">*</font>是否存在低压或通信线等影响施工:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='influenceConstruction'  name="influenceConstruction" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='influenceConstruction'  name="influenceConstruction" class="form-control required"  value="${construction.influenceConstruction}"/>
 								</td>
 							</tr>
 							<tr>
 								<td class="width-15 active"><label class="pull-right">立项重复:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='projectRepetition'  name="projectRepetition" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='projectRepetition'  name="projectRepetition" class="form-control required"  value="${construction.projectRepetition}"/>
 								</td>
 								<td class="width-15 active"><label class="pull-right"><font color="red">*</font>是否已实施:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='implemented'  name="implemented" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='implemented'  name="implemented" class="form-control required"  value="${construction.implemented}"/>
 								</td>
 							</tr>
 							<tr>
 								<td class="width-15 active"><label class="pull-right">变压器无负荷:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='transformer'  name="transformer" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='transformer'  name="transformer" class="form-control required"  value="${construction.transformer}"/>
 								</td>
 								<td class="width-15 active"><label class="pull-right"><font color="red">*</font>线路名称一致性:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='lineName'  name="lineName" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='lineName'  name="lineName" class="form-control required"  value="${construction.lineName}"/>
 								</td>
 							</tr>
 							<tr>
 								<td class="width-15 active"><label class="pull-right">工程量是否一致:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='quantities'  name="quantities" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='quantities'  name="quantities" class="form-control required"  value="${construction.quantities}"/>
 								</td>
 								<td class="width-15 active"><label class="pull-right"><font color="red">*</font>设备、开关、杆号一致性:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='rodNumber'  name="rodNumber" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='rodNumber'  name="rodNumber" class="form-control required"  value="${construction.rodNumber}"/>
 								</td>
 							</tr>
 							<tr>
 								<td class="width-15 active"><label class="pull-right">政处类型:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='administrationType'  name="administrationType" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='administrationType'  name="administrationType" class="form-control required"  value="${construction.administrationType}"/>
 								</td>
 								<td class="width-15 active"><label class="pull-right"><font color="red">*</font>是否存在严重政处问题(预判):</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='politicalProblem'  name="politicalProblem" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='politicalProblem'  name="politicalProblem" class="form-control required"  value="${construction.politicalProblem}"/>
 								</td>
 							</tr>
 							<tr>
 								<td class="width-15 active"><label class="pull-right">前置条件:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='precondition'  name="precondition" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='precondition'  name="precondition" class="form-control required"  value="${construction.precondition}"/>
 								</td>
 								<td class="width-15 active"><label class="pull-right"><font color="red">*</font>DTU安放方式核查:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='placementMode'  name="placementMode" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='placementMode'  name="placementMode" class="form-control required"  value="${construction.placementMode}"/>
 								</td>
 							</tr>
 							<tr>
 								<td class="width-15 active"><label class="pull-right">核查环网柜生产日期:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='productionDate'  name="productionDate" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='productionDate'  name="productionDate" class="form-control required"  value="${construction.productionDate}"/>
 								</td>
 								<td class="width-15 active"><label class="pull-right"><font color="red">*</font>二次是否是集成模块:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='IntegrateModule'  name="IntegrateModule" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='IntegrateModule'  name="IntegrateModule" class="form-control required"  value="${construction.integrateModule}"/>
 								</td>
 							</tr>
 							<tr>
 								<td class="width-15 active"><label class="pull-right">PT是否需要更换:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='needReplace'  name="needReplace" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='needReplace'  name="needReplace" class="form-control required"  value="${construction.needReplace}"/>
 								</td>
 								<td class="width-15 active"><label class="pull-right"><font color="red">*</font>设备是否有整体改造的必要:</label></td>
 								<td class="width-35">
-									<input type='text' readonly="readonly" id='overallTransformation'  name="overallTransformation" class="form-control required"  value=""/>
-
+									<input type='text' readonly="readonly" id='overallTransformation'  name="overallTransformation" class="form-control required"  value="${construction.overallTransformation}"/>
 								</td>
 							</tr>
 							</tbody>
@@ -293,18 +276,8 @@
 							<div class="col-sm-3"></div>
 							<div class="col-sm-6">
 								<div class="form-group text-center">
-									<input id="agree" class="btn  btn-primary btn-lg btn-parsley" type="submit" value="没有问题" />&nbsp;
-									<input id="reject" class="btn  btn-primary btn-lg btn-parsley" type="submit" value="存在问题" />
-								</div>
-							</div>
-						</div>
-					</c:if>
-					<c:if test="${construction.act.taskDefKey != '' && !construction.act.finishTask && !construction.act.isNextGatewaty}">
-						<div class="row">
-							<div class="col-sm-3"></div>
-							<div class="col-sm-6">
-								<div class="form-group text-center">
-									<input id="agree" class="btn  btn-primary btn-lg btn-parsley" type="submit" value="办 理" />&nbsp;
+									<input id="agree" class="btn  btn-primary btn-lg btn-parsley" type="submit" value="审核" />&nbsp;
+<%--									<input id="reject" class="btn  btn-primary btn-lg btn-parsley" type="submit" value="存在问题" />--%>
 								</div>
 							</div>
 						</div>