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

Commit 86814819 authored by Tice's avatar Tice

详情修改

parent e771528f
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<body class="white-bg"> <body class="white-bg">
<form class="form-horizontal m-t" id="signupForm"> <form class="form-horizontal m-t" id="signupForm">
<div class="form-group"> <div class="form-group">
<label class="col-sm-2 control-label">zbu名称:</label> <label class="col-sm-2 control-label">场地名称:</label>
<div class="form-control-static" th:text="${fieldApplyInfo.name}"></div> <div class="form-control-static" th:text="${fieldApplyInfo.name}"></div>
<label class="col-sm-2 control-label">场地logo:</label> <label class="col-sm-2 control-label">场地logo:</label>
<div class="form-control-static"> <div class="form-control-static">
......
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
detailUrl: prefix + "/details/{id}", detailUrl: prefix + "/details/{id}",
sortName: "createdAt", sortName: "createdAt",
sortOrder: "desc", sortOrder: "desc",
modalName: "场地审核", modalName: "场地申请",
columns: [{ columns: [{
checkbox: true checkbox: true
}, },
......
<!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 col-sm-9" th:text="${fieldInfo.name}"></div>
<label class="col-sm-2 control-label">场地logo:</label>
<div class="form-control-static col-sm-9">
<img class="field-detail-avatar" th:src="${fieldInfo.logo}" alt="">
</div>
<label class="col-sm-2 control-label">场地背景图:</label>
<div class="form-control-static col-sm-9">
<img class="field-detail-avatar" th:src="${fieldInfo.background}" alt="">
</div>
<label class="col-sm-2 control-label">场地创建时间:</label>
<div class="form-control-static col-sm-9" th:text="${fieldInfo.builtDate}"></div>
<label class="col-sm-2 control-label">地区:</label>
<div class="form-control-static col-sm-9" th:text="${fieldInfo.provinceName + fieldInfo.cityName + fieldInfo.districtName}"></div>
<label class="col-sm-2 control-label">坐标:</label>
<div class="form-control-static col-sm-9" th:text="${fieldInfo.longitude + ',' + fieldInfo.latitude}"></div>
<label class="col-sm-2 control-label">地址详情:</label>
<div class="form-control-static col-sm-9" th:text="${fieldInfo.address}"></div>
<label class="col-sm-2 control-label">介绍:</label>
<div class="form-control-static col-sm-9" th:text="${fieldInfo.description}"></div>
<label class="col-sm-2 control-label">场地负责人姓名:</label>
<div class="form-control-static col-sm-9" th:text="${fieldInfo.contactName}"></div>
<label class="col-sm-2 control-label">联系方式:</label>
<div class="form-control-static col-sm-9" th:text="${fieldInfo.contactEmail}"></div>
</div>
<div class="form-group" th:class="${fieldInfo.companiesVo != null ? '' : 'form-dis'}">
<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>
<label class="col-sm-2 control-label">营业执照编号:</label>
<div class="form-control-static col-sm-9" th:text="${fieldInfo.companiesVo == null ? '' : fieldInfo.companiesVo.licenseCode}"></div>
<label class="col-sm-2 control-label">营业执照:</label>
<div class="form-control-static col-sm-9" >
<img class="field-detail-avatar-certificates" th:src="${fieldInfo.companiesVo == null ? '' : fieldInfo.companiesVo.licenseImg}" alt="">
</div>
<label class="col-sm-2 control-label">法人代表名称:</label>
<div class="form-control-static col-sm-9" th:text="${fieldInfo.companiesVo == null ? '' : fieldInfo.companiesVo.legalName}"></div>
<label class="col-sm-2 control-label">法人代表身份证号:</label>
<div class="form-control-static col-sm-9" th:text="${fieldInfo.companiesVo == null ? '' : fieldInfo.companiesVo.legalIdentity}"></div>
<label class="col-sm-2 control-label">法人证件正面照:</label>
<div class="form-control-static col-sm-9">
<img class="field-detail-avatar-certificates" th:src="${fieldInfo.companiesVo == null ? '' : fieldInfo.companiesVo.legalIdentityObverse}" alt="">
</div>
<label class="col-sm-2 control-label">法人证件反面照:</label>
<div class="form-control-static col-sm-9">
<img class="field-detail-avatar-certificates" th:src="${fieldInfo.companiesVo == null ? '' : fieldInfo.companiesVo.legalIdentityReverse}" alt="">
</div>
</div>
</form>
</body> </body>
<th:block th:include="include :: footer" />
<script th:inline="javascript">
</script>
</html> </html>
\ No newline at end of file
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
detailUrl: prefix + "/details/{id}", detailUrl: prefix + "/details/{id}",
sortName: "createdAt", sortName: "createdAt",
sortOrder: "desc", sortOrder: "desc",
modalName: "-场地列表", modalName: "场地",
columns: [ columns: [
{ {
checkbox: true checkbox: true
......
<!DOCTYPE html> <!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org"> <html lang="zh" xmlns:th="http://www.thymeleaf.org">
<head> <head>
<th:block th:include="include :: header('场地审核详情')"/> <th:block th:include="include :: header('主办审核详情')"/>
<style> <style>
.field-detail-avatar{ .field-detail-avatar{
width: 146px; width: 146px;
......
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
detailUrl: prefix + "/details/{id}", detailUrl: prefix + "/details/{id}",
sortName: "createdAt", sortName: "createdAt",
sortOrder: "desc", sortOrder: "desc",
modalName: "-主办审核", modalName: "主办申请",
columns: [{ columns: [{
checkbox: true checkbox: true
}, },
......
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
detailUrl: prefix + "/details/{id}", detailUrl: prefix + "/details/{id}",
sortName: "createdAt", sortName: "createdAt",
sortOrder: "desc", sortOrder: "desc",
modalName: "-主办列表", modalName: "主办",
columns: [ columns: [
{ {
checkbox: true checkbox: true
......
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