recommend.js 1.3 KB
// /**
//  * 最近浏览取接口渲染模板
//  * @author: xuhui<xuhui.ge@yoho.cn>
//  8 @date: 2016/11/09
//  */
//
// var $ = require('yoho-jquery');
// var Handlebars = require('yoho-handlebars');
// var lazyLoad = require('yoho-jquery-lazyload');
// var dataLazyLoad = require('../../plugins/lazy-load')(document);
//
//
// function shopRecommend() {
//   var tpl;
//
//   tpl = Handlebars.compile($('#recommend-shop').html());
//
//   $.ajax({
//     url: 'product/detail/recommend',
//
//     success: function(data) {
//       var recommendShop = [],
//         res, i, cur;
//
//       if (data.code === 200) {
//         res = data.data;
//
//         for (i = 0; i < res.length; i++) {
//           cur = res[i];
//
//           recommendShop.push({
//             href: cur.url,
//             img: cur.pic_url,
//             name: cur.product_name,
//             salePrice: cur.price
//           });
//         }
//
//         if (recommendShop.length > 0) {
//           $('#recommend-shop').html(tpl({
//             recommendShop: recommendShop
//           }));
//
//           lazyLoad($('#recommend-shop .lazy'));
//         }
//       }
//     }
//   });
// }
//
// window.shopRecommend = shopRecommend;
//
// // 数据懒加载
// dataLazyLoad.init({cls: '.latest-walk-datalazyload', threshold: 700});