1

parent 533371c2
......@@ -187,7 +187,7 @@ const dataParams = (item, datePart) => {
// 景点
const placeParams = (info) => {
params.value.attractionIdList = info.map((item) => {
return item.attractionName;
return item.id;
});
refresh().then(() => {
queryOfferProdListFn();
......@@ -200,14 +200,11 @@ const screenParams = (item, type) => {
});
} else if (type === 'serve') {
params.value.serviceList = item.map((item) => {
return item.labelName;
return item.labelId;
});
} else if (type === 'people') {
item.map((item) => {
return item.labelName;
});
params.value.forPeopleList = item.map((item) => {
return item.labelName;
return item.labelId;
});
}
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