|
@@ -193,16 +193,18 @@ export default {
|
|
getExecuteFeedback() {
|
|
getExecuteFeedback() {
|
|
dynamicExecuteFeedback('', res => {
|
|
dynamicExecuteFeedback('', res => {
|
|
this.allApplyClose()
|
|
this.allApplyClose()
|
|
- this.isPending = false;
|
|
|
|
let response = res.Content[0]
|
|
let response = res.Content[0]
|
|
if (response.Completed == 'Processing') {
|
|
if (response.Completed == 'Processing') {
|
|
this.isPending = true;
|
|
this.isPending = true;
|
|
this.tipsType = 0;
|
|
this.tipsType = 0;
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
this.getExecuteFeedback()
|
|
this.getExecuteFeedback()
|
|
- }, 2000)
|
|
|
|
|
|
+ }, 2500)
|
|
} else {
|
|
} else {
|
|
- this.getPrompt()
|
|
|
|
|
|
+ setTimeout(() => {
|
|
|
|
+ this.isPending = false;
|
|
|
|
+ this.getPrompt()
|
|
|
|
+ }, 2500)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|