Commit e6ee2728 authored by 石建新(贵阳日报)'s avatar 石建新(贵阳日报)
parents 19adb10c e5d11eaa
......@@ -284,17 +284,17 @@ const placeParams = (item) => {
const screenParams = (selectedItems, type) => {
console.log(selectedItems, type, 111);
if (type === 'screen') {
const ids = selectedItems.map((i) => i.tripCity);
const ids = selectedItems.map((i) => i.tripCityId);
const arr = ids.join(',');
startCityList.value = arr.split(',').map(String);
getProd();
} else if (type === 'serve') {
const ids = selectedItems.map((i) => i.labelName);
const ids = selectedItems.map((i) => i.labelId);
const arr = ids.join(',');
serviceList.value = arr.split(',').map(String);
getProd();
} else if (type === 'people') {
const ids = selectedItems.map((i) => i.labelName);
const ids = selectedItems.map((i) => i.labelId);
const arr = ids.join(',');
forPeopleList.value = arr.split(',').map(String);
getProd();
......
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