Authored by yangyang

Merge branch 'develop' of http://git.dev.yoho.cn/web/yohobuy into feature/web-list

@@ -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">&#xe601;</span> 13 <span class="iconfont">&#xe601;</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}}
@@ -8,6 +8,10 @@ @@ -8,6 +8,10 @@
8 "plugin/slider", 8 "plugin/slider",
9 "pager"; 9 "pager";
10 10
  11 +b {
  12 + font-weight: bold;
  13 +}
  14 +
11 body { 15 body {
12 font-family: arial,"Microsoft YaHei"; 16 font-family: arial,"Microsoft YaHei";
13 } 17 }