签名框样式更改

main
wangxiaoshuang 2024-04-12 13:30:20 +08:00
parent 587c37cb9c
commit cb35cfd173
2 changed files with 26 additions and 24 deletions

View File

@ -124,7 +124,7 @@ export default {
.sign-form-footer{
margin-top: 10px;
text-align: right;
position: absolute;
// position: absolute;
}
}
</style>

View File

@ -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;