chose-panel.js
487 Bytes
/**
* 购物车选择尺寸、颜色和数量面板
* @author: xuqi<qi.xu@yoho.cn>
* @date: 2015/10/21
*/
var $ = require('yoho.zepto');
var Handlebars = require('yoho.handlebars');
var $page = $('.yoho-page');
var tpl;
//读取partials
$.ajax({
type: 'GET',
url: '/shoppingCart/tpl',
success: function(data) {
tpl = Handlebars.compile(data);
}
});
//显示
function show(data) {
var html = tpl(data);
$page.append(html);
}
exports.show = show;