记得上下班打卡 | git大法好,push需谨慎

Commit d7f6c54a authored by Tice's avatar Tice

update

parent 564ec68f
...@@ -140,7 +140,6 @@ ...@@ -140,7 +140,6 @@
<script th:inline="javascript"> <script th:inline="javascript">
var prefix = ctx + "merchant/field/apply"; var prefix = ctx + "merchant/field/apply";
var fieldInfo = [[${fieldApplyInfo}]] var fieldInfo = [[${fieldApplyInfo}]]
console.log(fieldInfo)
var param = { var param = {
fieldApplyId:fieldInfo.fieldApplyId fieldApplyId:fieldInfo.fieldApplyId
} }
......
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
<label class="col-sm-2 control-label">联系方式:</label> <label class="col-sm-2 control-label">联系方式:</label>
<div class="form-control-static col-sm-9" th:text="${fieldInfo.contactEmail}"></div> <div class="form-control-static col-sm-9" th:text="${fieldInfo.contactEmail}"></div>
</div> </div>
<div class="form-group" th:class="${fieldInfo.companiesVo != null ? '' : 'form-dis'}"> <div class="form-group" th:if="${fieldInfo.companiesVo != null}">
<label class="col-sm-2 control-label">企业名称:</label> <label class="col-sm-2 control-label">企业名称:</label>
<div class="form-control-static col-sm-9" th:text="${fieldInfo.companiesVo == null ? '' : fieldInfo.companiesVo.name}"></div> <div class="form-control-static col-sm-9" th:text="${fieldInfo.companiesVo == null ? '' : fieldInfo.companiesVo.name}"></div>
<label class="col-sm-2 control-label">营业执照编号:</label> <label class="col-sm-2 control-label">营业执照编号:</label>
......
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="zh" xmlns:th="http://www.thymeleaf.org">
<head> <head>
<meta charset="UTF-8"> <th:block th:include="include :: header('主办详情')"/>
<title>Title</title> <style>
.field-detail-avatar{
width: 146px;
height: 146px;
}
.field-detail-avatar-certificates{
width: 300px;
height: 200px;
}
.form-btns{
padding-bottom: 20px;
}
.form-dis{
display: none;
}
</style>
</head> </head>
<body> <body class="white-bg">
<form class="form-horizontal m-t" id="signupForm">
<div class="form-group">
<label class="col-sm-2 control-label">主办名称:</label>
<div class="form-control-static" th:text="${sponsorInfo.name}"></div>
<label class="col-sm-2 control-label">主办logo:</label>
<div class="form-control-static">
<img class="field-detail-avatar" th:src="${sponsorInfo.logo}" alt="">
</div>
<label class="col-sm-2 control-label">主办背景图:</label>
<div class="form-control-static">
<img class="field-detail-avatar" th:src="${sponsorInfo.background}" alt="">
</div>
<label class="col-sm-2 control-label">介绍:</label>
<div class="form-control-static" th:text="${sponsorInfo.description}"></div>
<label class="col-sm-2 control-label">姓名:</label>
<div class="form-control-static" th:text="${sponsorInfo.contactName}"></div>
<label class="col-sm-2 control-label">身份证号:</label>
<div class="form-control-static" th:text="${sponsorInfo.contactIdentity}"></div>
<label class="col-sm-2 control-label">证件正面照:</label>
<div class="form-control-static">
<img class="field-detail-avatar-certificates" th:src="${sponsorInfo.contactIdentityObverse}" alt="">
</div>
<label class="col-sm-2 control-label">证件反面照:</label>
<div class="form-control-static">
<img class="field-detail-avatar-certificates" th:src="${sponsorInfo.contactIdentityReverse}" alt="">
</div>
<label class="col-sm-2 control-label">联系方式:</label>
<div class="form-control-static" th:text="${sponsorInfo.contactEmail}"></div>
</div>
</form>
</body> </body>
<th:block th:include="include :: footer" />
<script th:inline="javascript">
</script>
</html> </html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment