实例介绍
【实例简介】微信小程序:仿淘宝模板
└── 仿TB模板
└── huihui-master
├── LICENSE
├── README.md
├── app.js
├── app.json
├── app.wxss
├── imgs
│ ├── IMG_2434.PNG
│ ├── IMG_2435.PNG
│ ├── IMG_2436.PNG
│ ├── IMG_2437.PNG
│ ├── IMG_2438.PNG
│ ├── IMG_2439.PNG
│ ├── IMG_2440.PNG
│ ├── IMG_2441.PNG
│ ├── IMG_2442.PNG
│ ├── IMG_2443.PNG
│ ├── IMG_2444.PNG
│ ├── IMG_2445.PNG
│ ├── IMG_2446.PNG
│ ├── IMG_2447.PNG
│ ├── IMG_2448.PNG
│ ├── IMG_2449.PNG
│ ├── IMG_2450.PNG
│ ├── IMG_2451.PNG
│ ├── IMG_2452.PNG
│ ├── IMG_2453.PNG
│ ├── IMG_2454.PNG
│ ├── detail
│ │ ├── back.png
│ │ ├── blink.gif
│ │ ├── collect.png
│ │ ├── collect2.png
│ │ ├── collected.png
│ │ ├── collected2.png
│ │ ├── dot.png
│ │ ├── food.png
│ │ ├── free.png
│ │ ├── grey.gif
│ │ ├── hb-icon.png
│ │ ├── hh.jpg
│ │ ├── location.png
│ │ ├── lt.png
│ │ ├── phone.png
│ │ ├── pic.jpg
│ │ ├── qb-icon.png
│ │ ├── time.png
│ │ ├── vip_icon.png
│ │ └── wx-icon.png
│ ├── index
│ │ ├── head-icon.png
│ │ ├── icon_1.png
│ │ ├── icon_2.png
│ │ ├── icon_3.png
│ │ ├── icon_4.png
│ │ ├── icon_5.png
│ │ ├── icon_6.png
│ │ ├── icon_7.png
│ │ ├── icon_8.png
│ │ ├── icon_location.png
│ │ ├── icon_search.png
│ │ └── logo.png
│ ├── mine
│ │ ├── alipay.png
│ │ ├── icon1.png
│ │ ├── icon2.png
│ │ ├── icon3.png
│ │ ├── icon4.png
│ │ ├── icon5.png
│ │ ├── icon6.png
│ │ ├── lt.png
│ │ ├── myprize.png
│ │ ├── set.png
│ │ ├── user.jpg
│ │ ├── vip-icon.png
│ │ ├── voucher.png
│ │ └── wechat.png
│ ├── order
│ │ ├── del.png
│ │ ├── lt.png
│ │ ├── star.png
│ │ └── stars.png
│ ├── pay
│ │ ├── home.png
│ │ ├── pg1.png
│ │ ├── pg2.png
│ │ └── pg3.png
│ ├── shop
│ │ └── search.png
│ ├── store
│ │ ├── grey.gif
│ │ ├── img_store.jpg
│ │ ├── rz.png
│ │ └── star-icon.png
│ └── tabBar
│ ├── home_1.png
│ ├── home_2.png
│ ├── mine_1.png
│ ├── mine_2.png
│ ├── order_1.png
│ ├── order_2.png
│ ├── store_1.png
│ └── store_2.png
├── pages
│ ├── detail
│ │ ├── comment.js
│ │ ├── comment.json
│ │ ├── comment.wxml
│ │ ├── comment.wxss
│ │ ├── detail.js
│ │ ├── detail.json
│ │ ├── detail.wxml
│ │ ├── detail.wxss
│ │ ├── vouchers.js
│ │ ├── vouchers.json
│ │ ├── vouchers.wxml
│ │ └── vouchers.wxss
│ ├── index
│ │ ├── index.js
│ │ ├── index.json
│ │ ├── index.wxml
│ │ ├── index.wxss
│ │ ├── location.js
│ │ ├── location.json
│ │ ├── location.wxml
│ │ └── location.wxss
│ ├── mine
│ │ ├── account.js
│ │ ├── account.json
│ │ ├── account.wxml
│ │ ├── account.wxss
│ │ ├── collection.js
│ │ ├── collection.json
│ │ ├── collection.wxml
│ │ ├── collection.wxss
│ │ ├── mine.js
│ │ ├── mine.json
│ │ ├── mine.wxml
│ │ ├── mine.wxss
│ │ ├── prize.js
│ │ ├── prize.json
│ │ ├── prize.wxml
│ │ ├── prize.wxss
│ │ ├── voucher.js
│ │ ├── voucher.json
│ │ ├── voucher.wxml
│ │ ├── voucher.wxss
│ │ ├── wallet.js
│ │ ├── wallet.json
│ │ ├── wallet.wxml
│ │ └── wallet.wxss
│ ├── order
│ │ ├── articleOrder.js
│ │ ├── articleOrder.json
│ │ ├── articleOrder.wxml
│ │ ├── articleOrder.wxss
│ │ ├── evaluation.js
│ │ ├── evaluation.json
│ │ ├── evaluation.wxml
│ │ ├── evaluation.wxss
│ │ ├── order.js
│ │ ├── order.json
│ │ ├── order.wxml
│ │ └── order.wxss
│ ├── pay
│ │ ├── pay.js
│ │ ├── pay.json
│ │ ├── pay.wxml
│ │ ├── pay.wxss
│ │ ├── paycomment.js
│ │ ├── paycomment.json
│ │ ├── paycomment.wxml
│ │ ├── paycomment.wxss
│ │ ├── privilege.js
│ │ ├── privilege.json
│ │ ├── privilege.wxml
│ │ └── privilege.wxss
│ ├── search
│ │ ├── search.js
│ │ ├── search.json
│ │ ├── search.wxml
│ │ └── search.wxss
│ └── shop
│ ├── shop.js
│ ├── shop.json
│ ├── shop.wxml
│ └── shop.wxss
└── utils
├── city.js
└── server.js
20 directories, 171 files
【实例截图】
└── 仿TB模板
└── huihui-master
├── LICENSE
├── README.md
├── app.js
├── app.json
├── app.wxss
├── imgs
│ ├── IMG_2434.PNG
│ ├── IMG_2435.PNG
│ ├── IMG_2436.PNG
│ ├── IMG_2437.PNG
│ ├── IMG_2438.PNG
│ ├── IMG_2439.PNG
│ ├── IMG_2440.PNG
│ ├── IMG_2441.PNG
│ ├── IMG_2442.PNG
│ ├── IMG_2443.PNG
│ ├── IMG_2444.PNG
│ ├── IMG_2445.PNG
│ ├── IMG_2446.PNG
│ ├── IMG_2447.PNG
│ ├── IMG_2448.PNG
│ ├── IMG_2449.PNG
│ ├── IMG_2450.PNG
│ ├── IMG_2451.PNG
│ ├── IMG_2452.PNG
│ ├── IMG_2453.PNG
│ ├── IMG_2454.PNG
│ ├── detail
│ │ ├── back.png
│ │ ├── blink.gif
│ │ ├── collect.png
│ │ ├── collect2.png
│ │ ├── collected.png
│ │ ├── collected2.png
│ │ ├── dot.png
│ │ ├── food.png
│ │ ├── free.png
│ │ ├── grey.gif
│ │ ├── hb-icon.png
│ │ ├── hh.jpg
│ │ ├── location.png
│ │ ├── lt.png
│ │ ├── phone.png
│ │ ├── pic.jpg
│ │ ├── qb-icon.png
│ │ ├── time.png
│ │ ├── vip_icon.png
│ │ └── wx-icon.png
│ ├── index
│ │ ├── head-icon.png
│ │ ├── icon_1.png
│ │ ├── icon_2.png
│ │ ├── icon_3.png
│ │ ├── icon_4.png
│ │ ├── icon_5.png
│ │ ├── icon_6.png
│ │ ├── icon_7.png
│ │ ├── icon_8.png
│ │ ├── icon_location.png
│ │ ├── icon_search.png
│ │ └── logo.png
│ ├── mine
│ │ ├── alipay.png
│ │ ├── icon1.png
│ │ ├── icon2.png
│ │ ├── icon3.png
│ │ ├── icon4.png
│ │ ├── icon5.png
│ │ ├── icon6.png
│ │ ├── lt.png
│ │ ├── myprize.png
│ │ ├── set.png
│ │ ├── user.jpg
│ │ ├── vip-icon.png
│ │ ├── voucher.png
│ │ └── wechat.png
│ ├── order
│ │ ├── del.png
│ │ ├── lt.png
│ │ ├── star.png
│ │ └── stars.png
│ ├── pay
│ │ ├── home.png
│ │ ├── pg1.png
│ │ ├── pg2.png
│ │ └── pg3.png
│ ├── shop
│ │ └── search.png
│ ├── store
│ │ ├── grey.gif
│ │ ├── img_store.jpg
│ │ ├── rz.png
│ │ └── star-icon.png
│ └── tabBar
│ ├── home_1.png
│ ├── home_2.png
│ ├── mine_1.png
│ ├── mine_2.png
│ ├── order_1.png
│ ├── order_2.png
│ ├── store_1.png
│ └── store_2.png
├── pages
│ ├── detail
│ │ ├── comment.js
│ │ ├── comment.json
│ │ ├── comment.wxml
│ │ ├── comment.wxss
│ │ ├── detail.js
│ │ ├── detail.json
│ │ ├── detail.wxml
│ │ ├── detail.wxss
│ │ ├── vouchers.js
│ │ ├── vouchers.json
│ │ ├── vouchers.wxml
│ │ └── vouchers.wxss
│ ├── index
│ │ ├── index.js
│ │ ├── index.json
│ │ ├── index.wxml
│ │ ├── index.wxss
│ │ ├── location.js
│ │ ├── location.json
│ │ ├── location.wxml
│ │ └── location.wxss
│ ├── mine
│ │ ├── account.js
│ │ ├── account.json
│ │ ├── account.wxml
│ │ ├── account.wxss
│ │ ├── collection.js
│ │ ├── collection.json
│ │ ├── collection.wxml
│ │ ├── collection.wxss
│ │ ├── mine.js
│ │ ├── mine.json
│ │ ├── mine.wxml
│ │ ├── mine.wxss
│ │ ├── prize.js
│ │ ├── prize.json
│ │ ├── prize.wxml
│ │ ├── prize.wxss
│ │ ├── voucher.js
│ │ ├── voucher.json
│ │ ├── voucher.wxml
│ │ ├── voucher.wxss
│ │ ├── wallet.js
│ │ ├── wallet.json
│ │ ├── wallet.wxml
│ │ └── wallet.wxss
│ ├── order
│ │ ├── articleOrder.js
│ │ ├── articleOrder.json
│ │ ├── articleOrder.wxml
│ │ ├── articleOrder.wxss
│ │ ├── evaluation.js
│ │ ├── evaluation.json
│ │ ├── evaluation.wxml
│ │ ├── evaluation.wxss
│ │ ├── order.js
│ │ ├── order.json
│ │ ├── order.wxml
│ │ └── order.wxss
│ ├── pay
│ │ ├── pay.js
│ │ ├── pay.json
│ │ ├── pay.wxml
│ │ ├── pay.wxss
│ │ ├── paycomment.js
│ │ ├── paycomment.json
│ │ ├── paycomment.wxml
│ │ ├── paycomment.wxss
│ │ ├── privilege.js
│ │ ├── privilege.json
│ │ ├── privilege.wxml
│ │ └── privilege.wxss
│ ├── search
│ │ ├── search.js
│ │ ├── search.json
│ │ ├── search.wxml
│ │ └── search.wxss
│ └── shop
│ ├── shop.js
│ ├── shop.json
│ ├── shop.wxml
│ └── shop.wxss
└── utils
├── city.js
└── server.js
20 directories, 171 files
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论