/** * 为你优选操作 * @author: feng.chen<feng.chen@yoho.cn> * @date: 2016/12/29 */ 'use strict'; let $ = require('yoho-jquery'); let recommendObj = { init(handle) { let self = this; self.handle = handle; if ($('.recommend-for-you').length) { setTimeout(() => { require('../recommend-for-you-cart'); }, 0); } } }; module.exports = recommendObj;