|
|
@@ -55,8 +55,12 @@
|
|
|
<div class="inner" th:id="${a.tmplType + a.planContSq}" style="display: none">
|
|
|
<div class="dp_listItems_wrap">
|
|
|
<h2 class="dp_subtitle">
|
|
|
- <a th:if="${a.linkUrl!=null && a.linkUrl!=''}" th:href="${a.linkUrl}" th:text="${a.title}"></a>
|
|
|
- <a th:unless="${a.linkUrl!=null && a.linkUrl!=''}" href="javascript:void(0)" th:text="${a.title}"></a>
|
|
|
+ <th:block th:if="${a.linkUrl!=null && a.linkUrl!=''}">
|
|
|
+ <a th:href="${a.linkUrl}" th:text="${a.title}"></a>
|
|
|
+ </th:block>
|
|
|
+ <th:block th:unless="${a.linkUrl!=null && a.linkUrl!=''}">
|
|
|
+ [[${a.title}]]
|
|
|
+ </th:block>
|
|
|
</h2>
|
|
|
<div class="itemsGrp" th:id="'group_'+${a.planContSq}">
|
|
|
|
|
|
@@ -575,7 +579,7 @@ if(template.length>0){
|
|
|
html += ' <a href="'+template[i].linkUrl+'" target="_blank">'+template[i].title+'</a>\n';
|
|
|
}
|
|
|
}else{
|
|
|
- html += ' <a href="javascript:void(0)">'+template[i].title+'</a>\n';
|
|
|
+ html +=template[i].title;
|
|
|
}
|
|
|
html += ' </h2>\n';
|
|
|
html += ' <div class="swiper-container item01">\n';
|
|
|
@@ -706,7 +710,7 @@ if(template.length>0){
|
|
|
html += ' <h2 class="dp_subtitle"><a href="'+template[i].linkUrl+'" target="_blank">'+template[i].title+' </a></h2>\n';
|
|
|
}
|
|
|
}else{
|
|
|
- html += ' <h2 class="dp_subtitle"><a href="javascript:void(0)">'+template[i].title+' </a></h2>\n';
|
|
|
+ html += ' <h2 class="dp_subtitle">'+template[i].title+'</h2>\n';
|
|
|
}
|
|
|
|
|
|
html += ' <div class="swiper-container item02">\n';
|