【例子介绍】客家旅运小程序带后端
【相关图片】
【源码结构】.
└── 客家旅运带后端
├── hakka-travel-master
│ ├── README.md
│ ├── app.js
│ ├── app.json
│ ├── app.wxss
│ ├── images
│ │ ├── alarm.png
│ │ ├── btn_add.png
│ │ ├── btn_diff.png
│ │ ├── calander.png
│ │ ├── change_icon.png
│ │ ├── download.png
│ │ ├── footer-icon-02-active.png
│ │ ├── footer-icon-02.png
│ │ ├── footer-icon-04-active.png
│ │ ├── footer-icon-04.png
│ │ ├── get_on_pay.png
│ │ ├── home-h.png
│ │ ├── icon-1.png
│ │ ├── icon-2.png
│ │ ├── icon-4.png
│ │ ├── icon_normal.png
│ │ ├── icon_pressed.png
│ │ ├── join.png
│ │ ├── lb1.jpg
│ │ ├── lb2.jpg
│ │ ├── lb3.jpg
│ │ ├── loading.gif
│ │ ├── location-dot.png
│ │ ├── location_end.png
│ │ ├── location_start.png
│ │ ├── mine.png
│ │ ├── no_selected.png
│ │ ├── ok-icon.png
│ │ ├── order_from_to.png
│ │ ├── orders.png
│ │ ├── right_dot.png
│ │ ├── selected.png
│ │ ├── station_select.png
│ │ ├── warning.png
│ │ └── wechat.png
│ ├── pages
│ │ ├── components
│ │ │ ├── stationList
│ │ │ │ ├── style.wxss
│ │ │ │ └── template.wxml
│ │ │ └── toast
│ │ │ ├── toast.wxml
│ │ │ └── toast.wxss
│ │ ├── endCity
│ │ │ ├── endCity.js
│ │ │ ├── endCity.json
│ │ │ ├── endCity.wxml
│ │ │ └── endCity.wxss
│ │ ├── index
│ │ │ ├── index.js
│ │ │ ├── index.json
│ │ │ ├── index.wxml
│ │ │ └── index.wxss
│ │ ├── logs
│ │ │ ├── logs.js
│ │ │ ├── logs.json
│ │ │ ├── logs.wxml
│ │ │ └── logs.wxss
│ │ ├── order
│ │ │ ├── order.js
│ │ │ ├── order.json
│ │ │ ├── order.wxml
│ │ │ └── order.wxss
│ │ ├── result
│ │ │ ├── result.js
│ │ │ ├── result.json
│ │ │ ├── result.wxml
│ │ │ └── result.wxss
│ │ ├── schedule
│ │ │ ├── schedule.js
│ │ │ ├── schedule.json
│ │ │ ├── schedule.wxml
│ │ │ └── schedule.wxss
│ │ ├── startCity
│ │ │ ├── startCity.js
│ │ │ ├── startCity.json
│ │ │ ├── startCity.wxml
│ │ │ └── startCity.wxss
│ │ ├── station
│ │ │ ├── station.js
│ │ │ ├── station.json
│ │ │ ├── station.wxml
│ │ │ └── station.wxss
│ │ ├── ticket
│ │ │ ├── ticket.js
│ │ │ ├── ticket.json
│ │ │ ├── ticket.wxml
│ │ │ └── ticket.wxss
│ │ └── user
│ │ ├── user.js
│ │ ├── user.json
│ │ ├── user.wxml
│ │ └── user.wxss
│ ├── style
│ │ ├── button.wxss
│ │ ├── image.wxss
│ │ └── position.wxss
│ └── utils
│ ├── date.js
│ └── util.js
├── hakka-travel-server-master
│ ├── db.js
│ ├── gitignore
│ ├── package.json
│ ├── server.js
│ └── src
│ ├── api
│ │ ├── BusCityController.js
│ │ ├── BusInfoController.js
│ │ ├── BusOrderController.js
│ │ ├── BusScheduleController.js
│ │ ├── BusStationInfoController.js
│ │ └── BusStationListController.js
│ ├── mapper
│ │ ├── BusCityMapper.js
│ │ ├── BusInfoMapper.js
│ │ ├── BusOrderMapper.js
│ │ ├── BusScheduleMapper.js
│ │ ├── BusStationInfoMapper.js
│ │ └── BusStationListMapper.js
│ ├── model
│ │ ├── BusCity.js
│ │ ├── BusInfo.js
│ │ ├── BusOrder.js
│ │ ├── BusSchedule.js
│ │ ├── BusStationInfo.js
│ │ └── BusStationList.js
│ ├── service
│ │ ├── BusCityService.js
│ │ ├── BusInfoService.js
│ │ ├── BusOrderService.js
│ │ ├── BusScheduleService.js
│ │ ├── BusStationInfoService.js
│ │ └── BusStationListService.js
│ ├── util
│ │ └── stringUtil.js
│ └── vo
│ └── ResultModel.js
├── 说明.htm
├── 更多VIP资源免费下载.url
├── 资源说明.txt
├── 客家旅运前端.zip
└── 客家旅运后端.zip
27 directories, 123 files
评论