Showing
2 changed files
with
3 additions
and
3 deletions
@@ -216,7 +216,7 @@ function reMarginFooter(fixedElement) { | @@ -216,7 +216,7 @@ function reMarginFooter(fixedElement) { | ||
216 | jsonData = { | 216 | jsonData = { |
217 | page: bpIdArr[0], | 217 | page: bpIdArr[0], |
218 | floor: bpIdArr[1], | 218 | floor: bpIdArr[1], |
219 | - data: bpIdArr.slice(2).join('_') //防止值字符串中有_导致的问题 | 219 | + data: /_[1|0]$/.test(bpIdArr.join('_')) ? bpIdArr[2] : bpIdArr.slice(2).join('_') //防止值字符串中有_导致的问题 |
220 | }; | 220 | }; |
221 | if (window._yas.sendCustomInfo) { | 221 | if (window._yas.sendCustomInfo) { |
222 | window._yas.sendCustomInfo(jsonData, Boolean(parseInt(bpIdArr[3]) || 1)); | 222 | window._yas.sendCustomInfo(jsonData, Boolean(parseInt(bpIdArr[3]) || 1)); |
@@ -3,8 +3,8 @@ | @@ -3,8 +3,8 @@ | ||
3 | <div class="filter-body"> | 3 | <div class="filter-body"> |
4 | <ul class="classify"> | 4 | <ul class="classify"> |
5 | {{#each classify}} | 5 | {{#each classify}} |
6 | - <li class="buriedpoint classify-item{{#if @first}} active{{/if}}" data-bp-id="filter_classify_{{name}}_1"> | ||
7 | - <p class="shower{{#if default}} default{{/if}}"> | 6 | + <li class="classify-item{{#if @first}} active{{/if}}"> |
7 | + <p class="buriedpoint shower{{#if default}} default{{/if}}" data-bp-id="filter_classify_{{name}}_1"> | ||
8 | <span class="title">{{title}}:</span> | 8 | <span class="title">{{title}}:</span> |
9 | {{name}} | 9 | {{name}} |
10 | </p> | 10 | </p> |
-
Please register or login to post a comment