Merge branch 'develop' of http://git.dev.yoho.cn/web/yohobuy into feature/web-list
Showing
2 changed files
with
15 additions
and
4 deletions
@@ -3,15 +3,22 @@ | @@ -3,15 +3,22 @@ | ||
3 | {{#each pathNav}} | 3 | {{#each pathNav}} |
4 | {{#if href}} | 4 | {{#if href}} |
5 | <a href="{{href}}"> | 5 | <a href="{{href}}"> |
6 | - {{name}} | 6 | + {{#if @last}} |
7 | + <b>{{name}}</b> | ||
8 | + {{else}} | ||
9 | + {{name}} | ||
10 | + {{/if}} | ||
7 | 11 | ||
8 | {{#unless @last}} | 12 | {{#unless @last}} |
9 | <span class="iconfont"></span> | 13 | <span class="iconfont"></span> |
10 | {{/unless}} | 14 | {{/unless}} |
11 | </a> | 15 | </a> |
12 | {{^}} | 16 | {{^}} |
13 | - | ||
14 | - {{{name}}} | 17 | + {{#if @last}} |
18 | + <b>{{name}}</b> | ||
19 | + {{else}} | ||
20 | + {{name}} | ||
21 | + {{/if}} | ||
15 | 22 | ||
16 | {{#unless @last}} | 23 | {{#unless @last}} |
17 | <span> | 24 | <span> |
@@ -22,4 +29,4 @@ | @@ -22,4 +29,4 @@ | ||
22 | {{/if}} | 29 | {{/if}} |
23 | {{/each}} | 30 | {{/each}} |
24 | </p> | 31 | </p> |
25 | -{{/if}} | ||
32 | +{{/if}} |
-
Please register or login to post a comment