skiy 3 tahun lalu
melakukan
c234c0b8f7
71 mengubah file dengan 1766 tambahan dan 0 penghapusan
  1. 17 0
      .browserslistrc
  2. 16 0
      .editorconfig
  3. 53 0
      .gitignore
  4. 27 0
      README.md
  5. 133 0
      angular.json
  6. 37 0
      e2e/protractor.conf.js
  7. 23 0
      e2e/src/app.e2e-spec.ts
  8. 11 0
      e2e/src/app.po.ts
  9. 13 0
      e2e/tsconfig.json
  10. 44 0
      karma.conf.js
  11. 41 0
      package.json
  12. 16 0
      proxy.conf.json
  13. 9 0
      src/app/app.component.ts
  14. 55 0
      src/app/app.module.ts
  15. 2 0
      src/app/component/tx-map/tx-map.component.html
  16. 4 0
      src/app/component/tx-map/tx-map.component.less
  17. 25 0
      src/app/component/tx-map/tx-map.component.spec.ts
  18. 37 0
      src/app/component/tx-map/tx-map.component.ts
  19. 1 0
      src/app/layout/layout-map/layout-map.component.html
  20. 0 0
      src/app/layout/layout-map/layout-map.component.less
  21. 25 0
      src/app/layout/layout-map/layout-map.component.spec.ts
  22. 15 0
      src/app/layout/layout-map/layout-map.component.ts
  23. 1 0
      src/app/layout/layout-mobile-login/layout-mobile-login.component.html
  24. 0 0
      src/app/layout/layout-mobile-login/layout-mobile-login.component.less
  25. 25 0
      src/app/layout/layout-mobile-login/layout-mobile-login.component.spec.ts
  26. 15 0
      src/app/layout/layout-mobile-login/layout-mobile-login.component.ts
  27. 3 0
      src/app/layout/layout-mobile/layout-mobile.component.html
  28. 0 0
      src/app/layout/layout-mobile/layout-mobile.component.less
  29. 25 0
      src/app/layout/layout-mobile/layout-mobile.component.spec.ts
  30. 15 0
      src/app/layout/layout-mobile/layout-mobile.component.ts
  31. 34 0
      src/app/layout/layout-pc-login/layout-pc-login.component.html
  32. 147 0
      src/app/layout/layout-pc-login/layout-pc-login.component.less
  33. 25 0
      src/app/layout/layout-pc-login/layout-pc-login.component.spec.ts
  34. 40 0
      src/app/layout/layout-pc-login/layout-pc-login.component.ts
  35. 57 0
      src/app/layout/layout-pc/layout-pc.component.css
  36. 40 0
      src/app/layout/layout-pc/layout-pc.component.html
  37. 22 0
      src/app/layout/layout-pc/layout-pc.component.spec.ts
  38. 29 0
      src/app/layout/layout-pc/layout-pc.component.ts
  39. 4 0
      src/app/layout/布局组件.md
  40. 10 0
      src/app/routes/pc-home/pc-home.component.html
  41. 0 0
      src/app/routes/pc-home/pc-home.component.less
  42. 25 0
      src/app/routes/pc-home/pc-home.component.spec.ts
  43. 15 0
      src/app/routes/pc-home/pc-home.component.ts
  44. 64 0
      src/app/routes/routes-routing.module.ts
  45. 14 0
      src/app/routes/routes.module.ts
  46. 48 0
      src/app/share/canactivate/auth-all.guard.ts
  47. 19 0
      src/app/share/canactivate/auth.guard.ts
  48. 0 0
      src/app/share/canactivate/路由守卫模块.md
  49. 24 0
      src/app/share/http/http.interceptor.ts
  50. 26 0
      src/app/share/http/http.ts
  51. 0 0
      src/app/share/http/网络请求
  52. 0 0
      src/app/share/operation/公共运算.md
  53. 49 0
      src/app/share/zrror-ui/zrror-ui.ts
  54. 0 0
      src/app/share/zrror-ui/引入ui组件类.md
  55. 0 0
      src/app/share/公共模块.md
  56. 0 0
      src/assets/.gitkeep
  57. 29 0
      src/assets/login/img/avatar.svg
  58. TEMPAT SAMPAH
      src/assets/login/img/bg.png
  59. 0 0
      src/assets/login/img/img-3.svg
  60. 3 0
      src/environments/environment.prod.ts
  61. 16 0
      src/environments/environment.ts
  62. TEMPAT SAMPAH
      src/favicon.ico
  63. 18 0
      src/index.html
  64. 23 0
      src/main.ts
  65. 65 0
      src/polyfills.ts
  66. 1 0
      src/styles.less
  67. 25 0
      src/test.ts
  68. 15 0
      tsconfig.app.json
  69. 21 0
      tsconfig.json
  70. 18 0
      tsconfig.spec.json
  71. 152 0
      tslint.json

+ 17 - 0
.browserslistrc

@@ -0,0 +1,17 @@
+# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
+# For additional information regarding the format and rule options, please see:
+# https://github.com/browserslist/browserslist#queries
+
+# For the full list of supported browsers by the Angular framework, please see:
+# https://angular.io/guide/browser-support
+
+# You can see what browsers were selected by your queries by running:
+#   npx browserslist
+
+last 1 Chrome version
+last 1 Firefox version
+last 2 Edge major versions
+last 2 Safari major versions
+last 2 iOS major versions
+Firefox ESR
+not IE 11 # Angular supports IE 11 only as an opt-in. To opt-in, remove the 'not' prefix on this line.

+ 16 - 0
.editorconfig

@@ -0,0 +1,16 @@
+# Editor configuration, see https://editorconfig.org
+root = true
+
+[*]
+charset = utf-8
+indent_style = space
+indent_size = 2
+insert_final_newline = true
+trim_trailing_whitespace = true
+
+[*.ts]
+quote_type = single
+
+[*.md]
+max_line_length = off
+trim_trailing_whitespace = false

+ 53 - 0
.gitignore

