...
|
...
|
@@ -1192,18 +1192,11 @@ $listNav.on('touchstart', 'li', function() { |
|
|
|
|
|
$('#goods-container').on('click', '.good-info', function() {
|
|
|
let PRD_ID = $(this).data('good-id'),
|
|
|
PRD_NUM = $(this).index(),
|
|
|
PRD_NUM = $(this).index() + 1,
|
|
|
FILTER_VALUE = filext ? JSON.stringify(filext).replace(/\{|\}|\"/g, '') : '',
|
|
|
yasparms,
|
|
|
firstType;
|
|
|
|
|
|
if ($(this).parent().hasClass('firstscreen-goods')) {
|
|
|
firstType = 'default';
|
|
|
PRD_NUM = PRD_NUM + 1;
|
|
|
} else if ($(this).parent().hasClass('default-goods')) {
|
|
|
PRD_NUM = PRD_NUM + 24;
|
|
|
}
|
|
|
|
|
|
yasparms = {
|
|
|
C_ID: C_ID,
|
|
|
PRD_ID: PRD_ID,
|
...
|
...
|
|