|
|
- const currentPickupPoint = {
- id: 1,
- name: '轻奢时代茶香兴盛',
- address: '长沙市雨花区时代阳光大道轻奢时代茶香兴盛',
- phone: '15070023168',
- image: '/static/image/古茗店面.webp'
- }
- // 附近取餐点列表
- const nearbyPickupPoints = [
- {
- id: 2,
- name: '古茗中山街店',
- address: '长沙市雨花区中山街100号第二个店面',
- phone: '15070023168',
- image: '/static/image/古茗店面.webp'
- },
- {
- id: 3,
- name: '茶香兴盛小文轩便利店',
- address: '长沙市芙蓉区牛津街7栋',
- phone: '15070023168',
- image: '/static/image/古茗店面.webp'
- }
- ]
-
- // 统一导出
- module.exports = {
- currentPickupPoint,
- nearbyPickupPoints
- }
-
|