摘要:
ng g c shared/identity-input ng g c shared/area-list 1,添加领域对象 export enum IdentityType { IdCard = 0, Insurance, Passport, Militory, Other } export int 阅读全文
摘要:
ng g c shared/chips-list 用的chips控件。 1,完成自动建议表单控件模板。 <div [formGroup]="form" class="full-width"> <span>{{label}}</span> <mat-chip-list aria-label="Fish 阅读全文
摘要:
一、Property propDD has no initializer and is not definitely assigned in the constructor 1、object类型 解决方案 检测报错代码 @Prop() propDD: object; 修改后 方式一 @Prop({ 阅读全文
摘要:
ng g s services/auth 1,领域对象中增加Auth对象。 基于token的认证。 import { User } from './user.model'; import { Err } from './error.model'; export interface Auth { us 阅读全文