├── .gitignore ├── README.md └── hello-wap2app ├── client ├── __W2A__hello.wap2app.dcloud.io.append.css ├── __wap2apptabbar.css ├── __wap2apptabbar.js ├── app.js ├── client_index.html ├── fonts │ └── wap2app.ttf ├── js │ ├── full-screen.js │ └── list.js ├── manifest.json ├── pages │ ├── detail │ │ └── detail.nview │ └── list │ │ ├── nviewAjaxImageSlider.nview │ │ ├── nviewAjaxIndex.nview │ │ └── nviewAjaxList.nview ├── sitemap.json └── unpackage │ └── res │ └── icons │ ├── 100x100.png │ ├── 1024x1024.png │ ├── 114x114.png │ ├── 120x120.png │ ├── 144x144.png │ ├── 152x152.png │ ├── 167x167.png │ ├── 180x180.png │ ├── 192x192.png │ ├── 20x20.png │ ├── 256x256.png │ ├── 29x29.png │ ├── 40x40.png │ ├── 48x48.png │ ├── 50x50.png │ ├── 57x57.png │ ├── 58x58.png │ ├── 60x60.png │ ├── 72x72.png │ ├── 76x76.png │ ├── 80x80.png │ ├── 87x87.png │ └── 96x96.png └── server └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .project 3 | hello-wap2app/client/unpackage/release 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/README.md -------------------------------------------------------------------------------- /hello-wap2app/client/__W2A__hello.wap2app.dcloud.io.append.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/__W2A__hello.wap2app.dcloud.io.append.css -------------------------------------------------------------------------------- /hello-wap2app/client/__wap2apptabbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/__wap2apptabbar.css -------------------------------------------------------------------------------- /hello-wap2app/client/__wap2apptabbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/__wap2apptabbar.js -------------------------------------------------------------------------------- /hello-wap2app/client/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/app.js -------------------------------------------------------------------------------- /hello-wap2app/client/client_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/client_index.html -------------------------------------------------------------------------------- /hello-wap2app/client/fonts/wap2app.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/fonts/wap2app.ttf -------------------------------------------------------------------------------- /hello-wap2app/client/js/full-screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/js/full-screen.js -------------------------------------------------------------------------------- /hello-wap2app/client/js/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/js/list.js -------------------------------------------------------------------------------- /hello-wap2app/client/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/manifest.json -------------------------------------------------------------------------------- /hello-wap2app/client/pages/detail/detail.nview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/pages/detail/detail.nview -------------------------------------------------------------------------------- /hello-wap2app/client/pages/list/nviewAjaxImageSlider.nview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/pages/list/nviewAjaxImageSlider.nview -------------------------------------------------------------------------------- /hello-wap2app/client/pages/list/nviewAjaxIndex.nview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/pages/list/nviewAjaxIndex.nview -------------------------------------------------------------------------------- /hello-wap2app/client/pages/list/nviewAjaxList.nview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/pages/list/nviewAjaxList.nview -------------------------------------------------------------------------------- /hello-wap2app/client/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/sitemap.json -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/100x100.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/1024x1024.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/114x114.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/120x120.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/144x144.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/152x152.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/167x167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/167x167.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/180x180.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/192x192.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/20x20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/20x20.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/256x256.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/29x29.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/40x40.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/48x48.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/50x50.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/57x57.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/58x58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/58x58.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/60x60.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/72x72.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/76x76.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/80x80.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/87x87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/87x87.png -------------------------------------------------------------------------------- /hello-wap2app/client/unpackage/res/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/wap2app/HEAD/hello-wap2app/client/unpackage/res/icons/96x96.png -------------------------------------------------------------------------------- /hello-wap2app/server/README.md: -------------------------------------------------------------------------------- 1 | hello wap2app的服务端演示代码。 --------------------------------------------------------------------------------