1

parent 533371c2
...@@ -187,7 +187,7 @@ const dataParams = (item, datePart) => { ...@@ -187,7 +187,7 @@ const dataParams = (item, datePart) => {
// 景点 // 景点
const placeParams = (info) => { const placeParams = (info) => {
params.value.attractionIdList = info.map((item) => { params.value.attractionIdList = info.map((item) => {
return item.attractionName; return item.id;
}); });
refresh().then(() => { refresh().then(() => {
queryOfferProdListFn(); queryOfferProdListFn();
...@@ -200,14 +200,11 @@ const screenParams = (item, type) => { ...@@ -200,14 +200,11 @@ const screenParams = (item, type) => {
}); });
} else if (type === 'serve') { } else if (type === 'serve') {
params.value.serviceList = item.map((item) => { params.value.serviceList = item.map((item) => {
return item.labelName; return item.labelId;
}); });
} else if (type === 'people') { } else if (type === 'people') {
item.map((item) => {
return item.labelName;
});
params.value.forPeopleList = item.map((item) => { params.value.forPeopleList = item.map((item) => {
return item.labelName; return item.labelId;
}); });
} }
refresh().then(() => { refresh().then(() => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment