签名框样式更改

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{ .sign-form-footer{
margin-top: 10px; margin-top: 10px;
text-align: right; text-align: right;
position: absolute; // position: absolute;
} }
} }
</style> </style>

View File

@ -454,29 +454,31 @@ export default {
}, },
// //
handleStatus(row) { handleStatus(row) {
if (row.TrialStatusStr === "Initializing") { // if (row.TrialStatusStr === "Initializing") {
this.listLoading = true; // this.listLoading = true;
ifTrialCanOngoing(row.Id) // ifTrialCanOngoing(row.Id)
.then((res) => { // .then((res) => {
this.listLoading = false; // this.listLoading = false;
if (res.Result) { // 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.currentRow = { ...row };
this.statusVisible = true; 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;
}
}, },
closeStatusDialog() { closeStatusDialog() {
this.statusVisible = false; this.statusVisible = false;