@@ -0,0 +1,53 @@
+# See http://help.github.com/ignore-files/ for more about ignoring files.
+
+# compiled output
+/dist
+/tmp
+/out-tsc
+package-lock.json
+# Only exists if Bazel was run
+/bazel-out
+
+# dependencies
+/node_modules
+
+# profiling files
+chrome-profiler-events*.json
+speed-measure-plugin*.json
+
+# IDEs and editors
+/.idea
+.project
+.classpath
+.c9/
+*.launch
+.settings/
+*.sublime-workspace
+
+# IDE - VSCode
+.vscode/*
+!.vscode/settings.json
+!.vscode/tasks.json
+!.vscode/launch.json
+!.vscode/extensions.json
+.history/*
+
+# misc
+/.sass-cache
+/connect.lock
+/coverage
+/libpeerconnection.log
+npm-debug.log
+yarn-error.log
+testem.log
+/typings
+
+# System Files
+.DS_Store
+Thumbs.db
+
+# vscode 配置
+.vscode
+
+# 打包文件
+/dist

+ 27 - 0
README.md

@@ -0,0 +1,27 @@
+# Learn
+
+This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 11.2.7.
+
+## Development server
+
+Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
+
+## Code scaffolding
+
+Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
+
+## Build
+
+Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
+
+## Running unit tests
+
+Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
+
+## Running end-to-end tests
+
+Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
+
+## Further help
+
+To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.

+ 133 - 0
angular.json

@@ -0,0 +1,133 @@
+{
+  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
+  "cli": {
+    "analytics": false
+  },
+  "version": 1,
+  "newProjectRoot": "projects",
+  "projects": {
+    "learn": {
+      "projectType": "application",
+      "schematics": {
+        "@schematics/angular:component": {
+          "style": "less"
+        }
+      },
+      "root": "",
+      "sourceRoot": "src",
+      "prefix": "app",
+      "architect": {
+        "build": {
+          "builder": "@angular-devkit/build-angular:browser",
+          "options": {
+            "outputPath": "dist/learn",
+            "index": "src/index.html",
+            "main": "src/main.ts",
+            "polyfills": "src/polyfills.ts",
+            "tsConfig": "tsconfig.app.json",
+            "aot": true,
+            "assets": [
+              "src/favicon.ico",
+              "src/assets"
+            ],
+            "styles": [
+              "./node_modules/ng-zorro-antd/ng-zorro-antd.min.css",
+              "src/styles.less"
+            ],
+            "scripts": []
+          },
+          "configurations": {
+            "production": {
+              "fileReplacements": [
+                {
+                  "replace": "src/environments/environment.ts",
+                  "with": "src/environments/environment.prod.ts"
+                }
+              ],
+              "optimization": true,
+              "outputHashing": "all",
+              "sourceMap": false,
+              "namedChunks": false,
+              "extractLicenses": true,
+              "vendorChunk": false,
+              "buildOptimizer": true,
+              "budgets": [
+                {
+                  "type": "initial",
+                  "maximumWarning": "2mb",
+                  "maximumError": "5mb"
+                },
+                {
+                  "type": "anyComponentStyle",
+                  "maximumWarning": "6kb",
+                  "maximumError": "10kb"
+                }
+              ]
+            }
+          }
+        },
+        "serve": {
+          "builder": "@angular-devkit/build-angular:dev-server",
+          "options": {
+            "browserTarget": "learn:build"
+          },
+          "configurations": {
+            "production": {
+              "browserTarget": "learn:build:production"
+            }
+          }
+        },
+        "extract-i18n": {
+          "builder": "@angular-devkit/build-angular:extract-i18n",
+          "options": {
+            "browserTarget": "learn:build"
+          }
+        },
+        "test": {
+          "builder": "@angular-devkit/build-angular:karma",
+          "options": {
+            "main": "src/test.ts",
+            "polyfills": "src/polyfills.ts",
+            "tsConfig": "tsconfig.spec.json",
+            "karmaConfig": "karma.conf.js",
+            "assets": [
+              "src/favicon.ico",
+              "src/assets"
+            ],
+            "styles": [
+              "./node_modules/ng-zorro-antd/ng-zorro-antd.min.css",
+              "src/styles.less"
+            ],
+            "scripts": []
+          }
+        },
+        "lint": {
+          "builder": "@angular-devkit/build-angular:tslint",
+          "options": {
+            "tsConfig": [
+              "tsconfig.app.json",
+              "tsconfig.spec.json",
+              "e2e/tsconfig.json"
+            ],
+            "exclude": [
+              "**/node_modules/**"
+            ]
+          }
+        },
+        "e2e": {
+          "builder": "@angular-devkit/build-angular:protractor",
+          "options": {
+            "protractorConfig": "e2e/protractor.conf.js",
+            "devServerTarget": "learn:serve"
+          },
+          "configurations": {
+            "production": {
+              "devServerTarget": "learn:serve:production"
+            }
+          }
+        }
+      }
+    }
+  },
+  "defaultProject": "learn"
+}

+ 37 - 0
e2e/protractor.conf.js

@@ -0,0 +1,37 @@
+// @ts-check
+// Protractor configuration file, see link for more information
+// https://github.com/angular/protractor/blob/master/lib/config.ts
+
+const { SpecReporter, StacktraceOption } = require('jasmine-spec-reporter');
+
+/**
+ * @type { import("protractor").Config }
+ */
+exports.config = {
+  allScriptsTimeout: 11000,
+  specs: [
+    './src/**/*.e2e-spec.ts'
+  ],
+  capabilities: {
+    browserName: 'chrome'
+  },
+  directConnect: true,
+  SELENIUM_PROMISE_MANAGER: false,
+  baseUrl: 'http://localhost:4200/',
+  framework: 'jasmine',
+  jasmineNodeOpts: {
+    showColors: true,
+    defaultTimeoutInterval: 30000,
+    print: function() {}
+  },
+  onPrepare() {
+    require('ts-node').register({
+      project: require('path').join(__dirname, './tsconfig.json')
+    });
+    jasmine.getEnv().addReporter(new SpecReporter({
+      spec: {
+        displayStacktrace: StacktraceOption.PRETTY
+      }
+    }));
+  }
+};

+ 23 - 0
e2e/src/app.e2e-spec.ts

@@ -0,0 +1,23 @@
+import { browser, logging } from 'protractor';
+import { AppPage } from './app.po';
+
+describe('workspace-project App', () => {
+  let page: AppPage;
+
+  beforeEach(() => {
+    page = new AppPage();
+  });
+
+  it('should display welcome message', async () => {
+    await page.navigateTo();
+    expect(await page.getTitleText()).toEqual('learn app is running!');
+  });
+
+  afterEach(async () => {
+    // Assert that there are no errors emitted from the browser
+    const logs = await browser.manage().logs().get(logging.Type.BROWSER);
+    expect(logs).not.toContain(jasmine.objectContaining({
+      level: logging.Level.SEVERE,
+    } as logging.Entry));
+  });
+});

+ 11 - 0
e2e/src/app.po.ts

@@ -0,0 +1,11 @@
+import { browser, by, element } from 'protractor';
+
+export class AppPage {
+  async navigateTo(): Promise<unknown> {
+    return browser.get(browser.baseUrl);
+  }
+
+  async getTitleText(): Promise<string> {
+    return element(by.css('app-root .content span')).getText();
+  }
+}

+ 13 - 0
e2e/tsconfig.json

@@ -0,0 +1,13 @@
+/* To learn more about this file see: https://angular.io/config/tsconfig. */
+{
+  "extends": "../tsconfig.json",
+  "compilerOptions": {
+    "outDir": "../out-tsc/e2e",
+    "module": "commonjs",
+    "target": "es2018",
+    "types": [
+      "jasmine",
+      "node"
+    ]
+  }
+}

+ 44 - 0
karma.conf.js

@@ -0,0 +1,44 @@
+// Karma configuration file, see link for more information
+// https://karma-runner.github.io/1.0/config/configuration-file.html
+
+module.exports = function (config) {
+  config.set({
+    basePath: '',
+    frameworks: ['jasmine', '@angular-devkit/build-angular'],
+    plugins: [
+      require('karma-jasmine'),
+      require('karma-chrome-launcher'),
+      require('karma-jasmine-html-reporter'),
+      require('karma-coverage'),
+      require('@angular-devkit/build-angular/plugins/karma')
+    ],
+    client: {
+      jasmine: {
+        // you can add configuration options for Jasmine here
+        // the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
+        // for example, you can disable the random execution with `random: false`
+        // or set a specific seed with `seed: 4321`
+      },
+      clearContext: false // leave Jasmine Spec Runner output visible in browser
+    },
+    jasmineHtmlReporter: {
+      suppressAll: true // removes the duplicated traces
+    },
+    coverageReporter: {
+      dir: require('path').join(__dirname, './coverage/learn'),
+      subdir: '.',
+      reporters: [
+        { type: 'html' },
+        { type: 'text-summary' }
+      ]
+    },
+    reporters: ['progress', 'kjhtml'],
+    port: 9876,
+    colors: true,
+    logLevel: config.LOG_INFO,
+    autoWatch: true,
+    browsers: ['Chrome'],
+    singleRun: false,
+    restartOnFileChange: true
+  });
+};

+ 41 - 0
package.json

