mirror of
https://gitee.com/dromara/MaxKey.git
synced 2025-12-06 17:08:29 +08:00
oauth2-approve
This commit is contained in:
parent
81d6bc3198
commit
a129899acc
@ -14,7 +14,6 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
|
||||
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, OnInit, Inject, OnDestroy, Optional } from '@angular/core';
|
||||
import { AbstractControl, FormBuilder, FormGroup, Validators } from '@angular/forms';
|
||||
import { Router, ActivatedRoute } from '@angular/router';
|
||||
@ -40,7 +39,9 @@ export class Oauth2ApproveComponent implements OnInit {
|
||||
};
|
||||
} = {
|
||||
submitting: false,
|
||||
model: {}
|
||||
model: {
|
||||
approval_prompt: 'force'
|
||||
}
|
||||
};
|
||||
redirect_uri: string = '';
|
||||
formGroup: FormGroup = new FormGroup({});
|
||||
@ -76,7 +77,9 @@ export class Oauth2ApproveComponent implements OnInit {
|
||||
//if (this.formGroup.valid) {
|
||||
this.oauth2ApproveService.approval(this.form.model).subscribe(res => {
|
||||
if (res.code == 0) {
|
||||
if (this.form.model.approval_prompt == 'force') {
|
||||
this.msg.success(`提交成功`);
|
||||
}
|
||||
window.location.href = res.data;
|
||||
} else {
|
||||
this.msg.success(`提交失败`);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user