wupengfei
2025-11-27 c87c53395ae645e631c30f0f5eb8623f81b95acf
apps/cMiniApp/src/subpackages/city/citySelect/citySelect.vue
@@ -54,17 +54,14 @@
      list: cityGroups[key].map((x) => ({
        name: x.areaName,
        id: x.areaCode,
        parentId: x.parentId,
        parentId: x.parentCode,
      })),
    });
  }
  return _elevatorData;
});
console.log('elevatorData: ', elevatorData);
const clickItem = (key: string, item: any) => {
  console.log('item: ', item, getAreaByAreaCode(item.parentId).areaName);
  userStore.setLocationCity(item.name, getAreaByAreaCode(item.parentId).areaName);
};