├── .gitignore ├── README.md ├── ejsSrc ├── component.ejs.ts ├── compontent │ ├── Tool.ts │ └── TopBar │ │ ├── TopBar.ts │ │ └── template.vue ├── index.ts ├── pages │ ├── about │ │ ├── about.ts │ │ └── template.vue │ ├── config │ │ ├── config.ts │ │ └── template.vue │ ├── help │ │ ├── help.ts │ │ └── template.vue │ ├── home │ │ ├── home.ts │ │ └── template.vue │ ├── list │ │ ├── list.ts │ │ └── template.vue │ ├── list_bak │ │ ├── list.ts │ │ └── template.vue │ └── read │ │ ├── read.ts │ │ └── template.vue └── types │ ├── ERender.ts │ ├── Ecmpt.ts │ └── type.ts ├── output.html ├── package.json ├── postcss.config.js ├── quickapp.config.js ├── sign ├── certificate.pem └── private.pem ├── src ├── app.ux ├── common │ ├── app.css │ ├── b.png │ ├── bg.png │ ├── chapter │ │ ├── copy.sh │ │ └── raw.json │ ├── config.json │ ├── copy.sh │ ├── del.png │ ├── goto.png │ ├── icon.png │ ├── left_line.png │ ├── logo.png │ ├── more.png │ ├── raw.json │ ├── v.png │ └── x.png ├── compontent │ └── test.ux ├── config-watch.json ├── i18n │ ├── defaults.json │ ├── en.json │ └── zh-CN.json ├── manifest.json ├── mitt.js ├── pages.zip └── pages │ ├── about │ └── about.ux │ ├── config │ └── config.ux │ ├── detail │ └── detail.ux │ ├── help │ └── help.ux │ ├── home │ └── home.ux │ ├── index │ └── index.ux │ ├── list │ └── list.ux │ ├── log │ └── log.ux │ ├── read │ └── read.ux │ └── test │ └── test.ux ├── tailwind.config.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | /yarn.lock 2 | /build/ 3 | /node_modules/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/README.md -------------------------------------------------------------------------------- /ejsSrc/component.ejs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/component.ejs.ts -------------------------------------------------------------------------------- /ejsSrc/compontent/Tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/compontent/Tool.ts -------------------------------------------------------------------------------- /ejsSrc/compontent/TopBar/TopBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/compontent/TopBar/TopBar.ts -------------------------------------------------------------------------------- /ejsSrc/compontent/TopBar/template.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/compontent/TopBar/template.vue -------------------------------------------------------------------------------- /ejsSrc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/index.ts -------------------------------------------------------------------------------- /ejsSrc/pages/about/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/pages/about/about.ts -------------------------------------------------------------------------------- /ejsSrc/pages/about/template.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/pages/about/template.vue -------------------------------------------------------------------------------- /ejsSrc/pages/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/pages/config/config.ts -------------------------------------------------------------------------------- /ejsSrc/pages/config/template.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/pages/config/template.vue -------------------------------------------------------------------------------- /ejsSrc/pages/help/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/pages/help/help.ts -------------------------------------------------------------------------------- /ejsSrc/pages/help/template.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/pages/help/template.vue -------------------------------------------------------------------------------- /ejsSrc/pages/home/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/pages/home/home.ts -------------------------------------------------------------------------------- /ejsSrc/pages/home/template.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/pages/home/template.vue -------------------------------------------------------------------------------- /ejsSrc/pages/list/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/pages/list/list.ts -------------------------------------------------------------------------------- /ejsSrc/pages/list/template.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/pages/list/template.vue -------------------------------------------------------------------------------- /ejsSrc/pages/list_bak/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/pages/list_bak/list.ts -------------------------------------------------------------------------------- /ejsSrc/pages/list_bak/template.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/pages/list_bak/template.vue -------------------------------------------------------------------------------- /ejsSrc/pages/read/read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/pages/read/read.ts -------------------------------------------------------------------------------- /ejsSrc/pages/read/template.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/pages/read/template.vue -------------------------------------------------------------------------------- /ejsSrc/types/ERender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/types/ERender.ts -------------------------------------------------------------------------------- /ejsSrc/types/Ecmpt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/types/Ecmpt.ts -------------------------------------------------------------------------------- /ejsSrc/types/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/ejsSrc/types/type.ts -------------------------------------------------------------------------------- /output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/output.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/postcss.config.js -------------------------------------------------------------------------------- /quickapp.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/quickapp.config.js -------------------------------------------------------------------------------- /sign/certificate.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/sign/certificate.pem -------------------------------------------------------------------------------- /sign/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/sign/private.pem -------------------------------------------------------------------------------- /src/app.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/app.ux -------------------------------------------------------------------------------- /src/common/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/app.css -------------------------------------------------------------------------------- /src/common/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/b.png -------------------------------------------------------------------------------- /src/common/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/bg.png -------------------------------------------------------------------------------- /src/common/chapter/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/chapter/copy.sh -------------------------------------------------------------------------------- /src/common/chapter/raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/chapter/raw.json -------------------------------------------------------------------------------- /src/common/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/config.json -------------------------------------------------------------------------------- /src/common/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/copy.sh -------------------------------------------------------------------------------- /src/common/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/del.png -------------------------------------------------------------------------------- /src/common/goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/goto.png -------------------------------------------------------------------------------- /src/common/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/icon.png -------------------------------------------------------------------------------- /src/common/left_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/left_line.png -------------------------------------------------------------------------------- /src/common/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/logo.png -------------------------------------------------------------------------------- /src/common/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/more.png -------------------------------------------------------------------------------- /src/common/raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/raw.json -------------------------------------------------------------------------------- /src/common/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/v.png -------------------------------------------------------------------------------- /src/common/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/common/x.png -------------------------------------------------------------------------------- /src/compontent/test.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/compontent/test.ux -------------------------------------------------------------------------------- /src/config-watch.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/i18n/defaults.json: -------------------------------------------------------------------------------- 1 | {"a":{"b":"default hello"}} -------------------------------------------------------------------------------- /src/i18n/en.json: -------------------------------------------------------------------------------- 1 | {"a":{"b":"hello"}} -------------------------------------------------------------------------------- /src/i18n/zh-CN.json: -------------------------------------------------------------------------------- 1 | {"a":{"b":"你好"}} -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/mitt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/mitt.js -------------------------------------------------------------------------------- /src/pages.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/pages.zip -------------------------------------------------------------------------------- /src/pages/about/about.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/pages/about/about.ux -------------------------------------------------------------------------------- /src/pages/config/config.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/pages/config/config.ux -------------------------------------------------------------------------------- /src/pages/detail/detail.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/pages/detail/detail.ux -------------------------------------------------------------------------------- /src/pages/help/help.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/pages/help/help.ux -------------------------------------------------------------------------------- /src/pages/home/home.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/pages/home/home.ux -------------------------------------------------------------------------------- /src/pages/index/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/pages/index/index.ux -------------------------------------------------------------------------------- /src/pages/list/list.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/pages/list/list.ux -------------------------------------------------------------------------------- /src/pages/log/log.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/pages/log/log.ux -------------------------------------------------------------------------------- /src/pages/read/read.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/pages/read/read.ux -------------------------------------------------------------------------------- /src/pages/test/test.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/src/pages/test/test.ux -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhaoyutiandc/BandReader_band/HEAD/tsconfig.json --------------------------------------------------------------------------------