批量审核
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* @Author: your name
|
||||
* @Date: 2021-11-29 13:50:46
|
||||
* @LastEditTime: 2022-01-18 16:34:46
|
||||
* @LastEditTime: 2022-01-18 16:37:42
|
||||
* @LastEditors: Please set LastEditors
|
||||
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
||||
* @FilePath: \tms-obc-web\src\app\routes\account\components\edit\edit.component.ts
|
||||
@ -57,7 +57,6 @@ export class AccountComponentsCenterEditComponent implements OnInit {
|
||||
|
||||
ngOnInit() {
|
||||
this.initForm();
|
||||
console.log(this.record.phone)
|
||||
}
|
||||
initForm () {
|
||||
this.validateForm = this.fb.group({
|
||||
@ -77,7 +76,6 @@ export class AccountComponentsCenterEditComponent implements OnInit {
|
||||
}
|
||||
getCaptcha(e: MouseEvent): void {
|
||||
this.service.request(this.service.$api_get_current_user_smVerification).subscribe(res => {
|
||||
console.log(res);
|
||||
// code==503046 弹出网易盾
|
||||
if (res && res.code === '1') {
|
||||
this.service.msgSrv.success('发送成功');
|
||||
@ -93,13 +91,9 @@ export class AccountComponentsCenterEditComponent implements OnInit {
|
||||
this.service.msgSrv.warning('必填项为空或格式错误,请检查!')
|
||||
return;
|
||||
}
|
||||
console.log(this.validateForm)
|
||||
console.log(this.validateForm.value)
|
||||
const params = {
|
||||
...this.validateForm.value
|
||||
};
|
||||
console.log(params)
|
||||
|
||||
this.service.request(this.service.$api_set_phoneUpdatePassword, params).subscribe((res) => {
|
||||
if (res) {
|
||||
this.service.msgSrv.success('修改密码成功!');
|
||||
|
||||
Reference in New Issue
Block a user