...
|
...
|
@@ -179,7 +179,7 @@ const processBreakingSort = (list) => { |
|
|
const searchSales = (params) => {
|
|
|
|
|
|
// 排除基本筛选项默认值为0的对象
|
|
|
for(let str in params){
|
|
|
for (let str in params) {
|
|
|
if (str !== 'order' && params[str] === '0' || params[str] === null) {
|
|
|
delete params[str];
|
|
|
}
|
...
|
...
|
@@ -364,7 +364,7 @@ exports.getSpecialDetailData = (id) => { |
|
|
return special(param).then((result) => {
|
|
|
if (result && result.code === 200) {
|
|
|
res = processSpecial(result.data);
|
|
|
console.log(res)
|
|
|
console.log(res);
|
|
|
return {
|
|
|
title: res[0].title,
|
|
|
activity: {
|
...
|
...
|
|