diff --git a/src/views/trials/trials-list/components/SignForm.vue b/src/views/trials/trials-list/components/SignForm.vue index fd09314..fee4a56 100644 --- a/src/views/trials/trials-list/components/SignForm.vue +++ b/src/views/trials/trials-list/components/SignForm.vue @@ -124,7 +124,7 @@ export default { .sign-form-footer{ margin-top: 10px; text-align: right; - position: absolute; + // position: absolute; } } diff --git a/src/views/trials/trials-list/index.vue b/src/views/trials/trials-list/index.vue index d596f4d..16269d2 100644 --- a/src/views/trials/trials-list/index.vue +++ b/src/views/trials/trials-list/index.vue @@ -454,29 +454,31 @@ export default { }, // 状态 handleStatus(row) { - if (row.TrialStatusStr === "Initializing") { - this.listLoading = true; - ifTrialCanOngoing(row.Id) - .then((res) => { - this.listLoading = false; - if (res.Result) { - this.currentRow = { ...row }; - this.statusVisible = true; - } else { - this.$confirm(res.ErrorMessage, { - type: "warning", - showCancelButton: false, - callback: (action) => {}, - }); - } - }) - .catch(() => { - this.listLoading = false; - }); - } else { - this.currentRow = { ...row }; - this.statusVisible = true; - } + // if (row.TrialStatusStr === "Initializing") { + // this.listLoading = true; + // ifTrialCanOngoing(row.Id) + // .then((res) => { + // this.listLoading = false; + // if (res.Result) { + // this.currentRow = { ...row }; + // this.statusVisible = true; + // } else { + // this.$confirm(res.ErrorMessage, { + // type: "warning", + // showCancelButton: false, + // callback: (action) => {}, + // }); + // } + // }) + // .catch(() => { + // this.listLoading = false; + // }); + // } else { + // this.currentRow = { ...row }; + // this.statusVisible = true; + // } + this.currentRow = { ...row }; + this.statusVisible = true; }, closeStatusDialog() { this.statusVisible = false;