|
@@ -28,96 +28,126 @@
|
|
|
<div class="flex-header">
|
|
|
<div class="flex-header-main">
|
|
|
<div class="header-main-box">
|
|
|
- <p>机构名称:<span>${newCmClub.name}</span></p>
|
|
|
- <p>联系人:<span>${newCmClub.userName}</span></p>
|
|
|
- <p>联系人身份:
|
|
|
- <span>
|
|
|
- <c:if test="${newCmClub.linkManIdentity eq '1'}">老板</c:if>
|
|
|
- <c:if test="${newCmClub.linkManIdentity eq '2'}">采购</c:if>
|
|
|
- <c:if test="${newCmClub.linkManIdentity eq '3'}">运营</c:if>
|
|
|
- <c:if test="${newCmClub.linkManIdentity ne '1' || newCmClub.linkManIdentity ne '2' || newCmClub.linkManIdentity ne '3'}">其他</c:if>
|
|
|
- </span>
|
|
|
- </p>
|
|
|
- <p>手机号:<span>${newCmClub.bindMobile}</span></p>
|
|
|
- <p>机构类型:
|
|
|
- <span>
|
|
|
- <c:if test="${cmClubinfo.firstClubType == '1'}">医美</c:if>
|
|
|
- <c:if test="${cmClubinfo.firstClubType == '2'}">生美</c:if>
|
|
|
- <c:if test="${cmClubinfo.firstClubType == '3'}">项目公司</c:if>
|
|
|
- <c:if test="${cmClubinfo.firstClubType == '4'}">个人</c:if>
|
|
|
- <c:if test="${cmClubinfo.firstClubType == '5'}">其他</c:if>
|
|
|
- -
|
|
|
- <c:if test="${cmClubinfo.secondClubType eq '1'}"> - 诊所</c:if>
|
|
|
- <c:if test="${cmClubinfo.secondClubType eq '2'}"> - 门诊</c:if>
|
|
|
- <c:if test="${cmClubinfo.secondClubType eq '3'}"> - 医院</c:if>
|
|
|
- <c:if test="${cmClubinfo.secondClubType eq '4'}"> - 其他</c:if>
|
|
|
- <c:if test="${cmClubinfo.secondClubType eq '5'}"> - 美容院</c:if>
|
|
|
- <c:if test="${cmClubinfo.secondClubType eq '6'}"> - 养生馆</c:if>
|
|
|
- <c:if test="${cmClubinfo.secondClubType eq '7'}"> - 其他</c:if>
|
|
|
- </span>
|
|
|
- </p>
|
|
|
- <p>地址:<span>${newCmClub.province } ${newCmClub.city } ${newCmClub.town } ${newCmClub.address}</span></p>
|
|
|
- <p>状态:<span>${fns:getDictLabel(newCmClub.status, 'club_status', newCmClub.status)}</span></p>
|
|
|
- <p>注册时间:<span><fmt:formatDate value="${newCmClub.registerTime}" pattern="yyyy-MM-dd HH:mm:ss"></fmt:formatDate></span></p>
|
|
|
+ <c:if test="${newCmClub.name ne null}"><p>机构名称:<span>${newCmClub.name}</span></p></c:if>
|
|
|
+ <c:if test="${newCmClub.userName ne null}"> <p>联系人:<span>${newCmClub.userName}</span></p></c:if>
|
|
|
+ <c:if test="${newCmClub.linkManIdentity ne null}">
|
|
|
+ <p>联系人身份:
|
|
|
+ <span>
|
|
|
+ <c:if test="${newCmClub.linkManIdentity eq '1'}">老板</c:if>
|
|
|
+ <c:if test="${newCmClub.linkManIdentity eq '2'}">采购</c:if>
|
|
|
+ <c:if test="${newCmClub.linkManIdentity eq '3'}">运营</c:if>
|
|
|
+ <c:if test="${newCmClub.linkManIdentity ne '1' || newCmClub.linkManIdentity ne '2' || newCmClub.linkManIdentity ne '3'}">其他</c:if>
|
|
|
+ </span>
|
|
|
+ </p>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${newCmClub.bindMobile ne null}"><p>手机号:<span>${newCmClub.bindMobile}</span></p></c:if>
|
|
|
+ <c:if test="${cmClubinfo.firstClubType ne null and cmClubinfo.secondClubType ne null}">
|
|
|
+ <p>机构类型:
|
|
|
+ <span>
|
|
|
+ <c:if test="${cmClubinfo.firstClubType == '1'}">医美</c:if>
|
|
|
+ <c:if test="${cmClubinfo.firstClubType == '2'}">生美</c:if>
|
|
|
+ <c:if test="${cmClubinfo.firstClubType == '3'}">项目公司</c:if>
|
|
|
+ <c:if test="${cmClubinfo.firstClubType == '4'}">个人</c:if>
|
|
|
+ <c:if test="${cmClubinfo.firstClubType == '5'}">其他</c:if>
|
|
|
+
|
|
|
+ <c:if test="${cmClubinfo.secondClubType eq '1'}"> - 诊所</c:if>
|
|
|
+ <c:if test="${cmClubinfo.secondClubType eq '2'}"> - 门诊</c:if>
|
|
|
+ <c:if test="${cmClubinfo.secondClubType eq '3'}"> - 医院</c:if>
|
|
|
+ <c:if test="${cmClubinfo.secondClubType eq '4'}"> - 其他</c:if>
|
|
|
+ <c:if test="${cmClubinfo.secondClubType eq '5'}"> - 美容院</c:if>
|
|
|
+ <c:if test="${cmClubinfo.secondClubType eq '6'}"> - 养生馆</c:if>
|
|
|
+ <c:if test="${cmClubinfo.secondClubType eq '7'}"> - 其他</c:if>
|
|
|
+ </span>
|
|
|
+ </p>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${newCmClub.province ne null and newCmClub.city ne null and newCmClub.town ne null and newCmClub.address ne null}"><p>地址:<span>${newCmClub.province } ${newCmClub.city } ${newCmClub.town } ${newCmClub.address}</span></p></c:if>
|
|
|
+ <c:if test="${newCmClub.status ne null}"><p>状态:<span>${fns:getDictLabel(newCmClub.status, 'club_status', newCmClub.status)}</span></p></c:if>
|
|
|
+ <c:if test="${newCmClub.registerTime ne null}"><p>注册时间:<span><fmt:formatDate value="${newCmClub.registerTime}" pattern="yyyy-MM-dd HH:mm:ss"></fmt:formatDate></span></p></c:if>
|
|
|
</div>
|
|
|
<div class="header-main-box">
|
|
|
<div class="main-box">
|
|
|
- <div class="main-box-tp">
|
|
|
- <p>机构类别:
|
|
|
- <span>
|
|
|
- <c:if test="${cmClubinfo.userIdentity eq 4}">个人机构</c:if>
|
|
|
- <c:if test="${cmClubinfo.userIdentity eq 2}">资质机构</c:if>
|
|
|
- <c:if test="${cmClubinfo.svipUserFlag eq 1}"><font color="red">(超级会员)</font></c:if>
|
|
|
- <c:if test="${cmClubinfo.userIdentity eq 2 and cmClubinfo.svipUserFlag eq 0}"><font color="red">(普通会员)</font></c:if>
|
|
|
- </span>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
- <div class="main-box-bt">
|
|
|
- <p>医疗许可证:</p>
|
|
|
- <a class="main-box-img" target="_blank" href="${cmClubinfo.medicalPracticeLicenseImg}"><img src="${cmClubinfo.medicalPracticeLicenseImg}"/></a>
|
|
|
- </div>
|
|
|
+ <c:if test="${cmClubinfo.userIdentity ne null and cmClubinfo.svipUserFlag ne null}">
|
|
|
+ <div class="main-box-tp">
|
|
|
+ <p>机构类别:
|
|
|
+ <span>
|
|
|
+ <c:if test="${cmClubinfo.userIdentity eq 4}">个人机构</c:if>
|
|
|
+ <c:if test="${cmClubinfo.userIdentity eq 2}">资质机构</c:if>
|
|
|
+ <c:if test="${cmClubinfo.svipUserFlag eq 1}"><font color="red">(超级会员)</font></c:if>
|
|
|
+ <c:if test="${cmClubinfo.userIdentity eq 2 and cmClubinfo.svipUserFlag eq 0}"><font color="red">(普通会员)</font></c:if>
|
|
|
+ </span>
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmClubinfo.medicalPracticeLicenseImg ne null}">
|
|
|
+ <div class="main-box-bt">
|
|
|
+ <p>医疗许可证:</p>
|
|
|
+ <a class="main-box-img" target="_blank" href="${cmClubinfo.medicalPracticeLicenseImg}"><img src="${cmClubinfo.medicalPracticeLicenseImg}"/></a>
|
|
|
+ </div>
|
|
|
+ </c:if>
|
|
|
</div>
|
|
|
<div class="main-box">
|
|
|
- <div class="main-box-tp">
|
|
|
- <p>营业执照编号:<span>${newCmClub.socialCreditCode}</span></p>
|
|
|
- </div>
|
|
|
- <div class="main-box-bt">
|
|
|
- <p>营业执照:</p>
|
|
|
- <a class="main-box-img" target="_blank" href="${newCmClub.businessLicenseImage}"><img src="${newCmClub.businessLicenseImage}"/></a>
|
|
|
- </div>
|
|
|
+ <c:if test="${newCmClub.socialCreditCode ne null}">
|
|
|
+ <div class="main-box-tp">
|
|
|
+ <p>营业执照编号:<span>${newCmClub.socialCreditCode}</span></p>
|
|
|
+ </div>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${newCmClub.businessLicenseImage ne null}">
|
|
|
+ <div class="main-box-bt">
|
|
|
+ <p>营业执照:</p>
|
|
|
+ <a class="main-box-img" target="_blank" href="${newCmClub.businessLicenseImage}"><img src="${newCmClub.businessLicenseImage}"/></a>
|
|
|
+ </div>
|
|
|
+ </c:if>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="flex-content">
|
|
|
- <div class="flex-p">
|
|
|
- <p>机构简称:<span>${newCmClub.sname}</span></p>
|
|
|
- </div>
|
|
|
- <div class="flex-p">
|
|
|
- <p>注册邮箱:<span>${newCmClub.contractEmail}</span></p>
|
|
|
- </div>
|
|
|
- <div class="flex-p">
|
|
|
- <p>门头照:<span></span></p>
|
|
|
- <a class="flex-p-img" target="_blank" href="${newCmClub.headpic}"><img src="${newCmClub.headpic}" alt=""></a>
|
|
|
- </div>
|
|
|
- <div class="flex-p">
|
|
|
- <p>科室:<span>${cmClubinfo.department}</span></p>
|
|
|
- </div>
|
|
|
- <div class="flex-p">
|
|
|
- <p>主营内容:<span>${cmClubinfo.mainpro}</span></p>
|
|
|
- </div>
|
|
|
- <div class="flex-p">
|
|
|
- <p>固定电话:<span>${cmClubinfo.contractPhone}</span></p>
|
|
|
- </div>
|
|
|
- <div class="flex-p">
|
|
|
- <p>传真:<span>${cmClubinfo.fax}</span></p>
|
|
|
- </div>
|
|
|
- <div class="flex-p">
|
|
|
- <p>员工人数:<span>${cmClubinfo.empnum}</span></p>
|
|
|
- </div>
|
|
|
- <div class="flex-p">
|
|
|
- <p>公司简介:<span>${cmClubinfo.info}</span></p>
|
|
|
- </div>
|
|
|
+ <c:if test="${newCmClub.sname ne null}">
|
|
|
+ <div class="flex-p">
|
|
|
+ <p>机构简称:<span>${newCmClub.sname}</span></p>
|
|
|
+ </div>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${newCmClub.contractEmail ne null}">
|
|
|
+ <div class="flex-p">
|
|
|
+ <p>注册邮箱:<span>${newCmClub.contractEmail}</span></p>
|
|
|
+ </div>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${newCmClub.headpic ne null}">
|
|
|
+ <div class="flex-p">
|
|
|
+ <p>门头照:<span></span></p>
|
|
|
+ <a class="flex-p-img" target="_blank" href="${newCmClub.headpic}"><img src="${newCmClub.headpic}" alt=""></a>
|
|
|
+ </div>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmClubinfo.department ne null}">
|
|
|
+ <div class="flex-p">
|
|
|
+ <p>科室:<span>${cmClubinfo.department}</span></p>
|
|
|
+ </div>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmClubinfo.mainpro ne null}">
|
|
|
+ <div class="flex-p">
|
|
|
+ <p>主营内容:<span>${cmClubinfo.mainpro}</span></p>
|
|
|
+ </div>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmClubinfo.contractPhone ne null}">
|
|
|
+ <div class="flex-p">
|
|
|
+ <p>固定电话:<span>${cmClubinfo.contractPhone}</span></p>
|
|
|
+ </div>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmClubinfo.fax ne null}">
|
|
|
+ <div class="flex-p">
|
|
|
+ <p>传真:<span>${cmClubinfo.fax}</span></p>
|
|
|
+ </div>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmClubinfo.empnum ne null}">
|
|
|
+ <div class="flex-p">
|
|
|
+ <p>员工人数:<span>${cmClubinfo.empnum}</span></p>
|
|
|
+ </div>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmClubinfo.info ne null}">
|
|
|
+ <div class="flex-p">
|
|
|
+ <p>公司简介:<span>${cmClubinfo.info}</span></p>
|
|
|
+ </div>
|
|
|
+ </c:if>
|
|
|
<div style="display: none">
|
|
|
<div class="flex-p"><p>基本信息:</p></div>
|
|
|
<div class="flex-p"><p>机构面积:<span>${cmClubinfo.area}</span></p></div>
|