...
|
...
|
@@ -5,36 +5,45 @@ |
|
|
* @date: 2015/10/21
|
|
|
*/
|
|
|
|
|
|
var $ = require('jquery'),
|
|
|
Handlebars = require('yoho.handlebars');
|
|
|
var $ = require('jquery');
|
|
|
|
|
|
var $page = $('.yoho-page');
|
|
|
// Handlebars = require('yoho.handlebars');
|
|
|
|
|
|
// var $page = $('.yoho-page');
|
|
|
|
|
|
var $num;
|
|
|
|
|
|
var tpl;
|
|
|
// var tpl;
|
|
|
|
|
|
//读取partials
|
|
|
$.ajax({
|
|
|
type: 'GET',
|
|
|
url: '/shoppingCart/tpl',
|
|
|
success: function(data) {
|
|
|
tpl = Handlebars.compile(data);
|
|
|
}
|
|
|
});
|
|
|
// $.ajax({
|
|
|
// type: 'GET',
|
|
|
// url: '/shoppingCart/tpl',
|
|
|
// success: function(data) {
|
|
|
// tpl = Handlebars.compile(data);
|
|
|
// }
|
|
|
// });
|
|
|
|
|
|
//显示
|
|
|
function show(data) {
|
|
|
var html = tpl(data);
|
|
|
|
|
|
$page.append(html);
|
|
|
|
|
|
//显示
|
|
|
// function show(data) {
|
|
|
// // var html = tpl(data);
|
|
|
// $('.chose-panel').show();
|
|
|
// // $page.append(html);
|
|
|
// $('.chose-panel')
|
|
|
// $num = $('#good-num');
|
|
|
// }
|
|
|
|
|
|
function show() {
|
|
|
$('.chose-panel').show();
|
|
|
$('body').css('overflow', 'hidden');
|
|
|
$num = $('#good-num');
|
|
|
}
|
|
|
|
|
|
//移除当前Panel
|
|
|
function remove() {
|
|
|
$('.chose-panel').remove();
|
|
|
$('.chose-panel').hide();
|
|
|
$('body').css('overflow', 'auto');
|
|
|
}
|
|
|
|
|
|
$('.yoho-page').on('touchstart', '.chose-panel', function(e) {
|
...
|
...
|
@@ -75,4 +84,5 @@ $('.yoho-page').on('touchstart', '.chose-panel', function(e) { |
|
|
$num.val(num + 1);
|
|
|
});
|
|
|
|
|
|
|
|
|
exports.show = show; |
|
|
\ No newline at end of file |
...
|
...
|
|