签名框样式更改
parent
587c37cb9c
commit
cb35cfd173
|
@ -124,7 +124,7 @@ export default {
|
|||
.sign-form-footer{
|
||||
margin-top: 10px;
|
||||
text-align: right;
|
||||
position: absolute;
|
||||
// position: absolute;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -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) {
|
||||
// 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;
|
||||
} else {
|
||||
this.$confirm(res.ErrorMessage, {
|
||||
type: "warning",
|
||||
showCancelButton: false,
|
||||
callback: (action) => {},
|
||||
});
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
this.listLoading = false;
|
||||
});
|
||||
} else {
|
||||
this.currentRow = { ...row };
|
||||
this.statusVisible = true;
|
||||
}
|
||||
},
|
||||
closeStatusDialog() {
|
||||
this.statusVisible = false;
|
||||
|
|
Loading…
Reference in New Issue