├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── applets.js ├── config.global.json ├── example └── alipay │ ├── LEGAL.md │ ├── README.md │ ├── app.acss │ ├── app.js │ ├── app.json │ ├── applets.global.json │ ├── applets.local.json │ ├── assets │ ├── .DS_Store │ ├── images │ │ ├── .DS_Store │ │ ├── avatar.png │ │ ├── cert.png │ │ ├── check.png │ │ ├── code-cut.png │ │ ├── decorator.png │ │ ├── file-cut.png │ │ ├── guide.png │ │ ├── hint.png │ │ ├── login.png │ │ ├── logo.png │ │ ├── preview.png │ │ ├── step4btn.png │ │ └── working.png │ ├── js │ │ ├── data-util.js │ │ ├── engine.js │ │ └── event.js │ └── logo.png │ ├── components │ ├── next-button │ │ ├── next-button.acss │ │ ├── next-button.axml │ │ ├── next-button.js │ │ └── next-button.json │ └── status-icon │ │ ├── status-icon.acss │ │ ├── status-icon.axml │ │ ├── status-icon.js │ │ └── status-icon.json │ ├── pages │ ├── .DS_Store │ ├── cert-page │ │ ├── cert-page.acss │ │ ├── cert-page.axml │ │ ├── cert-page.js │ │ └── cert-page.json │ ├── hint-page-1 │ │ ├── hint-page-1.acss │ │ ├── hint-page-1.axml │ │ ├── hint-page-1.js │ │ └── hint-page-1.json │ ├── hint-page-2 │ │ ├── hint-page-2.acss │ │ ├── hint-page-2.axml │ │ ├── hint-page-2.js │ │ └── hint-page-2.json │ ├── hint-page-3 │ │ ├── hint-page-3.acss │ │ ├── hint-page-3.axml │ │ ├── hint-page-3.js │ │ └── hint-page-3.json │ └── tasks │ │ ├── tasks.acss │ │ ├── tasks.axml │ │ ├── tasks.js │ │ └── tasks.json │ └── temp │ └── .gitkeep ├── lib ├── alipay.js ├── config.js └── wechat.js ├── package.json ├── template └── build-info.html └── utils ├── base.js ├── dingtalk.js ├── mail.js └── wecom.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/README.md -------------------------------------------------------------------------------- /bin/applets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/bin/applets.js -------------------------------------------------------------------------------- /config.global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/config.global.json -------------------------------------------------------------------------------- /example/alipay/LEGAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/LEGAL.md -------------------------------------------------------------------------------- /example/alipay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/README.md -------------------------------------------------------------------------------- /example/alipay/app.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/app.acss -------------------------------------------------------------------------------- /example/alipay/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/app.js -------------------------------------------------------------------------------- /example/alipay/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/app.json -------------------------------------------------------------------------------- /example/alipay/applets.global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/applets.global.json -------------------------------------------------------------------------------- /example/alipay/applets.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/applets.local.json -------------------------------------------------------------------------------- /example/alipay/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/.DS_Store -------------------------------------------------------------------------------- /example/alipay/assets/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/images/.DS_Store -------------------------------------------------------------------------------- /example/alipay/assets/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/images/avatar.png -------------------------------------------------------------------------------- /example/alipay/assets/images/cert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/images/cert.png -------------------------------------------------------------------------------- /example/alipay/assets/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/images/check.png -------------------------------------------------------------------------------- /example/alipay/assets/images/code-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/images/code-cut.png -------------------------------------------------------------------------------- /example/alipay/assets/images/decorator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/images/decorator.png -------------------------------------------------------------------------------- /example/alipay/assets/images/file-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/images/file-cut.png -------------------------------------------------------------------------------- /example/alipay/assets/images/guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/images/guide.png -------------------------------------------------------------------------------- /example/alipay/assets/images/hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/images/hint.png -------------------------------------------------------------------------------- /example/alipay/assets/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/images/login.png -------------------------------------------------------------------------------- /example/alipay/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/images/logo.png -------------------------------------------------------------------------------- /example/alipay/assets/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/images/preview.png -------------------------------------------------------------------------------- /example/alipay/assets/images/step4btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/images/step4btn.png -------------------------------------------------------------------------------- /example/alipay/assets/images/working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/images/working.png -------------------------------------------------------------------------------- /example/alipay/assets/js/data-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/js/data-util.js -------------------------------------------------------------------------------- /example/alipay/assets/js/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/js/engine.js -------------------------------------------------------------------------------- /example/alipay/assets/js/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/js/event.js -------------------------------------------------------------------------------- /example/alipay/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/assets/logo.png -------------------------------------------------------------------------------- /example/alipay/components/next-button/next-button.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/components/next-button/next-button.acss -------------------------------------------------------------------------------- /example/alipay/components/next-button/next-button.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/components/next-button/next-button.axml -------------------------------------------------------------------------------- /example/alipay/components/next-button/next-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/components/next-button/next-button.js -------------------------------------------------------------------------------- /example/alipay/components/next-button/next-button.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /example/alipay/components/status-icon/status-icon.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/components/status-icon/status-icon.acss -------------------------------------------------------------------------------- /example/alipay/components/status-icon/status-icon.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/components/status-icon/status-icon.axml -------------------------------------------------------------------------------- /example/alipay/components/status-icon/status-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/components/status-icon/status-icon.js -------------------------------------------------------------------------------- /example/alipay/components/status-icon/status-icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "component": true 3 | } -------------------------------------------------------------------------------- /example/alipay/pages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/.DS_Store -------------------------------------------------------------------------------- /example/alipay/pages/cert-page/cert-page.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/cert-page/cert-page.acss -------------------------------------------------------------------------------- /example/alipay/pages/cert-page/cert-page.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/cert-page/cert-page.axml -------------------------------------------------------------------------------- /example/alipay/pages/cert-page/cert-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/cert-page/cert-page.js -------------------------------------------------------------------------------- /example/alipay/pages/cert-page/cert-page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/cert-page/cert-page.json -------------------------------------------------------------------------------- /example/alipay/pages/hint-page-1/hint-page-1.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/hint-page-1/hint-page-1.acss -------------------------------------------------------------------------------- /example/alipay/pages/hint-page-1/hint-page-1.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/hint-page-1/hint-page-1.axml -------------------------------------------------------------------------------- /example/alipay/pages/hint-page-1/hint-page-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/hint-page-1/hint-page-1.js -------------------------------------------------------------------------------- /example/alipay/pages/hint-page-1/hint-page-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/hint-page-1/hint-page-1.json -------------------------------------------------------------------------------- /example/alipay/pages/hint-page-2/hint-page-2.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/hint-page-2/hint-page-2.acss -------------------------------------------------------------------------------- /example/alipay/pages/hint-page-2/hint-page-2.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/hint-page-2/hint-page-2.axml -------------------------------------------------------------------------------- /example/alipay/pages/hint-page-2/hint-page-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/hint-page-2/hint-page-2.js -------------------------------------------------------------------------------- /example/alipay/pages/hint-page-2/hint-page-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/hint-page-2/hint-page-2.json -------------------------------------------------------------------------------- /example/alipay/pages/hint-page-3/hint-page-3.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/hint-page-3/hint-page-3.acss -------------------------------------------------------------------------------- /example/alipay/pages/hint-page-3/hint-page-3.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/hint-page-3/hint-page-3.axml -------------------------------------------------------------------------------- /example/alipay/pages/hint-page-3/hint-page-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/hint-page-3/hint-page-3.js -------------------------------------------------------------------------------- /example/alipay/pages/hint-page-3/hint-page-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/hint-page-3/hint-page-3.json -------------------------------------------------------------------------------- /example/alipay/pages/tasks/tasks.acss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/tasks/tasks.acss -------------------------------------------------------------------------------- /example/alipay/pages/tasks/tasks.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/tasks/tasks.axml -------------------------------------------------------------------------------- /example/alipay/pages/tasks/tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/tasks/tasks.js -------------------------------------------------------------------------------- /example/alipay/pages/tasks/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/example/alipay/pages/tasks/tasks.json -------------------------------------------------------------------------------- /example/alipay/temp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/alipay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/lib/alipay.js -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/wechat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/lib/wechat.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/package.json -------------------------------------------------------------------------------- /template/build-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/template/build-info.html -------------------------------------------------------------------------------- /utils/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/utils/base.js -------------------------------------------------------------------------------- /utils/dingtalk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/utils/dingtalk.js -------------------------------------------------------------------------------- /utils/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/utils/mail.js -------------------------------------------------------------------------------- /utils/wecom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lianhr12/applets-helper/HEAD/utils/wecom.js --------------------------------------------------------------------------------