├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── babel.config.js ├── dist ├── css │ └── app.247be998.css ├── img │ ├── about.facbd5bf.svg │ ├── add.d47d282b.svg │ ├── back.bade37cb.svg │ ├── close.b2ffde26.svg │ ├── delete.b6bbbf94.svg │ ├── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── android-chrome-maskable-192x192.png │ │ ├── android-chrome-maskable-512x512.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── msapplication-icon-144x144.png │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg │ ├── logo.15eb1df8.png │ ├── menu.c6c92fec.svg │ ├── qrcode0.ccd4d4ec.svg │ ├── qrcode1.4f42d1ee.svg │ └── star_back.a22700c5.png ├── index.html ├── js │ ├── app.2414cbfa.js │ ├── app.2414cbfa.js.map │ ├── chunk-vendors.123a1cbc.js │ └── chunk-vendors.123a1cbc.js.map ├── manifest.json ├── precache-manifest.26e87d138469847cd1d0c15b97bb39d5.js ├── robots.txt └── service-worker.js ├── jsconfig.json ├── package.json ├── public ├── img │ └── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── android-chrome-maskable-192x192.png │ │ ├── android-chrome-maskable-512x512.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── msapplication-icon-144x144.png │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg ├── index.html └── robots.txt ├── src ├── App.vue ├── app.css ├── assets │ ├── about.svg │ ├── add.svg │ ├── back.svg │ ├── close.svg │ ├── delete.svg │ ├── logo.png │ └── menu.svg ├── components │ └── fake │ │ ├── 41a291b0.chunk.css │ │ ├── 4c338eb8.chunk.css │ │ ├── 5de02372.chunk.css │ │ ├── 780e88b3.css │ │ ├── 8593bd49.chunk.css │ │ ├── 9c25fb71.chunk.css │ │ ├── Fake.vue │ │ ├── QRCode.vue │ │ ├── a843def6.chunk.css │ │ ├── qrcode0.svg │ │ ├── qrcode1.svg │ │ ├── star_back.png │ │ └── stars.png ├── main.js └── registerServiceWorker.js └── vue.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/_config.yml -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/babel.config.js -------------------------------------------------------------------------------- /dist/css/app.247be998.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/css/app.247be998.css -------------------------------------------------------------------------------- /dist/img/about.facbd5bf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/about.facbd5bf.svg -------------------------------------------------------------------------------- /dist/img/add.d47d282b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/add.d47d282b.svg -------------------------------------------------------------------------------- /dist/img/back.bade37cb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/back.bade37cb.svg -------------------------------------------------------------------------------- /dist/img/close.b2ffde26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/close.b2ffde26.svg -------------------------------------------------------------------------------- /dist/img/delete.b6bbbf94.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/delete.b6bbbf94.svg -------------------------------------------------------------------------------- /dist/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /dist/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /dist/img/icons/android-chrome-maskable-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/android-chrome-maskable-192x192.png -------------------------------------------------------------------------------- /dist/img/icons/android-chrome-maskable-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/android-chrome-maskable-512x512.png -------------------------------------------------------------------------------- /dist/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /dist/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /dist/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /dist/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /dist/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /dist/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /dist/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /dist/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /dist/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /dist/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /dist/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /dist/img/logo.15eb1df8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/logo.15eb1df8.png -------------------------------------------------------------------------------- /dist/img/menu.c6c92fec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/menu.c6c92fec.svg -------------------------------------------------------------------------------- /dist/img/qrcode0.ccd4d4ec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/qrcode0.ccd4d4ec.svg -------------------------------------------------------------------------------- /dist/img/qrcode1.4f42d1ee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/qrcode1.4f42d1ee.svg -------------------------------------------------------------------------------- /dist/img/star_back.a22700c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/img/star_back.a22700c5.png -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/js/app.2414cbfa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/js/app.2414cbfa.js -------------------------------------------------------------------------------- /dist/js/app.2414cbfa.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/js/app.2414cbfa.js.map -------------------------------------------------------------------------------- /dist/js/chunk-vendors.123a1cbc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/js/chunk-vendors.123a1cbc.js -------------------------------------------------------------------------------- /dist/js/chunk-vendors.123a1cbc.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/js/chunk-vendors.123a1cbc.js.map -------------------------------------------------------------------------------- /dist/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/manifest.json -------------------------------------------------------------------------------- /dist/precache-manifest.26e87d138469847cd1d0c15b97bb39d5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/precache-manifest.26e87d138469847cd1d0c15b97bb39d5.js -------------------------------------------------------------------------------- /dist/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /dist/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/dist/service-worker.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/package.json -------------------------------------------------------------------------------- /public/img/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/img/icons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/img/icons/android-chrome-maskable-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/android-chrome-maskable-192x192.png -------------------------------------------------------------------------------- /public/img/icons/android-chrome-maskable-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/android-chrome-maskable-512x512.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/img/icons/msapplication-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/msapplication-icon-144x144.png -------------------------------------------------------------------------------- /public/img/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/mstile-150x150.png -------------------------------------------------------------------------------- /public/img/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/img/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/app.css -------------------------------------------------------------------------------- /src/assets/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/assets/about.svg -------------------------------------------------------------------------------- /src/assets/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/assets/add.svg -------------------------------------------------------------------------------- /src/assets/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/assets/back.svg -------------------------------------------------------------------------------- /src/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/assets/close.svg -------------------------------------------------------------------------------- /src/assets/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/assets/delete.svg -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/assets/menu.svg -------------------------------------------------------------------------------- /src/components/fake/41a291b0.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/components/fake/41a291b0.chunk.css -------------------------------------------------------------------------------- /src/components/fake/4c338eb8.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/components/fake/4c338eb8.chunk.css -------------------------------------------------------------------------------- /src/components/fake/5de02372.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/components/fake/5de02372.chunk.css -------------------------------------------------------------------------------- /src/components/fake/780e88b3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/components/fake/780e88b3.css -------------------------------------------------------------------------------- /src/components/fake/8593bd49.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/components/fake/8593bd49.chunk.css -------------------------------------------------------------------------------- /src/components/fake/9c25fb71.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/components/fake/9c25fb71.chunk.css -------------------------------------------------------------------------------- /src/components/fake/Fake.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/components/fake/Fake.vue -------------------------------------------------------------------------------- /src/components/fake/QRCode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/components/fake/QRCode.vue -------------------------------------------------------------------------------- /src/components/fake/a843def6.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/components/fake/a843def6.chunk.css -------------------------------------------------------------------------------- /src/components/fake/qrcode0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/components/fake/qrcode0.svg -------------------------------------------------------------------------------- /src/components/fake/qrcode1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/components/fake/qrcode1.svg -------------------------------------------------------------------------------- /src/components/fake/star_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/components/fake/star_back.png -------------------------------------------------------------------------------- /src/components/fake/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/components/fake/stars.png -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/main.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supertsy5/fake-yiban/HEAD/vue.config.js --------------------------------------------------------------------------------