在好例子网,分享、交流、成长!
您当前所在位置:首页js 开发实例Ajax框架/RIA → 柚子洗车在线预约小程序

柚子洗车在线预约小程序

Ajax框架/RIA

下载此实例
  • 开发语言:js
  • 实例大小:4.58M
  • 下载次数:16
  • 浏览次数:153
  • 发布时间:2022-07-24
  • 实例类别:Ajax框架/RIA
  • 发 布 人:qiyun_69
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 小程序 柚子 程序

实例介绍

【实例简介】柚子洗车在线预约小程序

柚子洗车是一个专为洗车行业打造的小程序,既能适用于平台,又能用作门店连锁,所有页面支持自定义配色、自定义图标、内容、产品图片等,用户通过小程序可直接在线付款自动洗车。该小程序页面比较简单,适合初学者,包括前后端。

【实例截图】

【核心代码】

.
├── wxapp
│   ├── app.js
│   ├── app.json
│   ├── app.wxss
│   ├── dist
│   │   ├── actionsheet
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── card
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── cell
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── cell-group
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── col
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── common
│   │   │   ├── helper.js
│   │   │   └── pop-manager
│   │   │       ├── index.js
│   │   │       ├── index.json
│   │   │       ├── index.wxml
│   │   │       └── index.wxss
│   │   ├── datetime-picker
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── dialog
│   │   │   ├── data.js
│   │   │   ├── dialog.js
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── field
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── icon
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── index.js
│   │   ├── loading
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── loadmore
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── noticebar
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── panel
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── popup
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── row
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── select
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── stepper
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── steps
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── switch
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   └── index.wxss
│   │   ├── toast
│   │   │   ├── index.js
│   │   │   ├── index.json
│   │   │   ├── index.wxml
│   │   │   ├── index.wxss
│   │   │   └── toast.js
│   │   └── toptips
│   │       ├── index.js
│   │       ├── index.json
│   │       ├── index.wxml
│   │       └── index.wxss
│   ├── pages
│   │   ├── common
│   │   │   ├── SecFooter
│   │   │   │   ├── SecFooter.js
│   │   │   │   ├── SecFooter.json
│   │   │   │   ├── SecFooter.wxml
│   │   │   │   └── SecFooter.wxss
│   │   │   ├── SecLoading
│   │   │   │   ├── SecLoading.js
│   │   │   │   ├── SecLoading.json
│   │   │   │   ├── SecLoading.wxml
│   │   │   │   └── SecLoading.wxss
│   │   │   ├── SecLogin
│   │   │   │   ├── SecLogin.js
│   │   │   │   ├── SecLogin.json
│   │   │   │   ├── SecLogin.wxml
│   │   │   │   └── SecLogin.wxss
│   │   │   ├── SecMaskAd
│   │   │   │   ├── SecMaskAd.js
│   │   │   │   ├── SecMaskAd.json
│   │   │   │   ├── SecMaskAd.wxml
│   │   │   │   └── SecMaskAd.wxss
│   │   │   ├── SecShopPoster
│   │   │   │   ├── SecShopPoster.js
│   │   │   │   ├── SecShopPoster.json
│   │   │   │   ├── SecShopPoster.wxml
│   │   │   │   ├── SecShopPoster.wxss
│   │   │   │   └── bg.png
│   │   │   ├── SecStar
│   │   │   │   ├── SecStar.js
│   │   │   │   ├── SecStar.json
│   │   │   │   ├── SecStar.wxml
│   │   │   │   ├── SecStar.wxss
│   │   │   │   ├── star-h.png
│   │   │   │   └── star.png
│   │   │   ├── SecSupport
│   │   │   │   ├── SecSupport.js
│   │   │   │   ├── SecSupport.json
│   │   │   │   ├── SecSupport.wxml
│   │   │   │   └── SecSupport.wxss
│   │   │   ├── SecUploadImg
│   │   │   │   ├── SecUploadImg.js
│   │   │   │   ├── SecUploadImg.json
│   │   │   │   ├── SecUploadImg.wxml
│   │   │   │   ├── SecUploadImg.wxss
│   │   │   │   └── add.png
│   │   │   └── wxParse
│   │   │       ├── html2json.js
│   │   │       ├── htmlparser.js
│   │   │       ├── showdown.js
│   │   │       ├── wxDiscode.js
│   │   │       ├── wxParse.js
│   │   │       ├── wxParse.wxml
│   │   │       └── wxParse.wxss
│   │   ├── components
│   │   │   ├── couponItem
│   │   │   │   ├── couponItem.js
│   │   │   │   ├── couponItem.json
│   │   │   │   ├── couponItem.wxml
│   │   │   │   ├── couponItem.wxss
│   │   │   │   └── xichequanbj.png
│   │   │   └── queueItem
│   │   │       ├── queueItem.js
│   │   │       ├── queueItem.json
│   │   │       ├── queueItem.wxml
│   │   │       └── queueItem.wxss
│   │   ├── home
│   │   │   ├── home.js
│   │   │   ├── home.json
│   │   │   ├── home.wxml
│   │   │   └── home.wxss
│   │   ├── mine
│   │   │   ├── mine.js
│   │   │   ├── mine.json
│   │   │   ├── mine.wxml
│   │   │   └── mine.wxss
│   │   └── store
│   │       ├── store.js
│   │       ├── store.json
│   │       ├── store.wxml
│   │       └── store.wxss
│   ├── resource
│   │   ├── images
│   │   │   ├── a.png
│   │   │   ├── ah.png
│   │   │   ├── b.png
│   │   │   ├── banjiaka.png
│   │   │   ├── baoyang-1.png
│   │   │   ├── baoyang.png
│   │   │   ├── bh.png
│   │   │   ├── c.png
│   │   │   ├── ch.png
│   │   │   ├── daodian-1.png
│   │   │   ├── daodian.png
│   │   │   ├── kapianlogo.png
│   │   │   ├── kaquan-1.png
│   │   │   ├── kaquan.png
│   │   │   ├── paidui-1.png
│   │   │   ├── paidui.png
│   │   │   └── xichebj.png
│   │   └── js
│   │       ├── api.js
│   │       ├── reload.js
│   │       └── rewx.js
│   ├── siteinfo.js
│   ├── we7
│   │   └── js
│   │       ├── base64.js
│   │       ├── countDown.js
│   │       ├── htmlToWxml.js
│   │       ├── md5.js
│   │       ├── underscore.js
│   │       └── util.js
│   ├── we7s
│   │   └── js
│   │       ├── base64.js
│   │       ├── countDown.js
│   │       ├── htmlToWxml.js
│   │       ├── md5.js
│   │       ├── underscore.js
│   │       └── util.js
│   └── yzxc_sun
│       ├── dist
│       │   ├── actionsheet
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── card
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── cell
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── cell-group
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── col
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── common
│       │   │   ├── helper.js
│       │   │   └── pop-manager
│       │   │       ├── index.js
│       │   │       ├── index.json
│       │   │       ├── index.wxml
│       │   │       └── index.wxss
│       │   ├── datetime-picker
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── dialog
│       │   │   ├── data.js
│       │   │   ├── dialog.js
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── field
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── icon
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── index.js
│       │   ├── loading
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── loadmore
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── noticebar
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── panel
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── popup
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── row
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── select
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── stepper
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── steps
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── switch
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   └── index.wxss
│       │   ├── toast
│       │   │   ├── index.js
│       │   │   ├── index.json
│       │   │   ├── index.wxml
│       │   │   ├── index.wxss
│       │   │   └── toast.js
│       │   └── toptips
│       │       ├── index.js
│       │       ├── index.json
│       │       ├── index.wxml
│       │       └── index.wxss
│       ├── pages
│       │   ├── addcar
│       │   │   ├── addcar.js
│       │   │   ├── addcar.json
│       │   │   ├── addcar.wxml
│       │   │   └── addcar.wxss
│       │   ├── addcard
│       │   │   ├── addcard.js
│       │   │   ├── addcard.json
│       │   │   ├── addcard.wxml
│       │   │   └── addcard.wxss
│       │   ├── addclerk
│       │   │   ├── addclerk.js
│       │   │   ├── addclerk.json
│       │   │   ├── addclerk.wxml
│       │   │   └── addclerk.wxss
│       │   ├── buyorder
│       │   │   ├── buyorder.js
│       │   │   ├── buyorder.json
│       │   │   ├── buyorder.wxml
│       │   │   └── buyorder.wxss
│       │   ├── cardinfo
│       │   │   ├── cardinfo.js
│       │   │   ├── cardinfo.json
│       │   │   ├── cardinfo.wxml
│       │   │   └── cardinfo.wxss
│       │   ├── cashlist
│       │   │   ├── cashlist.js
│       │   │   ├── cashlist.json
│       │   │   ├── cashlist.wxml
│       │   │   └── cashlist.wxss
│       │   ├── chargeorder
│       │   │   ├── chargeorder.js
│       │   │   ├── chargeorder.json
│       │   │   ├── chargeorder.wxml
│       │   │   └── chargeorder.wxss
│       │   ├── checkorder
│       │   │   ├── checkorder.js
│       │   │   ├── checkorder.json
│       │   │   ├── checkorder.wxml
│       │   │   └── checkorder.wxss
│       │   ├── common
│       │   │   ├── SecFooter
│       │   │   │   ├── SecFooter.js
│       │   │   │   ├── SecFooter.json
│       │   │   │   ├── SecFooter.wxml
│       │   │   │   └── SecFooter.wxss
│       │   │   ├── SecLoading
│       │   │   │   ├── SecLoading.js
│       │   │   │   ├── SecLoading.json
│       │   │   │   ├── SecLoading.wxml
│       │   │   │   └── SecLoading.wxss
│       │   │   ├── SecLogin
│       │   │   │   ├── SecLogin.js
│       │   │   │   ├── SecLogin.json
│       │   │   │   ├── SecLogin.wxml
│       │   │   │   └── SecLogin.wxss
│       │   │   ├── SecMaskAd
│       │   │   │   ├── SecMaskAd.js
│       │   │   │   ├── SecMaskAd.json
│       │   │   │   ├── SecMaskAd.wxml
│       │   │   │   └── SecMaskAd.wxss
│       │   │   ├── SecShopPoster
│       │   │   │   ├── SecShopPoster.js
│       │   │   │   ├── SecShopPoster.json
│       │   │   │   ├── SecShopPoster.wxml
│       │   │   │   ├── SecShopPoster.wxss
│       │   │   │   └── bg.png
│       │   │   ├── SecStar
│       │   │   │   ├── SecStar.js
│       │   │   │   ├── SecStar.json
│       │   │   │   ├── SecStar.wxml
│       │   │   │   ├── SecStar.wxss
│       │   │   │   ├── star-h.png
│       │   │   │   ├── star.png
│       │   │   │   ├── xingxing-h.png
│       │   │   │   └── xingxing.png
│       │   │   ├── SecSupport
│       │   │   │   ├── SecSupport.js
│       │   │   │   ├── SecSupport.json
│       │   │   │   ├── SecSupport.wxml
│       │   │   │   └── SecSupport.wxss
│       │   │   ├── SecUploadImg
│       │   │   │   ├── SecUploadImg.js
│       │   │   │   ├── SecUploadImg.json
│       │   │   │   ├── SecUploadImg.wxml
│       │   │   │   ├── SecUploadImg.wxss
│       │   │   │   └── add.png
│       │   │   └── wxParse
│       │   │       ├── html2json.js
│       │   │       ├── htmlparser.js
│       │   │       ├── showdown.js
│       │   │       ├── wxDiscode.js
│       │   │       ├── wxParse.js
│       │   │       ├── wxParse.wxml
│       │   │       └── wxParse.wxss
│       │   ├── components
│       │   │   ├── cardItem
│       │   │   │   ├── cardItem.js
│       │   │   │   ├── cardItem.json
│       │   │   │   ├── cardItem.wxml
│       │   │   │   ├── cardItem.wxss
│       │   │   │   └── xichebj.png
│       │   │   ├── couponItem
│       │   │   │   ├── couponItem.js
│       │   │   │   ├── couponItem.json
│       │   │   │   ├── couponItem.wxml
│       │   │   │   ├── couponItem.wxss
│       │   │   │   └── xichequanbj.png
│       │   │   ├── headSec
│       │   │   │   ├── cg.png
│       │   │   │   ├── headSec.js
│       │   │   │   ├── headSec.json
│       │   │   │   ├── headSec.wxml
│       │   │   │   └── headSec.wxss
│       │   │   ├── queueItem
│       │   │   │   ├── queueItem.js
│       │   │   │   ├── queueItem.json
│       │   │   │   ├── queueItem.wxml
│       │   │   │   └── queueItem.wxss
│       │   │   └── skinItem
│       │   │       ├── skinItem.js
│       │   │       ├── skinItem.json
│       │   │       ├── skinItem.wxml
│       │   │       └── skinItem.wxss
│       │   ├── enter
│       │   │   ├── enter.js
│       │   │   ├── enter.json
│       │   │   ├── enter.wxml
│       │   │   └── enter.wxss
│       │   ├── getcash
│       │   │   ├── getcash.js
│       │   │   ├── getcash.json
│       │   │   ├── getcash.wxml
│       │   │   └── getcash.wxss
│       │   ├── home
│       │   │   ├── home.js
│       │   │   ├── home.json
│       │   │   ├── home.wxml
│       │   │   └── home.wxss
│       │   ├── manage
│       │   │   ├── manage.js
│       │   │   ├── manage.json
│       │   │   ├── manage.wxml
│       │   │   └── manage.wxss
│       │   ├── managecard
│       │   │   ├── managecard.js
│       │   │   ├── managecard.json
│       │   │   ├── managecard.wxml
│       │   │   └── managecard.wxss
│       │   ├── manageorder
│       │   │   ├── manageorder.js
│       │   │   ├── manageorder.json
│       │   │   ├── manageorder.wxml
│       │   │   └── manageorder.wxss
│       │   ├── managequeue
│       │   │   ├── managequeue.js
│       │   │   ├── managequeue.json
│       │   │   ├── managequeue.wxml
│       │   │   └── managequeue.wxss
│       │   ├── mine
│       │   │   ├── mine.js
│       │   │   ├── mine.json
│       │   │   ├── mine.wxml
│       │   │   └── mine.wxss
│       │   ├── mycar
│       │   │   ├── mycar.js
│       │   │   ├── mycar.json
│       │   │   ├── mycar.wxml
│       │   │   └── mycar.wxss
│       │   ├── mycard
│       │   │   ├── mycard.js
│       │   │   ├── mycard.json
│       │   │   ├── mycard.wxml
│       │   │   └── mycard.wxss
│       │   ├── myorder
│       │   │   ├── myorder.js
│       │   │   ├── myorder.json
│       │   │   ├── myorder.wxml
│       │   │   └── myorder.wxss
│       │   ├── myqueue
│       │   │   ├── myqueue.js
│       │   │   ├── myqueue.json
│       │   │   ├── myqueue.wxml
│       │   │   └── myqueue.wxss
│       │   ├── newlogin
│       │   │   ├── newlogin.js
│       │   │   ├── newlogin.json
│       │   │   ├── newlogin.wxml
│       │   │   └── newlogin.wxss
│       │   ├── opencard
│       │   │   ├── opencard.js
│       │   │   ├── opencard.json
│       │   │   ├── opencard.wxml
│       │   │   └── opencard.wxss
│       │   ├── orderinfo
│       │   │   ├── orderinfo.js
│       │   │   ├── orderinfo.json
│       │   │   ├── orderinfo.wxml
│       │   │   └── orderinfo.wxss
│       │   ├── shopinfo
│       │   │   ├── shopinfo.js
│       │   │   ├── shopinfo.json
│       │   │   ├── shopinfo.wxml
│       │   │   └── shopinfo.wxss
│       │   ├── skininfo
│       │   │   ├── skininfo.js
│       │   │   ├── skininfo.json
│       │   │   ├── skininfo.wxml
│       │   │   └── skininfo.wxss
│       │   └── store
│       │       ├── store.js
│       │       ├── store.json
│       │       ├── store.wxml
│       │       └── store.wxss
│       └── resource
│           ├── images
│           │   ├── a.png
│           │   ├── ah.png
│           │   ├── b.png
│           │   ├── banjiaka.png
│           │   ├── baoyang-1.png
│           │   ├── baoyang.png
│           │   ├── bh.png
│           │   ├── c.png
│           │   ├── ch.png
│           │   ├── chengg.png
│           │   ├── cw.png
│           │   ├── daodian-1.png
│           │   ├── daodian.png
│           │   ├── dianhua.png
│           │   ├── dingwei.png
│           │   ├── dizhi.png
│           │   ├── enter.png
│           │   ├── erweima.png
│           │   ├── geduan.jpg
│           │   ├── icon-a.png
│           │   ├── icon-b.png
│           │   ├── jiantou.png
│           │   ├── kapianlogo.png
│           │   ├── kaquan-1.png
│           │   ├── kaquan.png
│           │   ├── order.png
│           │   ├── paidui-1.png
│           │   ├── paidui.png
│           │   ├── queue.png
│           │   ├── shijian.png
│           │   ├── shop.png
│           │   ├── weixuanzhong.png
│           │   ├── xichequan.png
│           │   └── xuanzhong.png
│           └── js
│               ├── api.js
│               ├── reload.js
│               └── rewx.js
├── yzxc_sun
│   ├── admin
│   │   ├── common
│   │   │   ├── attachurl.php
│   │   │   ├── bootstrap.sys.inc.php
│   │   │   ├── common.func.php
│   │   │   └── template.func.php
│   │   ├── index.php
│   │   ├── source
│   │   │   ├── site
│   │   │   │   └── entry.ctrl.php
│   │   │   ├── user
│   │   │   │   ├── login.ctrl.php
│   │   │   │   └── logout.ctrl.php
│   │   │   └── utility
│   │   │       ├── __init.php
│   │   │       └── file.ctrl.php
│   │   └── themes
│   │       └── default
│   │           ├── common
│   │           │   ├── footer-base.html
│   │           │   ├── footer-cms.html
│   │           │   ├── footer-gw.html
│   │           │   ├── footer.html
│   │           │   ├── header-base.html
│   │           │   ├── header-cms.html
│   │           │   ├── header-gw.html
│   │           │   ├── header.html
│   │           │   └── message.html
│   │           └── user
│   │               └── login.html
│   ├── api
│   │   ├── aliyun-dysms
│   │   │   ├── SignatureHelper.php
│   │   │   └── sendSms.php
│   │   ├── printer
│   │   │   └── printer.php
│   │   └── wxpay
│   │       ├── wxpay.php
│   │       ├── wxservice.php
│   │       ├── wxservicepay.php
│   │       └── wxservicerefund.php
│   ├── class
│   │   ├── UploadFile.class.php
│   │   └── func.php
│   ├── errorCode.php
│   ├── hong.php
│   ├── icon.jpg
│   ├── inc
│   │   ├── func
│   │   │   └── core.php
│   │   └── web
│   │       ├── addcoupon.inc.php
│   │       ├── addfootnav.inc.php
│   │       ├── addmaintain.inc.php
│   │       ├── addnotice.inc.php
│   │       ├── addshop.inc.php
│   │       ├── addshopadmin.inc.php
│   │       ├── addshopclassify.inc.php
│   │       ├── addshopjoin.inc.php
│   │       ├── adpic.inc.php
│   │       ├── adpic_list.inc.php
│   │       ├── adsign.inc.php
│   │       ├── banner.inc.php
│   │       ├── couponlist.inc.php
│   │       ├── couponset.inc.php
│   │       ├── fontlog.inc.php
│   │       ├── footnav.inc.php
│   │       ├── index.inc.php
│   │       ├── indexnavset.inc.php
│   │       ├── logoset.inc.php
│   │       ├── maintain.inc.php
│   │       ├── navset.inc.php
│   │       ├── noticelist.inc.php
│   │       ├── order.inc.php
│   │       ├── ordercoupon.inc.php
│   │       ├── ordermaintain.inc.php
│   │       ├── ordershop.inc.php
│   │       ├── ordervipcard.inc.php
│   │       ├── orderwait.inc.php
│   │       ├── peiz.inc.php
│   │       ├── shopadminlist.inc.php
│   │       ├── shopclassify.inc.php
│   │       ├── shopcomment.inc.php
│   │       ├── shopjoin.inc.php
│   │       ├── shoplist.inc.php
│   │       ├── sms.inc.php
│   │       ├── template.inc.php
│   │       ├── txlog.inc.php
│   │       ├── txset.inc.php
│   │       ├── user.inc.php
│   │       ├── usercar.inc.php
│   │       ├── vipcardprice.inc.php
│   │       ├── vipcardpricelist.inc.php
│   │       └── vipcardset.inc.php
│   ├── manifest.xml
│   ├── map.json
│   ├── module.php
│   ├── pkcs7Encoder.php
│   ├── site.php
│   ├── static
│   │   └── layui
│   │       ├── css
│   │       │   ├── layui.css
│   │       │   ├── layui.mobile.css
│   │       │   └── modules
│   │       │       ├── code.css
│   │       │       ├── laydate
│   │       │       │   └── default
│   │       │       │       └── laydate.css
│   │       │       └── layer
│   │       │           └── default
│   │       │               ├── icon-ext.png
│   │       │               ├── icon.png
│   │       │               ├── layer.css
│   │       │               ├── loading-0.gif
│   │       │               ├── loading-1.gif
│   │       │               └── loading-2.gif
│   │       ├── font
│   │       │   ├── iconfont.eot
│   │       │   ├── iconfont.svg
│   │       │   ├── iconfont.ttf
│   │       │   └── iconfont.woff
│   │       ├── images
│   │       │   └── face
│   │       │       ├── 0.gif
│   │       │       ├── 1.gif
│   │       │       ├── 10.gif
│   │       │       ├── 11.gif
│   │       │       ├── 12.gif
│   │       │       ├── 13.gif
│   │       │       ├── 14.gif
│   │       │       ├── 15.gif
│   │       │       ├── 16.gif
│   │       │       ├── 17.gif
│   │       │       ├── 18.gif
│   │       │       ├── 19.gif
│   │       │       ├── 2.gif
│   │       │       ├── 20.gif
│   │       │       ├── 21.gif
│   │       │       ├── 22.gif
│   │       │       ├── 23.gif
│   │       │       ├── 24.gif
│   │       │       ├── 25.gif
│   │       │       ├── 26.gif
│   │       │       ├── 27.gif
│   │       │       ├── 28.gif
│   │       │       ├── 29.gif
│   │       │       ├── 3.gif
│   │       │       ├── 30.gif
│   │       │       ├── 31.gif
│   │       │       ├── 32.gif
│   │       │       ├── 33.gif
│   │       │       ├── 34.gif
│   │       │       ├── 35.gif
│   │       │       ├── 36.gif
│   │       │       ├── 37.gif
│   │       │       ├── 38.gif
│   │       │       ├── 39.gif
│   │       │       ├── 4.gif
│   │       │       ├── 40.gif
│   │       │       ├── 41.gif
│   │       │       ├── 42.gif
│   │       │       ├── 43.gif
│   │       │       ├── 44.gif
│   │       │       ├── 45.gif
│   │       │       ├── 46.gif
│   │       │       ├── 47.gif
│   │       │       ├── 48.gif
│   │       │       ├── 49.gif
│   │       │       ├── 5.gif
│   │       │       ├── 50.gif
│   │       │       ├── 51.gif
│   │       │       ├── 52.gif
│   │       │       ├── 53.gif
│   │       │       ├── 54.gif
│   │       │       ├── 55.gif
│   │       │       ├── 56.gif
│   │       │       ├── 57.gif
│   │       │       ├── 58.gif
│   │       │       ├── 59.gif
│   │       │       ├── 6.gif
│   │       │       ├── 60.gif
│   │       │       ├── 61.gif
│   │       │       ├── 62.gif
│   │       │       ├── 63.gif
│   │       │       ├── 64.gif
│   │       │       ├── 65.gif
│   │       │       ├── 66.gif
│   │       │       ├── 67.gif
│   │       │       ├── 68.gif
│   │       │       ├── 69.gif
│   │       │       ├── 7.gif
│   │       │       ├── 70.gif
│   │       │       ├── 71.gif
│   │       │       ├── 8.gif
│   │       │       └── 9.gif
│   │       ├── jquery-3.2.1.min.js
│   │       ├── lay
│   │       │   ├── layui.js
│   │       │   └── modules
│   │       │       ├── carousel.js
│   │       │       ├── code.js
│   │       │       ├── element.js
│   │       │       ├── flow.js
│   │       │       ├── form.js
│   │       │       ├── jquery.js
│   │       │       ├── laydate.js
│   │       │       ├── layedit.js
│   │       │       ├── layer.js
│   │       │       ├── laypage.js
│   │       │       ├── laytpl.js
│   │       │       ├── layui.all.js
│   │       │       ├── mobile.js
│   │       │       ├── table.js
│   │       │       ├── tree.js
│   │       │       ├── upload.js
│   │       │       └── util.js
│   │       ├── layui.all.js
│   │       ├── layui.js
│   │       ├── ueditor.all.min.js
│   │       ├── ueditor.config.js
│   │       └── util.js
│   ├── template
│   │   ├── images
│   │   │   ├── 12.png
│   │   │   ├── 13.png
│   │   │   ├── 1536579752.png
│   │   │   ├── 6.png
│   │   │   ├── add.png
│   │   │   ├── city.png
│   │   │   ├── container_bg0.png
│   │   │   ├── cou.jpg
│   │   │   ├── dayin.png
│   │   │   ├── dfsd.png
│   │   │   ├── dingdan.png
│   │   │   ├── dn.wav
│   │   │   ├── dsfddf.png
│   │   │   ├── duanxin.png
│   │   │   ├── duanxintongdao.png
│   │   │   ├── duigoubai.png
│   │   │   ├── fdfs.png
│   │   │   ├── gou.png
│   │   │   ├── guanggao.png
│   │   │   ├── guanli.png
│   │   │   ├── haixian.jpg
│   │   │   ├── hb.png
│   │   │   ├── hhr.png
│   │   │   ├── home.png
│   │   │   ├── huiyuan.png
│   │   │   ├── icon.jpg
│   │   │   ├── jika.png
│   │   │   ├── juxing.png
│   │   │   ├── kaiguan.png
│   │   │   ├── login_icon.png
│   │   │   ├── logo.png
│   │   │   ├── logo2.png
│   │   │   ├── man.png
│   │   │   ├── manjianhuodong.png
│   │   │   ├── mendian.png
│   │   │   ├── miaosha.png
│   │   │   ├── money.png
│   │   │   ├── money1.png
│   │   │   ├── money10.png
│   │   │   ├── money11.png
│   │   │   ├── money2.png
│   │   │   ├── money3.png
│   │   │   ├── money4.png
│   │   │   ├── money5.png
│   │   │   ├── money6.png
│   │   │   ├── money8.png
│   │   │   ├── mt.png
│   │   │   ├── muban3.jpg
│   │   │   ├── quyu.png
│   │   │   ├── saoma.png
│   │   │   ├── seller_login_bg.jpg
│   │   │   ├── shezhi.png
│   │   │   ├── stick.gif
│   │   │   ├── time.png
│   │   │   ├── tixian.png
│   │   │   ├── tongzhi.png
│   │   │   ├── ttrgd.png
│   │   │   ├── tuceng0.png
│   │   │   ├── tuceng1.png
│   │   │   ├── tuceng2.png
│   │   │   ├── tuceng4.png
│   │   │   ├── tuijian.png
│   │   │   ├── txt.png
│   │   │   ├── tz.png
│   │   │   ├── u11_state0.png
│   │   │   ├── u270.png
│   │   │   ├── user.png
│   │   │   ├── wm.wav
│   │   │   ├── wu.png
│   │   │   ├── xian.png
│   │   │   ├── xiaoshou.png
│   │   │   ├── xingxing.png
│   │   │   ├── xinxi1.png
│   │   │   ├── xinxi2.png
│   │   │   ├── xinxi3.png
│   │   │   ├── xinxi4.png
│   │   │   ├── xitong.png
│   │   │   ├── ygrz.png
│   │   │   ├── youhuiquan.png
│   │   │   ├── youhuiquan2.png
│   │   │   ├── yuan.png
│   │   │   ├── yuanxing.png
│   │   │   ├── yy.wav
│   │   │   ├── zhekouquan.png
│   │   │   └── zu.png
│   │   ├── public
│   │   │   ├── comhead.html
│   │   │   ├── common.html
│   │   │   ├── footer-base.html
│   │   │   ├── footer.html
│   │   │   ├── header-base.html
│   │   │   ├── header.html
│   │   │   ├── ygcss.css
│   │   │   └── ygcsslist.css
│   │   ├── web
│   │   │   ├── addcoupon.html
│   │   │   ├── addfootnav.html
│   │   │   ├── addmaintain.html
│   │   │   ├── addnotice.html
│   │   │   ├── addshop.html
│   │   │   ├── addshopadmin.html
│   │   │   ├── addshopclassify.html
│   │   │   ├── addshopjoin.html
│   │   │   ├── adpic.html
│   │   │   ├── adpic_list.html
│   │   │   ├── adsign.html
│   │   │   ├── banner.html
│   │   │   ├── couponlist.html
│   │   │   ├── couponset.html
│   │   │   ├── footnav.html
│   │   │   ├── index.html
│   │   │   ├── indexnavset.html
│   │   │   ├── logoset.html
│   │   │   ├── maintain.html
│   │   │   ├── navset.html
│   │   │   ├── noticelist.html
│   │   │   ├── order.html
│   │   │   ├── ordercoupon.html
│   │   │   ├── ordermaintain.html
│   │   │   ├── ordershop.html
│   │   │   ├── ordervipcard.html
│   │   │   ├── orderwait.html
│   │   │   ├── peiz.html
│   │   │   ├── shopadminlist.html
│   │   │   ├── shopclassify.html
│   │   │   ├── shopcomment.html
│   │   │   ├── shopjoin.html
│   │   │   ├── shoplist.html
│   │   │   ├── sms.html
│   │   │   ├── template.html
│   │   │   ├── txlog.html
│   │   │   ├── txset.html
│   │   │   ├── user.html
│   │   │   ├── usercar.html
│   │   │   ├── vipcardprice.html
│   │   │   ├── vipcardpricelist.html
│   │   │   └── vipcardset.html
│   │   └── welcome.html
│   ├── wxBizDataCrypt.php
│   ├── wxapp.php
│   ├── wxpay.php
│   └── zipviewer
│       ├── ZipViewer.exe
│       └── readme.txt
├── 用前必看.txt
├── 好例子网_柚子洗车小程序源码.zip
├── 柚子洗车小程序v1.1.6开源 前端.zip
└── 我的主题网正版苹果cmsv10模板.url

157 directories, 827 files


标签: 小程序 柚子 程序

实例下载地址

柚子洗车在线预约小程序

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警