.
This commit is contained in:
57
tpl/front/detailTpl.html
Normal file
57
tpl/front/detailTpl.html
Normal file
@@ -0,0 +1,57 @@
|
||||
<!-- head -->
|
||||
<style>
|
||||
.boxBg {
|
||||
width: 1060px;
|
||||
background-size: 100% 100%;
|
||||
overflow: hidden;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.mianContent {
|
||||
margin: 0;
|
||||
background-size: 100% 100%;
|
||||
overflow: hidden;
|
||||
padding: 17px 20px;
|
||||
position: relative;
|
||||
}
|
||||
</style>
|
||||
<div class="cat__core__top-sidebar cat__core__top-sidebar--bg">
|
||||
<span class="cat__core__title"> <strong>#(remark)详情</strong>
|
||||
</span>
|
||||
<button class="btn btn-warning btn-circle mr-2 mb-2" onclick="javascript:history.back(-1);" style="float: right;margin-top: -12px;">
|
||||
<i class="fa fa-reply">返回</i>
|
||||
</button>
|
||||
</div>
|
||||
<!-- body -->
|
||||
|
||||
<div class="card-block animated bounceInRight">
|
||||
<div class="card">
|
||||
<div class="mianContent">
|
||||
<div class="card-block">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="row table-responsive">
|
||||
<table class="table table-hover nowrap table-bordered" width="100%" >
|
||||
<tbody>
|
||||
#set(i=0)
|
||||
#for(x : fieldList)
|
||||
#if(x.edit)
|
||||
#if(i%2 == 0)
|
||||
<tr>
|
||||
#end
|
||||
<th>#(x.remark1)</th>#set(i=i+1)
|
||||
<td>{{ dealField(row, "#(x.field)") }}</td>
|
||||
#if(i%2 == 0)
|
||||
</tr>
|
||||
#end
|
||||
#end
|
||||
#end
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
Reference in New Issue
Block a user