Authored by xuqi

修正商品连续点击显示错误的问题

... ... @@ -213,7 +213,7 @@ exports.init = function() {
html += Mustache.render(tpl, goods[i]);
}
}
if (nav.reload) {
if (nav.reload || len === 0) {
$container.html(html);
} else {
$container.append(html);
... ...