找传奇、传世资源到传世资源站!

客家旅运小程序带后端

  • 资源分类:PHP语言基础
  • 发 布 人:房东的猫
  • 文件大小:未知
  • 文件格式:.zip
  • 浏览次数:4
  • 下载次数: 0
  • 发布时间:6月7日

  • 标签:
8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】客家旅运小程序带后端

【相关图片】

from clipboard

【源码结构】.
└── 客家旅运带后端
    ├── 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

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复