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