Authored by wangqing

增加搜索关键字和new

@@ -83,7 +83,11 @@ @@ -83,7 +83,11 @@
83 <ul class="sub-nav-list"> 83 <ul class="sub-nav-list">
84 {{# subnav}} 84 {{# subnav}}
85 <li class="sub-nav-item"> 85 <li class="sub-nav-item">
86 - <a href="{{link}}">{{name}}</a> 86 + <a href="{{link}}">{{name}}
  87 + {{#if is_new}}
  88 + <span class="newlogo"></span>
  89 + {{/if}}
  90 + </a>
87 {{#if thirdnav}} 91 {{#if thirdnav}}
88 <div class="third-nav-wrapper"> 92 <div class="third-nav-wrapper">
89 <div class="third-nav"> 93 <div class="third-nav">
@@ -96,7 +100,7 @@ @@ -96,7 +100,7 @@
96 {{#branditems}} 100 {{#branditems}}
97 <li class="category- 101 <li class="category-
98 item thirdnavbar"> 102 item thirdnavbar">
99 - <a href="{{link}}" hot={{hot}}>{{brandname}}</a> 103 + <a href="{{link}}" hot={{hot}} >{{brandname}}</a>
100 </li> 104 </li>
101 {{/branditems}} 105 {{/branditems}}
102 </ul> 106 </ul>
@@ -97,8 +97,35 @@ window.submitSearch = function() { @@ -97,8 +97,35 @@ window.submitSearch = function() {
97 return false; 97 return false;
98 } 98 }
99 } 99 }
100 -} 100 +};
  101 +/**
  102 + * 增加关键字
  103 + * @return {[type]} [description]
  104 + */
  105 +function actionAddKeyWords() {
  106 + var keywords = $('#nav_keyword').text();
  107 + var defaultsearch = 'vans';
  108 + var $query_key = $('#query_key');
  109 + if (keywords !== '') {
  110 + $query_key.css({
  111 + 'color': '#000'
  112 + });
  113 + $query_key.val(keywords);
  114 + } else {
  115 + $query_key.css({
  116 + 'color': '#e0e0e0'
  117 + });
  118 + $query_key.val(defaultsearch);
  119 + $query_key.on('focus', function(e) {
  120 + $query_key.css({
  121 + 'color': '#000'
  122 + });
  123 + $query_key.val('');
  124 + })
101 125
  126 + }
  127 +
  128 +}
102 /** 129 /**
103 * 定义购物车扩展 130 * 定义购物车扩展
104 */ 131 */
@@ -1316,6 +1343,7 @@ function actionSearch() { @@ -1316,6 +1343,7 @@ function actionSearch() {
1316 * @return {[type]} [description] 1343 * @return {[type]} [description]
1317 */ 1344 */
1318 function actionLoginState(_data) { 1345 function actionLoginState(_data) {
  1346 + console.log(_data);
1319 var timestamp = new Date().getTime(); 1347 var timestamp = new Date().getTime();
1320 var noLoginHtml = '<span>Hi~</span>[<a href="http://www.yohobuy.com/signin.html" class="list-a login-out ">' + 1348 var noLoginHtml = '<span>Hi~</span>[<a href="http://www.yohobuy.com/signin.html" class="list-a login-out ">' +
1321 '请登录</a>]&nbsp;' + 1349 '请登录</a>]&nbsp;' +
@@ -1482,6 +1510,7 @@ function init() { @@ -1482,6 +1510,7 @@ function init() {
1482 actionListenCartMore(); // 1510 actionListenCartMore(); //
1483 actionLoginInfo(); //获取登录信息 1511 actionLoginInfo(); //获取登录信息
1484 actionCover(); //初次登录弹框 1512 actionCover(); //初次登录弹框
  1513 + actionAddKeyWords();//增加关键字
1485 } 1514 }
1486 1515
1487 init(); 1516 init();