Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop

This commit is contained in:
Taric Xin
2022-01-10 20:10:48 +08:00
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,11 @@
<!--
* @Author: your name
* @Date: 2022-01-10 19:33:37
* @LastEditTime: 2022-01-10 19:56:52
* @LastEditors: your name
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \tms-obc-web\src\app\routes\passport\components\login\login.component.html
-->
<div class="body-box">
<div></div>
<div>
@ -46,7 +54,7 @@
</ng-template>
<ng-template sf-template="smsCode" let-me let-ui="ui" let-schema="schema">
<nz-input-group nzSearch [nzSuffix]="suffixTemplateInfo">
<input nz-input type="text" placeholder="验证码" [attr.id]="me.id" [disabled]="me.disabled"
<input nz-input type="text" [maxLength]="6" placeholder="验证码" [attr.id]="me.id" [disabled]="me.disabled"
[attr.disabled]="me.disabled" [nzSize]="ui.size" [ngModel]="me.formProperty.value"
(ngModelChange)="me.setValue($event)" (keyup.enter)="submit()" />
</nz-input-group>

View File

@ -27,7 +27,7 @@ export class SystemStaffStaffModalComponent implements OnInit {
staffName: {
title: '员工姓名',
type: 'string',
maxLength: 32,
maxLength: 11,
ui: { widget: staff?.appUserId ? 'text' : 'string', placeholder: '请输入员工姓名' },
default: staff.name
},