@@ -0,0 +1,41 @@
+{
+  "name": "app",
+  "version": "0.0.0",
+  "scripts": {
+    "ng": "ng",
+    "start": "ng serve --proxy-config proxy.conf.json",
+    "build": "ng build",
+    "watch": "ng build --watch --configuration development",
+    "test": "ng test"
+  },
+  "private": true,
+  "dependencies": {
+    "@angular/animations": "~12.2.0",
+    "@angular/common": "~12.2.0",
+    "@angular/compiler": "~12.2.0",
+    "@angular/core": "~12.2.0",
+    "@angular/forms": "~12.2.0",
+    "@angular/platform-browser": "~12.2.0",
+    "@angular/platform-browser-dynamic": "~12.2.0",
+    "@angular/router": "~12.2.0",
+    "ng-zorro-antd": "^12.0.1",
+    "ng-zorro-antd-mobile": "^5.0.0",
+    "rxjs": "~6.6.0",
+    "tslib": "^2.3.0",
+    "zone.js": "~0.11.4"
+  },
+  "devDependencies": {
+    "@angular-devkit/build-angular": "~12.2.9",
+    "@angular/cli": "~12.2.9",
+    "@angular/compiler-cli": "~12.2.0",
+    "@types/jasmine": "~3.8.0",
+    "@types/node": "^12.11.1",
+    "jasmine-core": "~3.8.0",
+    "karma": "~6.3.0",
+    "karma-chrome-launcher": "~3.1.0",
+    "karma-coverage": "~2.0.3",
+    "karma-jasmine": "~4.0.0",
+    "karma-jasmine-html-reporter": "~1.7.0",
+    "typescript": "~4.3.5"
+  }
+}

+ 16 - 0
proxy.conf.json

@@ -0,0 +1,16 @@
+{
+  "/map/*": {
+    "target": "https://apis.map.qq.com",
+    "pathRewrite": {
+      "^/map": ""
+    },
+    "secure": false
+  },
+  "/api/*": {
+    "target": "http://localhost:3000",
+    "pathRewrite": {
+      "^/api": ""
+    },
+    "secure": false
+  }
+}

+ 9 - 0
src/app/app.component.ts

@@ -0,0 +1,9 @@
+import { Component } from '@angular/core';
+
+@Component({
+  selector: 'app-root',
+  template: `<router-outlet></router-outlet>`,
+})
+export class AppComponent {
+  title = 'learn';
+}

+ 55 - 0
src/app/app.module.ts

@@ -0,0 +1,55 @@
+import { NgModule } from '@angular/core';
+import { BrowserModule } from '@angular/platform-browser';
+
+import { AppComponent } from './app.component';
+import { NZ_I18N } from 'ng-zorro-antd/i18n';
+import { zh_CN } from 'ng-zorro-antd/i18n';
+import { registerLocaleData } from '@angular/common';
+import zh from '@angular/common/locales/zh';
+import { FormsModule, ReactiveFormsModule } from '@angular/forms';
+import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
+import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
+import { RouterModule } from '@angular/router';
+// http拦截器
+import { NoopInterceptor } from './share/http/http.interceptor';
+// ui组件类
+import { ZrrorUi } from './share/zrror-ui/zrror-ui';
+// 引入路由组件
+import { RoutesModule } from './routes/routes.module';
+// 图标
+import { NZ_ICONS } from 'ng-zorro-antd/icon';
+import { IconDefinition } from '@ant-design/icons-angular';
+import * as AllIcons from '@ant-design/icons-angular/icons';
+import { LayoutMapComponent } from './layout/layout-map/layout-map.component';
+const antDesignIcons = AllIcons as {
+  [key: string]: IconDefinition;
+};
+const icons: IconDefinition[] = Object.keys(antDesignIcons).map(
+  (key) => antDesignIcons[key]
+);
+
+registerLocaleData(zh);
+
+@NgModule({
+  declarations: [AppComponent, LayoutMapComponent],
+  imports: [
+    BrowserModule,
+    FormsModule,
+    ReactiveFormsModule,
+    HttpClientModule,
+    BrowserAnimationsModule,
+    // ui 组件
+    ...ZrrorUi.uiArr,
+    // 路由模块
+    RoutesModule,
+    // angular 路由模块 使用hash路由
+    RouterModule.forRoot([], { useHash: true }),
+  ],
+  providers: [
+    { provide: NZ_I18N, useValue: zh_CN },
+    { provide: NZ_ICONS, useValue: icons },
+    { provide: HTTP_INTERCEPTORS, useClass: NoopInterceptor, multi: true },
+  ],
+  bootstrap: [AppComponent],
+})
+export class AppModule {}

+ 2 - 0
src/app/component/tx-map/tx-map.component.html

@@ -0,0 +1,2 @@
+<!-- 定义地图显示容器 -->
+<div id="container"></div>

+ 4 - 0
src/app/component/tx-map/tx-map.component.less

@@ -0,0 +1,4 @@
+#container{
+    width: 100%;
+    height: 100%;
+}

+ 25 - 0
src/app/component/tx-map/tx-map.component.spec.ts

@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { TxMapComponent } from './tx-map.component';
+
+describe('TxMapComponent', () => {
+  let component: TxMapComponent;
+  let fixture: ComponentFixture<TxMapComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ TxMapComponent ]
+    })
+    .compileComponents();
+  });
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(TxMapComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});

+ 37 - 0
src/app/component/tx-map/tx-map.component.ts

@@ -0,0 +1,37 @@
+import { Component, Input, OnInit, Output,EventEmitter } from '@angular/core';
+
+declare var TMap: any;
+
+@Component({
+  selector: 'app-tx-map',
+  templateUrl: './tx-map.component.html',
+  styleUrls: ['./tx-map.component.less'],
+})
+export class TxMapComponent implements OnInit {
+  
+  qqMap: any;
+
+  // 传入参数
+  // 地图中心点经纬度
+  @Input() center = {
+    Longitude: '',
+    Latitude: '',
+  };
+
+  // 出发外部事件
+  @Output() test = new EventEmitter();
+
+  constructor() {}
+
+  ngOnInit(): void {
+    // 定义地图中心点坐标
+    const center: any = new TMap.LatLng(35.103434, 118.356418);
+    this.qqMap = new TMap.Map(document.getElementById('container'), {
+      center, // 设置地图中心点坐标
+      zoom: 12.2, // 设置地图缩放级别
+      // pitch: 43.5, // 设置俯仰角
+      // rotation: 45 // 设置地图旋转角度
+    });
+
+  }
+}

+ 1 - 0
src/app/layout/layout-map/layout-map.component.html

@@ -0,0 +1 @@
+<router-outlet></router-outlet>

+ 0 - 0
src/app/layout/layout-map/layout-map.component.less


+ 25 - 0
src/app/layout/layout-map/layout-map.component.spec.ts

@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { LayoutMapComponent } from './layout-map.component';
+
+describe('LayoutMapComponent', () => {
+  let component: LayoutMapComponent;
+  let fixture: ComponentFixture<LayoutMapComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ LayoutMapComponent ]
+    })
+    .compileComponents();
+  });
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(LayoutMapComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});

+ 15 - 0
src/app/layout/layout-map/layout-map.component.ts

@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+  selector: 'app-layout-map',
+  templateUrl: './layout-map.component.html',
+  styleUrls: ['./layout-map.component.less']
+})
+export class LayoutMapComponent implements OnInit {
+
+  constructor() { }
+
+  ngOnInit(): void {
+  }
+
+}

+ 1 - 0
src/app/layout/layout-mobile-login/layout-mobile-login.component.html

@@ -0,0 +1 @@
+<p>layout-mobile-login works!</p>

+ 0 - 0
src/app/layout/layout-mobile-login/layout-mobile-login.component.less


+ 25 - 0
src/app/layout/layout-mobile-login/layout-mobile-login.component.spec.ts

@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { LayoutMobileLoginComponent } from './layout-mobile-login.component';
+
+describe('LayoutMobileLoginComponent', () => {
+  let component: LayoutMobileLoginComponent;
+  let fixture: ComponentFixture<LayoutMobileLoginComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ LayoutMobileLoginComponent ]
+    })
+    .compileComponents();
+  });
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(LayoutMobileLoginComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});

+ 15 - 0
src/app/layout/layout-mobile-login/layout-mobile-login.component.ts

