├── README.md └── hello-quickapp ├── Common ├── css │ └── common.css ├── img │ ├── ag1-.png │ ├── ag1.png │ ├── ag2-.png │ ├── ag2.png │ ├── ag3-.png │ ├── ag3.png │ ├── ag4-.png │ ├── ag4.png │ ├── arrow_right.png │ ├── c1.png │ ├── c2.png │ ├── c3.png │ ├── c4.png │ ├── c5.png │ ├── c6.png │ ├── c7.png │ ├── c8.png │ ├── cbd.jpg │ ├── mi_logo.png │ ├── muwu.jpg │ ├── shuijiao.jpg │ ├── stack1.png │ ├── youjiantou.png │ └── yuantiao.jpg └── logo.png ├── Component ├── A │ ├── Detail │ │ └── index.ux │ └── index.ux ├── Button │ └── index.ux ├── Checkbox │ └── index.ux ├── Div │ └── index.ux ├── Image │ └── index.ux ├── Input │ ├── Default │ │ └── index.ux │ └── index.ux ├── Label │ └── index.ux ├── List │ ├── Default │ │ └── index.ux │ └── index.ux ├── Progress │ └── index.ux ├── Radio │ └── index.ux ├── Refresh │ └── index.ux ├── Richtext │ └── index.ux ├── Span │ └── index.ux ├── Stack │ └── index.ux ├── Swiper │ ├── Default │ │ └── index.ux │ ├── Grid │ │ └── index.ux │ └── index.ux ├── Switch │ └── index.ux ├── Tabs │ ├── Default │ │ └── index.ux │ └── index.ux ├── Text │ ├── Default │ │ └── index.ux │ └── index.ux ├── Textarea │ └── index.ux └── Video │ └── index.ux ├── Home └── index.ux ├── Interface ├── Barcode │ └── index.ux ├── Clipboard │ └── index.ux ├── Device │ └── index.ux ├── Fetch │ └── index.ux ├── File │ └── index.ux ├── Geolocation │ └── index.ux ├── Network │ └── index.ux ├── Notification │ └── index.ux ├── Prompt │ └── index.ux ├── Request │ └── index.ux ├── Router │ ├── Detail │ │ └── index.ux │ └── index.ux ├── Sensor │ └── index.ux ├── Share │ └── index.ux ├── Shortcut │ └── index.ux ├── Storage │ └── index.ux └── Webview │ └── index.ux ├── Templates ├── About │ └── index.ux ├── Login │ └── index.ux └── Setting │ └── index.ux ├── app.ux ├── dcloud_stat.js ├── dcloud_stat_conf.js ├── manifest.json └── unpackage └── io.dcloud.quickapp.sample.signed.rpk /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/README.md -------------------------------------------------------------------------------- /hello-quickapp/Common/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/css/common.css -------------------------------------------------------------------------------- /hello-quickapp/Common/img/ag1-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/ag1-.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/ag1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/ag1.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/ag2-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/ag2-.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/ag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/ag2.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/ag3-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/ag3-.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/ag3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/ag3.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/ag4-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/ag4-.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/ag4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/ag4.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/arrow_right.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/c1.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/c2.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/c3.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/c4.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/c5.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/c6.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/c7.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/c8.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/cbd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/cbd.jpg -------------------------------------------------------------------------------- /hello-quickapp/Common/img/mi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/mi_logo.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/muwu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/muwu.jpg -------------------------------------------------------------------------------- /hello-quickapp/Common/img/shuijiao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/shuijiao.jpg -------------------------------------------------------------------------------- /hello-quickapp/Common/img/stack1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/stack1.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/youjiantou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/youjiantou.png -------------------------------------------------------------------------------- /hello-quickapp/Common/img/yuantiao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/img/yuantiao.jpg -------------------------------------------------------------------------------- /hello-quickapp/Common/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Common/logo.png -------------------------------------------------------------------------------- /hello-quickapp/Component/A/Detail/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/A/Detail/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/A/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/A/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Button/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Button/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Checkbox/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Checkbox/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Div/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Div/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Image/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Image/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Input/Default/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Input/Default/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Input/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Input/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Label/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Label/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/List/Default/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/List/Default/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/List/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/List/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Progress/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Progress/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Radio/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Radio/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Refresh/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Refresh/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Richtext/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Richtext/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Span/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Span/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Stack/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Stack/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Swiper/Default/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Swiper/Default/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Swiper/Grid/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Swiper/Grid/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Swiper/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Swiper/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Switch/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Switch/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Tabs/Default/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Tabs/Default/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Tabs/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Tabs/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Text/Default/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Text/Default/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Text/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Text/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Textarea/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Textarea/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Component/Video/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Component/Video/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Home/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Home/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Barcode/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Barcode/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Clipboard/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Clipboard/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Device/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Device/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Fetch/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Fetch/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/File/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/File/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Geolocation/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Geolocation/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Network/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Network/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Notification/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Notification/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Prompt/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Prompt/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Request/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Request/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Router/Detail/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Router/Detail/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Router/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Router/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Sensor/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Sensor/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Share/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Share/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Shortcut/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Shortcut/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Storage/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Storage/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Interface/Webview/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Interface/Webview/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Templates/About/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Templates/About/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Templates/Login/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Templates/Login/index.ux -------------------------------------------------------------------------------- /hello-quickapp/Templates/Setting/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/Templates/Setting/index.ux -------------------------------------------------------------------------------- /hello-quickapp/app.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/app.ux -------------------------------------------------------------------------------- /hello-quickapp/dcloud_stat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/dcloud_stat.js -------------------------------------------------------------------------------- /hello-quickapp/dcloud_stat_conf.js: -------------------------------------------------------------------------------- 1 | exports.app_key = ""; //请在此行填写快应用包名 -------------------------------------------------------------------------------- /hello-quickapp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/manifest.json -------------------------------------------------------------------------------- /hello-quickapp/unpackage/io.dcloud.quickapp.sample.signed.rpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcloudio/quickapp/HEAD/hello-quickapp/unpackage/io.dcloud.quickapp.sample.signed.rpk --------------------------------------------------------------------------------