...
|
...
|
@@ -33,12 +33,12 @@ const _formatJumpUrl = (params) => { |
|
|
opt.union_type = '100000000013130';
|
|
|
|
|
|
return {
|
|
|
default: listParamsProcess.generatePathUrl(_.assign(opt, {type: 'default'})),
|
|
|
new: listParamsProcess.generatePathUrl(_.assign(opt, {type: 'new'})),
|
|
|
popularity: listParamsProcess.generatePathUrl(_.assign(opt, {type: 'popularity'})),
|
|
|
price: listParamsProcess.generatePathUrl(_.assign(opt, {type: 'price', order: order})),
|
|
|
discount0: listParamsProcess.generatePathUrl(_.assign(opt, {type: 'discount', order: 0})),
|
|
|
discount1: listParamsProcess.generatePathUrl(_.assign(opt, {type: 'discount', order: 1})),
|
|
|
default: listParamsProcess.generatePathUrl(_.merge({}, opt, {type: 'default'})),
|
|
|
new: listParamsProcess.generatePathUrl(_.merge({}, opt, {type: 'new'})),
|
|
|
popularity: listParamsProcess.generatePathUrl(_.merge({}, opt, {type: 'popularity'})),
|
|
|
price: listParamsProcess.generatePathUrl(_.merge({}, opt, {type: 'price', order: order})),
|
|
|
discount0: listParamsProcess.generatePathUrl(_.merge({}, opt, {type: 'discount', order: 0})),
|
|
|
discount1: listParamsProcess.generatePathUrl(_.merge({}, opt, {type: 'discount', order: 1})),
|
|
|
curUrl: listParamsProcess.generatePathUrl(opt)
|
|
|
};
|
|
|
};
|
...
|
...
|
|