@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+  selector: 'app-layout-mobile-login',
+  templateUrl: './layout-mobile-login.component.html',
+  styleUrls: ['./layout-mobile-login.component.less']
+})
+export class LayoutMobileLoginComponent implements OnInit {
+
+  constructor() { }
+
+  ngOnInit(): void {
+  }
+
+}

+ 3 - 0
src/app/layout/layout-mobile/layout-mobile.component.html

@@ -0,0 +1,3 @@
+<!-- 配置一些移动端的配置相关 比如不能缩放等 -->
+<div Button [type]="'primary'">primary</div>
+<router-outlet></router-outlet>

+ 0 - 0
src/app/layout/layout-mobile/layout-mobile.component.less


+ 25 - 0
src/app/layout/layout-mobile/layout-mobile.component.spec.ts

@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { LayoutMobileComponent } from './layout-mobile.component';
+
+describe('LayoutMobileComponent', () => {
+  let component: LayoutMobileComponent;
+  let fixture: ComponentFixture<LayoutMobileComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ LayoutMobileComponent ]
+    })
+    .compileComponents();
+  });
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(LayoutMobileComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});

+ 15 - 0
src/app/layout/layout-mobile/layout-mobile.component.ts

@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+  selector: 'app-layout-mobile',
+  templateUrl: './layout-mobile.component.html',
+  styleUrls: ['./layout-mobile.component.less']
+})
+export class LayoutMobileComponent implements OnInit {
+
+  constructor() { }
+
+  ngOnInit(): void {
+  }
+
+}

+ 34 - 0
src/app/layout/layout-pc-login/layout-pc-login.component.html

@@ -0,0 +1,34 @@
+<img src="./assets/login/img/bg.png" alt="" class="wave" />
+<div class="container">
+  <div class="img">
+    <img src="./assets/login/img/img-3.svg" alt="" />
+  </div>
+  <div class="login-box">
+    <div>
+      <img src="./assets/login/img/avatar.svg" alt="" class="avatar" />
+      <h2>Welcome</h2>
+      <form nz-form [formGroup]="loginForm" (ngSubmit)="submitForm()">
+        <nz-form-item>
+          <nz-form-control nzErrorTip="请输入账号">
+            <input
+              formControlName="userName"
+              nz-input
+              placeholder="请输入账号"
+            />
+          </nz-form-control>
+        </nz-form-item>
+        <nz-form-item>
+          <nz-form-control nzErrorTip="请输入人密码">
+            <input
+              formControlName="passWord"
+              nz-input
+              placeholder="请输入密码"
+            />
+          </nz-form-control>
+        </nz-form-item>
+        <a href="#">忘记密码?</a>
+        <input type="submit" class="btn" value="Login" />
+      </form>
+    </div>
+  </div>
+</div>

+ 147 - 0
src/app/layout/layout-pc-login/layout-pc-login.component.less

@@ -0,0 +1,147 @@
+*{
+    padding: 0;
+    margin: 0;
+    box-sizing: border-box;
+}
+body{
+    font-family: 'Roboto', sans-serif;
+}
+.wave{
+    position: fixed;
+    height: 100%;
+    left: 0;
+    bottom: 0;
+    z-index: -1;
+}
+.container{
+    width: 100vw;
+    height: 100vh;
+    display: grid;
+    grid-template-columns: repeat(2,1fr);
+    grid-gap: 18rem;
+    padding: 0 2rem;
+}
+.img{
+    display: flex;
+    justify-content: flex-end;
+    align-items: center;
+}
+.img img{
+    width: 500px;
+}
+
+.login-box{
+    display: flex;
+    align-items: center;
+    text-align: center;
+}
+form{
+    width: 360px;
+}
+.avatar{
+    width: 100px;
+}
+form h2{
+    font-size: 2.9rem;
+    text-transform: uppercase;
+    margin: 15px 0;
+    color: #999;
+}
+
+.icon{
+    display: flex;
+    justify-content: center;
+    align-items: center;
+}
+.icon i{
+    color: #d9d9d9;
+    transition: .5s;
+}
+.input{
+    position: absolute;
+    width: 100%;
+    height: 100%;
+    top: 0;
+    left: 0;
+    border: none;
+    outline: none;
+    background: none;
+    padding: 0.5rem 0.7rem;
+    font-size: 1.2rem;
+    color: #555;
+    font-family: 'Roboto', sans-serif;
+}
+a{
+    display: block;
+    text-align: right;
+    text-decoration: none;
+    color: #999;
+    font-size: 0.9rem;
+    transition: .3s;
+}
+a:hover{
+    color: #38d39f;
+}
+.btn{
+    display: block;
+    width: 100%;
+    height: 50px;
+    border-radius: 25px;
+    margin: 1rem 0;
+    font-size: 1.2rem;
+    outline: none;
+    border: none;
+    background-image: linear-gradient(to right,#32be8f,#38d39f,#32be8f);
+    cursor: pointer;
+    color: #fff;
+    text-transform: uppercase;
+    font-family: 'Roboto', sans-serif;
+    background-size: 200%;
+    transition: .5s;
+}
+.btn:hover{
+    background-position: right;
+}
+.copyright{
+    position: absolute;
+    width: 100%;
+    height: 50px;
+    bottom: 2px;
+    color: #38d39f;
+    text-align: center;
+    font-size: 18px;
+    font-family: 'Roboto', sans-serif;
+}
+
+/*媒体查询*/
+@media screen and (max-width: 1080px) {
+    .container{
+        grid-gap: 9rem;
+    }
+}
+@media screen and (max-width: 1024px) {
+    form{
+        width: 290px;
+    }
+    form h2{
+        font-size: 2.4rem;
+        margin: 8px 0;
+    }
+    .img img{
+        width: 360px;
+    }
+}
+@media screen and (max-width: 768px) {
+    .wave{
+        display: none;
+    }
+    .img{
+        display: none;
+    }
+    .container{
+        grid-template-columns: 1fr;
+    }
+    .login-box{
+        justify-content: center;
+    }
+}

+ 25 - 0
src/app/layout/layout-pc-login/layout-pc-login.component.spec.ts

@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { LayoutPcLoginComponent } from './layout-pc-login.component';
+
+describe('LayoutPcLoginComponent', () => {
+  let component: LayoutPcLoginComponent;
+  let fixture: ComponentFixture<LayoutPcLoginComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ LayoutPcLoginComponent ]
+    })
+    .compileComponents();
+  });
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(LayoutPcLoginComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});

+ 40 - 0
src/app/layout/layout-pc-login/layout-pc-login.component.ts

@@ -0,0 +1,40 @@
+import { Component, OnInit } from '@angular/core';
+import { FormBuilder, FormGroup, Validators } from '@angular/forms';
+import { Router } from '@angular/router';
+
+@Component({
+  selector: 'app-layout-pc-login',
+  templateUrl: './layout-pc-login.component.html',
+  styleUrls: ['./layout-pc-login.component.less'],
+})
+export class LayoutPcLoginComponent implements OnInit {
+  // 登录表单
+  loginForm!: FormGroup;
+
+  constructor(private fb: FormBuilder, private router: Router) {}
+
+  ngOnInit(): void {
+    // 初始化表单
+    this.loginForm = this.fb.group({
+      userName: [null, [Validators.required]],
+      passWord: [null, [Validators.required]],
+      // remember: [true],
+    });
+  }
+
+  // 点击登录
+  submitForm(): void {
+    for (const i in this.loginForm.controls) {
+      if (this.loginForm.controls.hasOwnProperty(i)) {
+        this.loginForm.controls[i].markAsDirty();
+        this.loginForm.controls[i].updateValueAndValidity();
+      }
+    }
+    console.log(this.loginForm);
+    if (this.loginForm.status === 'INVALID') {
+      console.log('验证不通过');
+    } else {
+      this.router.navigateByUrl('pc');
+    }
+  }
+}

+ 57 - 0
src/app/layout/layout-pc/layout-pc.component.css

