...
|
...
|
@@ -61,7 +61,7 @@ var consultSuccessTpl = require('hbs/product/consult-success.hbs'); |
|
|
|
|
|
var pkgData;// 套餐数据
|
|
|
var notifyTpl = require('hbs/product/notify.hbs');
|
|
|
var notifySuccessTpl = require('hbs/product/notify-ok.hbs');
|
|
|
var notifyOkTpl = require('hbs/product/notify-ok.hbs');
|
|
|
|
|
|
var $goodsIdArr = [];
|
|
|
|
...
|
...
|
@@ -537,7 +537,7 @@ bindEvent.add(function() { |
|
|
var opt2 = {
|
|
|
className: 'notify-goods-wrapper',
|
|
|
closeIcon: true,
|
|
|
content: notifySuccessTpl()
|
|
|
content: notifyOkTpl()
|
|
|
};
|
|
|
|
|
|
var dialog = new Dialog(opt); // eslint-disable-line
|
...
|
...
|
@@ -1229,8 +1229,6 @@ function fetchComment() { |
|
|
});
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// 评论类型的切换
|
|
|
$('.comments').on('click', '.comment-tabs h2[data-comment-type]', function() {
|
|
|
|
...
|
...
|
@@ -1670,14 +1668,14 @@ $(function() { |
|
|
var font = $('.description-content .basic li');
|
|
|
var fontwidth = $('.description-content ul li:nth-child(4) .valueSpace').width();
|
|
|
$('.description-content ul li:nth-child(8) .valueSpace').css({
|
|
|
'display': 'inline-block',
|
|
|
display: 'inline-block',
|
|
|
'text-align': 'right',
|
|
|
'width': fontwidth
|
|
|
width: fontwidth
|
|
|
});
|
|
|
font.each(function(i, ele) {
|
|
|
|
|
|
if ((i + 1) % 4 === 0) {
|
|
|
$(this).find('.justpostion').css({'display': 'inline-block', 'float': 'right'});
|
|
|
$(this).find('.justpostion').css({display: 'inline-block', float: 'right'});
|
|
|
} else if ((i + 1) % 4 === 1) {
|
|
|
return;
|
|
|
} else {
|
...
|
...
|
|