You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
756 B
16 lines
756 B
5 months ago
|
<crud-template #$crud [defination]="defination" [addable]="false"[editable]="true" [api]="'routestatus'" [selectable]="false"
|
||
|
[deletable]="false" [error]="error">
|
||
|
<!-- 设置Text只读 -->
|
||
|
<ng-template #$id let-form>
|
||
|
<mat-form-field [formGroup]="form">
|
||
|
<mat-label>{{ 'routes.wcs.routestatus.id' | translate }}</mat-label>
|
||
|
<input matInput formControlName="id" readonly>
|
||
|
</mat-form-field>
|
||
|
</ng-template>
|
||
|
<ng-template #$routeName let-form>
|
||
|
<mat-form-field [formGroup]="form">
|
||
|
<mat-label>{{ 'routes.wcs.routestatus.routeName' | translate }}</mat-label>
|
||
|
<input matInput formControlName="routeName" readonly>
|
||
|
</mat-form-field>
|
||
|
</ng-template>
|
||
|
</crud-template>
|