@@ -0,0 +1,57 @@
+.body{
+  min-height: 100vh;
+}
+.trigger {
+  font-size: 18px;
+  line-height: 64px;
+  padding: 0 24px;
+  cursor: pointer;
+  transition: color 0.3s;
+}
+
+.trigger:hover {
+  color: #1890ff;
+}
+
+.logo {
+  height: 32px;
+  background: rgba(255, 255, 255, 0.2);
+  margin: 16px;
+}
+
+nz-header {
+  background: #fff;
+  padding: 0;
+  display: flex;
+  flex-direction: row;
+  align-items: center;
+  justify-content: space-between;
+}
+
+.mine-avatar{
+  margin-right: 40px;
+}
+
+nz-content {
+  margin: 0 16px;
+}
+
+nz-breadcrumb {
+  margin: 16px 0;
+}
+
+.inner-content {
+  padding: 24px;
+  background: #fff;
+  min-height: 100%;
+}
+
+nz-footer {
+  text-align: center;
+}
+
+
+/* mine */
+.mine-signout{
+  color: red;
+}

+ 40 - 0
src/app/layout/layout-pc/layout-pc.component.html

@@ -0,0 +1,40 @@
+<nz-layout class="body">
+  <nz-sider nzCollapsible [(nzCollapsed)]="isCollapsed" [nzTrigger]="null">
+    <div class="logo"></div>
+    <ul nz-menu nzTheme="dark" nzMode="inline">
+      <li nz-menu-item>
+        <i nz-icon nzType="users"></i>
+        <span>用户管理</span>
+      </li>
+    </ul>
+  </nz-sider>
+  <nz-layout>
+    <nz-header>
+      <i class="trigger" nz-icon [nzType]="isCollapsed ? 'menu-unfold' : 'menu-fold'"
+        (click)="isCollapsed = !isCollapsed"></i>
+      <span class="mine-avatar">
+        <nz-avatar [nzSize]="40" nzIcon="user" nz-dropdown [nzDropdownMenu]="menu"></nz-avatar>
+      </span>
+      <nz-dropdown-menu #menu="nzDropdownMenu" nzPlacement="bottomLeft">
+        <ul nz-menu>
+          <li nz-menu-item>
+            <button nz-button nzType='link' nzSize='small'>资料</button>
+          </li>
+          <li nz-menu-item>
+            <button nz-button nzType='link' nzSize='small' class="mine-signout" (click)="signOut()">退出</button>
+          </li>
+        </ul>
+      </nz-dropdown-menu>
+    </nz-header>
+    <nz-content>
+      <nz-breadcrumb>
+        <!-- <nz-breadcrumb-item>User</nz-breadcrumb-item>
+        <nz-breadcrumb-item>Bill</nz-breadcrumb-item> -->
+      </nz-breadcrumb>
+      <div class="inner-content">
+        <router-outlet></router-outlet>
+      </div>
+    </nz-content>
+    <nz-footer>Ant Design ©2020 Implement By Angular</nz-footer>
+  </nz-layout>
+</nz-layout>

+ 22 - 0
src/app/layout/layout-pc/layout-pc.component.spec.ts

@@ -0,0 +1,22 @@
+import { fakeAsync, ComponentFixture, TestBed } from '@angular/core/testing';
+import { LayoutPcComponent } from './layout-pc.component';
+
+describe('LayoutPcComponent', () => {
+  let component: LayoutPcComponent;
+  let fixture: ComponentFixture<LayoutPcComponent>;
+
+  beforeEach(fakeAsync(() => {
+    TestBed.configureTestingModule({
+      declarations: [ LayoutPcComponent ]
+    })
+    .compileComponents();
+
+    fixture = TestBed.createComponent(LayoutPcComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  }));
+
+  it('should compile', () => {
+    expect(component).toBeTruthy();
+  });
+});

+ 29 - 0
src/app/layout/layout-pc/layout-pc.component.ts

@@ -0,0 +1,29 @@
+import { Component, OnInit } from '@angular/core';
+import { Router, Route } from '@angular/router';
+
+@Component({
+  selector: 'app-layout-pc',
+  templateUrl: './layout-pc.component.html',
+  styleUrls: ['./layout-pc.component.css'],
+})
+export class LayoutPcComponent implements OnInit {
+  // 菜单展开收起
+  isCollapsed = false;
+
+  constructor(private router: Router) {}
+
+  ngOnInit(): void {
+    console.log('获取菜单配置');
+  }
+
+  // 点击菜单
+  goToPage(url: string): void {
+    console.log(url);
+    this.router.navigateByUrl(url);
+  }
+
+  // 点击退出按钮
+  signOut(): void {
+    this.router.navigate(['/']);
+  }
+}

+ 4 - 0
src/app/layout/布局组件.md

@@ -0,0 +1,4 @@
+ayout-mobile-login -- 移动端登录布局文件
+ayout-mobile       -- 移动端布局文件
+ayout-pc-login     -- pc端登录布局文件
+ayout-pc           -- pc端布局文件

+ 10 - 0
src/app/routes/pc-home/pc-home.component.html

@@ -0,0 +1,10 @@
+<p>pc-home works!</p>
+<svg version="1.1" baseProfile="full" width="100%" height="200" xmlns="http://www.w3.org/2000/svg">
+
+    <rect width="100%" height="100%" fill="#eee" />
+
+    <circle cx="150" cy="80" r="20" fill="green" />
+
+    <text x="150" y="125" font-size="60" text-anchor="middle" fill="white">SVG</text>
+
+</svg>

+ 0 - 0
src/app/routes/pc-home/pc-home.component.less


+ 25 - 0
src/app/routes/pc-home/pc-home.component.spec.ts

@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { PcHomeComponent } from './pc-home.component';
+
+describe('PcHomeComponent', () => {
+  let component: PcHomeComponent;
+  let fixture: ComponentFixture<PcHomeComponent>;
+
+  beforeEach(async () => {
+    await TestBed.configureTestingModule({
+      declarations: [ PcHomeComponent ]
+    })
+    .compileComponents();
+  });
+
+  beforeEach(() => {
+    fixture = TestBed.createComponent(PcHomeComponent);
+    component = fixture.componentInstance;
+    fixture.detectChanges();
+  });
+
+  it('should create', () => {
+    expect(component).toBeTruthy();
+  });
+});

+ 15 - 0
src/app/routes/pc-home/pc-home.component.ts

@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+  selector: 'app-pc-home',
+  templateUrl: './pc-home.component.html',
+  styleUrls: ['./pc-home.component.less']
+})
+export class PcHomeComponent implements OnInit {
+
+  constructor() { }
+
+  ngOnInit(): void {
+  }
+
+}

+ 64 - 0
src/app/routes/routes-routing.module.ts

@@ -0,0 +1,64 @@
+import { NgModule } from '@angular/core';
+import { RouterModule, Routes } from '@angular/router';
+import { FormsModule, ReactiveFormsModule } from '@angular/forms';
+
+// 公共ui组件
+import { ZrrorUi } from '../share/zrror-ui/zrror-ui';
+// 布局组件
+import { LayoutPcComponent } from '../layout/layout-pc/layout-pc.component';
+import { LayoutMobileComponent } from '../layout/layout-mobile/layout-mobile.component';
+import { LayoutPcLoginComponent } from '../layout/layout-pc-login/layout-pc-login.component';
+import { LayoutMobileLoginComponent } from '../layout/layout-mobile-login/layout-mobile-login.component';
+
+// pc 组件
+import { PcHomeComponent } from './pc-home/pc-home.component';
+
+// antd mobile
+import { NgZorroAntdMobileModule } from 'ng-zorro-antd-mobile';
+
+// 路由守卫
+import { AuthGuard } from '../share/canactivate/auth.guard';
+import { AuthAllGuard } from '../share/canactivate/auth-all.guard';
+
+const routes: Routes = [
+  {
+    path: '',
+    component: LayoutPcLoginComponent,
+    canActivate: [AuthGuard],
+  },
+  {
+    path: 'pc',
+    component: LayoutPcComponent,
+    canActivate: [AuthAllGuard],
+    children: [
+      {
+        path: '',
+        component: PcHomeComponent,
+      },
+      // {
+      //   path: 'role',
+      //   loadChildren:()=>import('./pc-role/pc-role.module').then(mod=>mod.PcRoleModule)
+      // },
+    ],
+  },
+];
+
+@NgModule({
+  declarations: [
+    LayoutPcComponent,
+    LayoutPcLoginComponent,
+    LayoutMobileComponent,
+    LayoutMobileLoginComponent,
+    PcHomeComponent,
+  ],
+  imports: [
+    RouterModule.forChild(routes),
+    NgZorroAntdMobileModule,
+    // 表单组件
+    FormsModule,
+    ReactiveFormsModule,
+    ...ZrrorUi.uiArr,
+  ],
+  exports: [RouterModule],
+})
+export class RoutesRoutingModule {}

