BootStrap轻松实现微信页面开发代码分享

2020-05-24 21:34:10易采站长站整理

right: 0;
top: 0;
opacity: 0;
}
.file:hover {
background: #AADFFD;
border-color: #78C3F3;
color: #004974;
text-decoration: none;
}
td{
valign: middle
}
</style>
<%PointQualitySecurityDto pDto = ((PointQualitySecurityDto)request.getAttribute("pointQualitySecurityDto")); %>
<title>安全/质量填报</title>
</head>
<body class="container">
<h4 class="page-header">安全/质量填报</h4>
<spring:form id="defaultForm" class="form-horizontal" modelAttribute="pointQualitySecurityDto" action="save.do" method="post" enctype="multipart/form-data" >
<input type="hidden" name="pId" value="${pointQualitySecurityDto.pId }"/>
<table id="formQRCode" class="table table-striped table-hover table-bordered">
<thead>
<tr>
<th data-field="name" data-halign="center" valign="middle">工程部位(工点)</th>
<th data-field="qrcode" data-halign="center" valign="middle">检查人</th>
<th data-field="url" data-halign="center">检查时间</th>
</tr>
</thead>
<tbody>
<tr>
<td>${pointQualitySecurityDto.pointProject }</td>
<td>${pointQualitySecurityDto.recordPerson }</td>
<td>${pointQualitySecurityDto.recordDate }</td>
</tr>
</tbody>
</table>
<table class="table table-hover table-bordered" id="securityTable" data-pagination="false"
data-search="false"
data-show-refresh="false"
data-toggle="card"
data-card-view = "true"
data-show-toggle="false"
data-show-columns="false"
data-page-list="[10,20,50,100]">
<caption>安全</caption>
<thead>
<thead>
<tr>
<th data-field="" data-halign="center">检查项目</th>
<th data-field="" data-halign="center">实际得分</th>
<th data-field="" data-halign="center">是否合格</th>
<th data-field="" data-halign="center">附件</th>
</tr>
</thead>
<tbody>
<tr>
<td>安全施工</td>
<td>${pointQualitySecurityDto.sSecurityScore }
</td>
<td>${pointQualitySecurityDto.isSSecurity }
</td>
<td>
<%if(!StringUtils.isEmpty(pDto.getsSecurityFileName())){ %>
<a href="javascript:void(0);" class="file" onclick="showPicture('${pointQualitySecurityDto.sSecurityFileId}');"><img alt="" src="<%=basePath%>/page/project/wechat/m500point/img/box_picture.png"></a>
<%} %>
</td>
</tr>
<tr>
<td>文明施工</td>
<td>${pointQualitySecurityDto.sCiviliztionScore }