├── src ├── assets │ ├── .gitkeep │ └── icons │ │ ├── icon-72x72.png │ │ ├── icon-96x96.png │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ └── icon-512x512.png ├── @types │ └── jsencrypt │ │ └── index.d.ts ├── app │ ├── qr │ │ ├── scan │ │ │ ├── scan-success-dialog │ │ │ │ ├── scan-success-dialog.component.scss │ │ │ │ ├── scan-success-dialog.component.html │ │ │ │ ├── scan-success-dialog.component.spec.ts │ │ │ │ └── scan-success-dialog.component.ts │ │ │ ├── guest-register-dialog │ │ │ │ ├── guest-register-dialog.component.scss │ │ │ │ ├── guest-register-dialog.component.spec.ts │ │ │ │ ├── guest-register-dialog.component.html │ │ │ │ └── guest-register-dialog.component.ts │ │ │ ├── scan.component.scss │ │ │ ├── scan.component.spec.ts │ │ │ ├── scan.component.html │ │ │ └── scan.component.ts │ │ ├── models │ │ │ ├── visit.spec.ts │ │ │ ├── nhi-user.spec.ts │ │ │ ├── follower.spec.ts │ │ │ ├── location.spec.ts │ │ │ ├── tcpass-visit.spec.ts │ │ │ ├── nhi-user.ts │ │ │ ├── follower.ts │ │ │ ├── tcpass-visit.ts │ │ │ ├── location.ts │ │ │ └── visit.ts │ │ ├── rsa.service.spec.ts │ │ ├── qr-routing.module.ts │ │ ├── show │ │ │ ├── show.component.scss │ │ │ ├── show.component.spec.ts │ │ │ ├── show.component.html │ │ │ └── show.component.ts │ │ ├── qr.module.ts │ │ └── rsa.service.ts │ ├── app.component.html │ ├── svg │ │ ├── tccg-logo │ │ │ ├── tccg-logo.component.scss │ │ │ ├── tccg-logo.component.ts │ │ │ ├── tccg-logo.component.spec.ts │ │ │ └── tccg-logo.component.svg │ │ └── svg.module.ts │ ├── app.component.scss │ ├── user │ │ ├── model │ │ │ ├── user.spec.ts │ │ │ ├── guest.spec.ts │ │ │ ├── token.spec.ts │ │ │ ├── employee.spec.ts │ │ │ ├── department.spec.ts │ │ │ ├── department-employee.spec.ts │ │ │ ├── token.ts │ │ │ ├── department.ts │ │ │ ├── department-employee.ts │ │ │ ├── employee.ts │ │ │ ├── guest.ts │ │ │ └── user.ts │ │ ├── login │ │ │ ├── duplicate-verification-dialog │ │ │ │ ├── duplicate-verification-dialog.component.html │ │ │ │ ├── duplicate-verification-dialog.component.ts │ │ │ │ └── duplicate-verification-dialog.component.spec.ts │ │ │ ├── login.component.scss │ │ │ ├── login.component.spec.ts │ │ │ ├── login.component.html │ │ │ └── login.component.ts │ │ ├── user-routing.module.ts │ │ ├── user.service.spec.ts │ │ ├── user.module.ts │ │ └── user.service.ts │ ├── model │ │ ├── result.spec.ts │ │ └── result.ts │ ├── check-update-bottom-sheet │ │ ├── check-update-bottom-sheet.component.html │ │ ├── check-update-bottom-sheet.component.ts │ │ └── check-update-bottom-sheet.component.spec.ts │ ├── auth.guard.spec.ts │ ├── app-routing.module.ts │ ├── app.component.spec.ts │ ├── auth.guard.ts │ ├── app.module.ts │ └── app.component.ts ├── favicon.ico ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── main.ts ├── styles.scss ├── index.html ├── test.ts ├── manifest.webmanifest └── polyfills.ts ├── README.md ├── tsconfig.app.json ├── e2e ├── tsconfig.json ├── src │ ├── app.po.ts │ └── app.e2e-spec.ts └── protractor.conf.js ├── .editorconfig ├── tsconfig.spec.json ├── .browserslistrc ├── tsconfig.json ├── ngsw-config.json ├── .gitignore ├── LICENSE ├── karma.conf.js ├── package.json ├── tslint.json └── angular.json /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/@types/jsencrypt/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'jsencrypt'; -------------------------------------------------------------------------------- /src/app/qr/scan/scan-success-dialog/scan-success-dialog.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror520/tiwenpass/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- 1 |
您已經驗證過了,是否需要再次驗證?
4 | 提醒:您可使用最後的驗證簡訊再次登入 5 |