+ 14 - 0
src/app/routes/routes.module.ts

@@ -0,0 +1,14 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+
+import { RoutesRoutingModule } from './routes-routing.module';
+
+
+@NgModule({
+  imports: [
+    CommonModule,
+    RoutesRoutingModule,
+  ],
+  declarations: [],
+})
+export class RoutesModule { }

+ 48 - 0
src/app/share/canactivate/auth-all.guard.ts

@@ -0,0 +1,48 @@
+import { Injectable } from '@angular/core';
+import {
+  CanActivate,
+  CanActivateChild,
+  CanDeactivate,
+  CanLoad,
+  Route,
+  UrlSegment,
+  ActivatedRouteSnapshot,
+  RouterStateSnapshot,
+  UrlTree
+} from '@angular/router';
+import { Observable } from 'rxjs';
+import { NzMessageService } from 'ng-zorro-antd/message';
+
+
+@Injectable({
+  providedIn: 'root'
+})
+export class AuthAllGuard implements CanActivate, CanActivateChild, CanDeactivate<unknown>, CanLoad {
+  constructor(private message: NzMessageService) { }
+  canActivate(
+    route: ActivatedRouteSnapshot,
+    state: RouterStateSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree {
+    // this.message.info('是否允许进入路由');
+    return true;
+  }
+  canActivateChild(
+    childRoute: ActivatedRouteSnapshot,
+    state: RouterStateSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree {
+    // this.message.info('等同 canActivate,只不过针对是所有子路由。');
+    return true;
+  }
+  canDeactivate(
+    component: unknown,
+    currentRoute: ActivatedRouteSnapshot,
+    currentState: RouterStateSnapshot,
+    nextState?: RouterStateSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree {
+    // this.message.info('控制是否允许离开路由');
+    return true;
+  }
+  canLoad(
+    route: Route,
+    segments: UrlSegment[]): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree {
+    // this.message.info('是否延迟加载整个模块');
+    return true;
+  }
+}

+ 19 - 0
src/app/share/canactivate/auth.guard.ts

@@ -0,0 +1,19 @@
+import { Injectable } from '@angular/core';
+import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree } from '@angular/router';
+import { Observable } from 'rxjs';
+import { NzMessageService } from 'ng-zorro-antd/message';
+
+@Injectable({
+  providedIn: 'root'
+})
+export class AuthGuard implements CanActivate {
+
+  constructor(private message: NzMessageService) { }
+  canActivate(
+    route: ActivatedRouteSnapshot,
+    state: RouterStateSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree {
+    // 判断登录逻辑
+    this.message.info('判断登录逻辑');
+    return true;
+  }
+}

+ 0 - 0
src/app/share/canactivate/路由守卫模块.md


+ 24 - 0
src/app/share/http/http.interceptor.ts

@@ -0,0 +1,24 @@
+import { Injectable } from '@angular/core';
+import {
+  HttpEvent,
+  HttpInterceptor,
+  HttpHandler,
+  HttpRequest,
+} from '@angular/common/http';
+
+import { Observable } from 'rxjs';
+
+/** Pass untouched request through to the next request handler. */
+@Injectable()
+export class NoopInterceptor implements HttpInterceptor {
+  intercept(
+    req: HttpRequest<any>,
+    next: HttpHandler
+  ): Observable<HttpEvent<any>> {
+    console.log(req);
+    let resetReq = req.clone({
+      headers: req.headers.set('Access-Control-Allow-Origin','*')
+    })
+    return next.handle(resetReq);
+  }
+}

+ 26 - 0
src/app/share/http/http.ts

@@ -0,0 +1,26 @@
+import { Injectable } from '@angular/core';
+import { HttpClient, HttpHeaders } from '@angular/common/http';
+
+@Injectable({
+  providedIn: 'root',
+})
+export class HttpService {
+  constructor(private http: HttpClient) {}
+
+  public get(url: string) {
+    return new Promise((resole, reject) => {
+      this.http.get('/map/ws/place/v1/search').subscribe(
+        (res) => {
+          console.log(res, 1111);
+          resole(res);
+        },
+        (err) => {
+          console.log(err);
+          reject(err.message);
+        }
+      );
+    });
+  }
+}
+
+

+ 0 - 0
src/app/share/http/网络请求


+ 0 - 0
src/app/share/operation/公共运算.md


+ 49 - 0
src/app/share/zrror-ui/zrror-ui.ts

@@ -0,0 +1,49 @@
+// 布局
+import { NzLayoutModule } from 'ng-zorro-antd/layout';
+// 评分
+import { NzRateModule } from 'ng-zorro-antd/rate';
+// 面包屑
+import { NzBreadCrumbModule } from 'ng-zorro-antd/breadcrumb';
+// icon
+import { NzIconModule } from 'ng-zorro-antd/icon';
+// 导航菜单
+import { NzMenuModule } from 'ng-zorro-antd/menu';
+// 全局提示
+import { NzMessageModule } from 'ng-zorro-antd/message';
+// 表单
+import { NzFormModule } from 'ng-zorro-antd/form';
+// 按钮
+import { NzButtonModule } from 'ng-zorro-antd/button';
+// 输入框
+import { NzInputModule } from 'ng-zorro-antd/input';
+// 头像
+import { NzAvatarModule } from 'ng-zorro-antd/avatar';
+// 下拉菜单
+import { NzDropDownModule } from 'ng-zorro-antd/dropdown';
+// 选择
+import { NzCheckboxModule } from 'ng-zorro-antd/checkbox';
+// table
+import { NzTableModule } from 'ng-zorro-antd/table';
+// 栅格样式
+import { NzGridModule } from 'ng-zorro-antd/grid';
+
+// 公共引入ui组件类
+export class ZrrorUi {
+  // 引入的ui组件
+  static uiArr: any = [
+    NzRateModule,
+    NzLayoutModule,
+    NzBreadCrumbModule,
+    NzIconModule,
+    NzMenuModule,
+    NzMessageModule,
+    NzFormModule,
+    NzButtonModule,
+    NzInputModule,
+    NzAvatarModule,
+    NzDropDownModule,
+    NzCheckboxModule,
+    NzTableModule,
+    NzGridModule
+  ];
+}

+ 0 - 0
src/app/share/zrror-ui/引入ui组件类.md


+ 0 - 0
src/app/share/公共模块.md


+ 0 - 0
src/assets/.gitkeep


+ 29 - 0
src/assets/login/img/avatar.svg

@@ -0,0 +1,29 @@
+<svg id="e59edb86-a3bc-4694-8aac-31e565ca5cfc" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="676"
+     height="676" viewBox="0 0 676 676">
+    <title>male_avatar</title>
+    <path d="M938,450a336.852,336.852,0,0,1-27.22,133.1L909.66,585.68A338.559,338.559,0,0,1,541.35,782.93q-3.045-.54-6.08-1.12a334.98111,334.98111,0,0,1-61.14-18.03q-4.815-1.935-9.56-4.01c-2.16-.94-4.32-1.91-6.46-2.91A338.41424,338.41424,0,0,1,262,450c0-186.67,151.33-338,338-338S938,263.33,938,450Z"
+          transform="translate(-262 -112)" fill="#00bfa6"/>
+    <path d="M541.35,782.93q-3.045-.54-6.08-1.12c-1.32-38.31-5.85-116.94-21.30005-199.29C505.52,537.45,493.79,491.25,477.52,449.95a412.60387,412.60387,0,0,0-19.07-41.84c-16.44-31.05-36.38-57.19-60.56-74.9l3.56-4.86q30.165,22.11,54.22,62.08,7.215,11.97,13.86005,25.54,7.125,14.52,13.59,30.83,4.125,10.38,7.97,21.48,16.74,48.195,28.46,109.98,2.59506,13.65,4.94,27.97C536.6,680.2,540.25,748.59,541.35,782.93Z"
+          transform="translate(-262 -112)" opacity="0.2"/>
+    <path d="M464.57,759.77c-2.16-.94-4.32-1.91-6.46-2.91-2.09-22.7-5.93-50.86-12.95-77.59A254.55666,254.55666,0,0,0,433.35,644.07c-8.01-18.75-18.38-34.69-31.79-44.52l3.56-4.85c14.04,10.28,24.87,26.53,33.24,45.54,9.43,21.42,15.72,46.35,19.91,70.17C461.38,728.1,463.34,745.19,464.57,759.77Z"
+          transform="translate(-262 -112)" opacity="0.2"/>
+    <circle cx="102.26174" cy="190.98167" r="30.08857" opacity="0.2"/>
+    <circle cx="111.9514" cy="449.99083" r="30.08857" opacity="0.2"/>
+    <path d="M483.71449,353.52139c-6.38046,35.99732,7.70456,68.59225,7.70456,68.59225s24.42979-25.76825,30.81025-61.76557-7.70457-68.59225-7.70457-68.59225S490.09494,317.52407,483.71449,353.52139Z"
+          transform="translate(-262 -112)" opacity="0.2"/>
+    <path d="M383.71766,438.97122c34.33494,12.555,68.83676,4.498,68.83676,4.498s-21.16612-28.41279-55.50106-40.96784-68.83675-4.498-68.83675-4.498S349.38272,426.41617,383.71766,438.97122Z"
+          transform="translate(-262 -112)" opacity="0.2"/>
+    <path d="M377.89534,668.333c24.066,8.80008,48.28314,3.0594,48.28314,3.0594S411.37687,651.384,387.31086,642.5839s-48.28314-3.0594-48.28314-3.0594S353.82933,659.53292,377.89534,668.333Z"
+          transform="translate(-262 -112)" opacity="0.2"/>
+    <circle cx="337.30608" cy="281.0788" r="131.77014" fill="#d0cde1"/>
+    <path d="M547.83337,493.96531s16.47127,78.23852,16.47127,86.47415,78.23852,45.296,78.23852,45.296L712.546,613.382,737.253,539.26129s-41.17817-61.76725-41.17817-86.47415Z"
+          transform="translate(-262 -112)" fill="#d0cde1"/>
+    <path d="M910.78,583.1,909.66,585.68A338.559,338.559,0,0,1,541.35,782.93q-3.045-.54-6.08-1.12a334.98111,334.98111,0,0,1-61.14-18.03q-4.815-1.935-9.56-4.01c-2.16-.94-4.32-1.91-6.46-2.91a337.59273,337.59273,0,0,1-55.25-32.28l-15.62-45.31,8.78-6.69995,18.06-13.79,19.27-14.71,5.01-3.83,75.61-57.72,5.58-4.26,39.3-30,.01-.01s42.5,69.25,104.27,48.66,60.42-79.63,60.42-79.63Z"
+          transform="translate(-262 -112)" fill="#2f2e41"/>
+    <path d="M485.03538,286.916s41.83653-90.64581,122.02321-69.72755,125.50958,52.29566,128.996,83.67306-1.74319,78.44348-1.74319,78.44348-8.716-64.498-64.498-50.55247-142.94147,3.48638-142.94147,3.48638L512.9264,457.74849s-15.6887-22.66145-33.12058-8.71594S429.25335,314.807,485.03538,286.916Z"
+          transform="translate(-262 -112)" fill="#2f2e41"/>
+    <path d="M474.13,763.78q-4.815-1.935-9.56-4.01c-2.16-.94-4.32-1.91-6.46-2.91a338.835,338.835,0,0,1-87.59-58.7c9.19-12.52,16.72-18.89,16.72-18.89h61.77l9.26,31.14Z"
+          transform="translate(-262 -112)" fill="#2f2e41"/>
+    <path d="M856.67,576.32l52.99,9.36A337.94434,337.94434,0,0,1,852.9,674.25Z" transform="translate(-262 -112)"
+          fill="#2f2e41"/>
+</svg>

TEMPAT SAMPAH
src/assets/login/img/bg.png


File diff ditekan karena terlalu besar
+ 0 - 0
src/assets/login/img/img-3.svg


+ 3 - 0
src/environments/environment.prod.ts

@@ -0,0 +1,3 @@
+export const environment = {
+  production: true
+};

+ 16 - 0
src/environments/environment.ts

@@ -0,0 +1,16 @@
+// This file can be replaced during build by using the `fileReplacements` array.
+// `ng build --prod` replaces `environment.ts` with `environment.prod.ts`.
+// The list of file replacements can be found in `angular.json`.
+
+export const environment = {
+  production: false
+};
+
+/*
+ * For easier debugging in development mode, you can import the following file
+ * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`.
+ *
+ * This import should be commented out in production mode because it will have a negative impact
+ * on performance if an error is thrown.
+ */
+// import 'zone.js/dist/zone-error';  // Included with Angular CLI.

TEMPAT SAMPAH
src/favicon.ico


+ 18 - 0
src/index.html

@@ -0,0 +1,18 @@
+<!doctype html>
+<html lang="en">
+
+<head>
+  <meta charset="utf-8">
+  <title>Learn</title>
+  <base href="/">
+  <meta name="viewport" content="width=device-width, initial-scale=1">
+  <link rel="icon" type="image/x-icon" href="favicon.ico">
+  <!--引入Javascript API GL,参数说明参见下文-->
+  <script src="https://map.qq.com/api/gljs?v=2.exp&key=QTABZ-C24K5-R4QIK-QK56V-GBXO3-TKB2U"></script>
+</head>
+
+<body>
+  <app-root></app-root>
+</body>
+
+</html>

+ 23 - 0
src/main.ts

@@ -0,0 +1,23 @@
+import { enableProdMode } from '@angular/core';
+import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
+
+import { AppModule } from './app/app.module';
+import { environment } from './environments/environment';
+
+if (environment.production) {
+  enableProdMode();
+}
+
+platformBrowserDynamic().bootstrapModule(AppModule)
+  .catch(err => console.error(err));
+
+// console.log(window.navigator.userAgent, window.navigator.userAgent.match(/(phone)/i));
+
+// 每次刷新都会运行
+// if (window.navigator.userAgent.match(/(phone|iPad|Android)/i)) {
+//   console.log('Mobile端');
+//   window.location.hash = '/mobile';
+// } else {
+//   console.log('PC端');
+//   window.location.hash = '/pc';
+// }

+ 65 - 0
src/polyfills.ts

@@ -0,0 +1,65 @@
+/**
+ * This file includes polyfills needed by Angular and is loaded before the app.
+ * You can add your own extra polyfills to this file.
+ *
+ * This file is divided into 2 sections:
+ *   1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
+ *   2. Application imports. Files imported after ZoneJS that should be loaded before your main
+ *      file.
+ *
+ * The current setup is for so-called "evergreen" browsers; the last versions of browsers that
+ * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
+ * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
+ *
+ * Learn more in https://angular.io/guide/browser-support
+ */
+
+/***************************************************************************************************
+ * BROWSER POLYFILLS
+ */
+
+/**
+ * IE11 requires the following for NgClass support on SVG elements
+ */
+// import 'classlist.js';  // Run `npm install --save classlist.js`.
+
+/**
+ * Web Animations `@angular/platform-browser/animations`
+ * Only required if AnimationBuilder is used within the application and using IE/Edge or Safari.
+ * Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0).
+ */
+// import 'web-animations-js';  // Run `npm install --save web-animations-js`.
+
+/**
+ * By default, zone.js will patch all possible macroTask and DomEvents
+ * user can disable parts of macroTask/DomEvents patch by setting following flags
+ * because those flags need to be set before `zone.js` being loaded, and webpack
+ * will put import in the top of bundle, so user need to create a separate file
+ * in this directory (for example: zone-flags.ts), and put the following flags
+ * into that file, and then add the following code before importing zone.js.
+ * import './zone-flags';
+ *
+ * The flags allowed in zone-flags.ts are listed here.
+ *
+ * The following flags will work for all browsers.
+ *
+ * (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
+ * (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
+ * (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
+ *
+ *  in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
+ *  with the following flag, it will bypass `zone.js` patch for IE/Edge
+ *
+ *  (window as any).__Zone_enable_cross_context_check = true;
+ *
+ */
+
+/***************************************************************************************************
+ * Zone JS is required by default for Angular itself.
+ */
+import 'zone.js/dist/zone';  // Included with Angular CLI.
+
+
+/***************************************************************************************************
+ * APPLICATION IMPORTS
+ */

+ 1 - 0
src/styles.less

@@ -0,0 +1 @@
+/* You can add global styles to this file, and also import other style files */

+ 25 - 0
src/test.ts

@@ -0,0 +1,25 @@
+// This file is required by karma.conf.js and loads recursively all the .spec and framework files
+
+import 'zone.js/dist/zone-testing';
+import { getTestBed } from '@angular/core/testing';
+import {
+  BrowserDynamicTestingModule,
+  platformBrowserDynamicTesting
+} from '@angular/platform-browser-dynamic/testing';
+
+declare const require: {
+  context(path: string, deep?: boolean, filter?: RegExp): {
+    keys(): string[];
+    <T>(id: string): T;
+  };
+};
+
+// First, initialize the Angular testing environment.
+getTestBed().initTestEnvironment(
+  BrowserDynamicTestingModule,
+  platformBrowserDynamicTesting()
+);
+// Then we find all the tests.
+const context = require.context('./', true, /\.spec\.ts$/);
+// And load the modules.
+context.keys().map(context);

+ 15 - 0
tsconfig.app.json

@@ -0,0 +1,15 @@
+/* To learn more about this file see: https://angular.io/config/tsconfig. */
+{
+  "extends": "./tsconfig.json",
+  "compilerOptions": {
+    "outDir": "./out-tsc/app",
+    "types": []
+  },
+  "files": [
+    "src/main.ts",
+    "src/polyfills.ts"
+  ],
+  "include": [
+    "src/**/*.d.ts"
+  ]
+}

+ 21 - 0
tsconfig.json

@@ -0,0 +1,21 @@
+/* To learn more about this file see: https://angular.io/config/tsconfig. */
+{
+  "compileOnSave": false,
+  "compilerOptions": {
+    "baseUrl": "./",
+    "outDir": "./dist/out-tsc",
+    "sourceMap": true,
+    "declaration": false,
+    "downlevelIteration": true,
+    "experimentalDecorators": true,
+    "moduleResolution": "node",
+    "importHelpers": true,
+    "target": "es2015",
+    "module": "es2020",
+    "lib": ["es2018", "dom"]
+  },
+  "angularCompilerOptions": {
+    "enableI18nLegacyMessageIdFormat": false,
+    "strictTemplates": true
+  }
+}

+ 18 - 0
tsconfig.spec.json

@@ -0,0 +1,18 @@
+/* To learn more about this file see: https://angular.io/config/tsconfig. */
+{
+  "extends": "./tsconfig.json",
+  "compilerOptions": {
+    "outDir": "./out-tsc/spec",
+    "types": [
+      "jasmine"
+    ]
+  },
+  "files": [
+    "src/test.ts",
+    "src/polyfills.ts"
+  ],
+  "include": [
+    "src/**/*.spec.ts",
+    "src/**/*.d.ts"
+  ]
+}

+ 152 - 0
tslint.json

@@ -0,0 +1,152 @@
+{
+  "extends": "tslint:recommended",
+  "rulesDirectory": [
+    "codelyzer"
+  ],
+  "rules": {
+    "align": {
+      "options": [
+        "parameters",
+        "statements"
+      ]
+    },
+    "array-type": false,
+    "arrow-return-shorthand": true,
+    "curly": true,
+    "deprecation": {
+      "severity": "warning"
+    },
+    "eofline": true,
+    "import-blacklist": [
+      true,
+      "rxjs/Rx"
+    ],
+    "import-spacing": true,
+    "indent": {
+      "options": [
+        "spaces"
+      ]
+    },
+    "max-classes-per-file": false,
+    "max-line-length": [
+      true,
+      140
+    ],
+    "member-ordering": [
+      true,
+      {
+        "order": [
+          "static-field",
+          "instance-field",
+          "static-method",
+          "instance-method"
+        ]
+      }
+    ],
+    "no-console": [
+      true,
+      "debug",
+      "info",
+      "time",
+      "timeEnd",
+      "trace"
+    ],
+    "no-empty": false,
+    "no-inferrable-types": [
+      true,
+      "ignore-params"
+    ],
+    "no-non-null-assertion": true,
+    "no-redundant-jsdoc": true,
+    "no-switch-case-fall-through": true,
+    "no-var-requires": false,
+    "object-literal-key-quotes": [
+      true,
+      "as-needed"
+    ],
+    "quotemark": [
+      true,
+      "single"
+    ],
+    "semicolon": {
+      "options": [
+        "always"
+      ]
+    },
+    "space-before-function-paren": {
+      "options": {
+        "anonymous": "never",
+        "asyncArrow": "always",
+        "constructor": "never",
+        "method": "never",
+        "named": "never"
+      }
+    },
+    "typedef": [
+      true,
+      "call-signature"
+    ],
+    "typedef-whitespace": {
+      "options": [
+        {
+          "call-signature": "nospace",
+          "index-signature": "nospace",
+          "parameter": "nospace",
+          "property-declaration": "nospace",
+          "variable-declaration": "nospace"
+        },
+        {
+          "call-signature": "onespace",
+          "index-signature": "onespace",
+          "parameter": "onespace",
+          "property-declaration": "onespace",
+          "variable-declaration": "onespace"
+        }
+      ]
+    },
+    "variable-name": {
+      "options": [
+        "ban-keywords",
+        "check-format",
+        "allow-pascal-case"
+      ]
+    },
+    "whitespace": {
+      "options": [
+        "check-branch",
+        "check-decl",
+        "check-operator",
+        "check-separator",
+        "check-type",
+        "check-typecast"
+      ]
+    },
+    "component-class-suffix": true,
+    "contextual-lifecycle": true,
+    "directive-class-suffix": true,
+    "no-conflicting-lifecycle": true,
+    "no-host-metadata-property": true,
+    "no-input-rename": true,
+    "no-inputs-metadata-property": true,
+    "no-output-native": true,
+    "no-output-on-prefix": true,
+    "no-output-rename": true,
+    "no-outputs-metadata-property": true,
+    "template-banana-in-box": true,
+    "template-no-negated-async": true,
+    "use-lifecycle-interface": true,
+    "use-pipe-transform-interface": true,
+    "directive-selector": [
+      true,
+      "attribute",
+      "app",
+      "camelCase"
+    ],
+    "component-selector": [
+      true,
+      "element",
+      "app",
+      "kebab-case"
+    ]
+  }
+}

Beberapa file tidak ditampilkan karena terlalu banyak file yang berubah dalam diff ini