Merge branch 'develop' of http://git.dev.yoho.cn/web/yohobuy into feature/web-list
Showing
2 changed files
with
13 additions
and
2 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 | + {{#if @last}} | ||
7 | + <b>{{name}}</b> | ||
8 | + {{else}} | ||
6 | {{name}} | 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> |
-
Please register or login to post a comment