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.

19 lines
491 B

  1. <form #form="ngForm">
  2. <div>
  3. 單價:<input
  4. type="text"
  5. name="price"
  6. #price="ngModel"
  7. ngModel
  8. appDecimalValidator
  9. [digitLength]="2"
  10. [scaleLength]="1"
  11. />
  12. <ng-container *ngIf="price.touched">
  13. <span *ngIf="price.hasError('decimal')">
  14. 單價應為 {{ price.errors?.decimal.digitLength }} 位整數位與
  15. {{ price.errors?.decimal.scaleLength }} 位整數位的數值
  16. </span>
  17. </ng-container>
  18. </div>
  19. </form>