├── README.md ├── app.js ├── app.json ├── app.wxss ├── pages ├── home │ ├── home.js │ ├── home.wxml │ └── home.wxss └── order │ ├── order.js │ ├── order.wxml │ └── order.wxss ├── res └── img │ ├── banner-1.png │ └── cart.png └── utils └── util.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-diancan/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-diancan/HEAD/app.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-diancan/HEAD/app.json -------------------------------------------------------------------------------- /app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-diancan/HEAD/app.wxss -------------------------------------------------------------------------------- /pages/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-diancan/HEAD/pages/home/home.js -------------------------------------------------------------------------------- /pages/home/home.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-diancan/HEAD/pages/home/home.wxml -------------------------------------------------------------------------------- /pages/home/home.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-diancan/HEAD/pages/home/home.wxss -------------------------------------------------------------------------------- /pages/order/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-diancan/HEAD/pages/order/order.js -------------------------------------------------------------------------------- /pages/order/order.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-diancan/HEAD/pages/order/order.wxml -------------------------------------------------------------------------------- /pages/order/order.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-diancan/HEAD/pages/order/order.wxss -------------------------------------------------------------------------------- /res/img/banner-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-diancan/HEAD/res/img/banner-1.png -------------------------------------------------------------------------------- /res/img/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-diancan/HEAD/res/img/cart.png -------------------------------------------------------------------------------- /utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/getweapp/weapp-diancan/HEAD/utils/util.js --------------------------------------------------------------------------------