签名框样式更改
parent
587c37cb9c
commit
cb35cfd173
|
@ -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>
|
||||||
|
|
|
@ -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.currentRow = { ...row };
|
||||||
this.statusVisible = true;
|
// this.statusVisible = true;
|
||||||
} else {
|
// } else {
|
||||||
this.$confirm(res.ErrorMessage, {
|
// this.$confirm(res.ErrorMessage, {
|
||||||
type: "warning",
|
// type: "warning",
|
||||||
showCancelButton: false,
|
// showCancelButton: false,
|
||||||
callback: (action) => {},
|
// callback: (action) => {},
|
||||||
});
|
// });
|
||||||
}
|
// }
|
||||||
})
|
// })
|
||||||
.catch(() => {
|
// .catch(() => {
|
||||||
this.listLoading = false;
|
// this.listLoading = false;
|
||||||
});
|
// });
|
||||||
} else {
|
// } else {
|
||||||
this.currentRow = { ...row };
|
// this.currentRow = { ...row };
|
||||||
this.statusVisible = true;
|
// this.statusVisible = true;
|
||||||
}
|
// }
|
||||||
|
this.currentRow = { ...row };
|
||||||
|
this.statusVisible = true;
|
||||||
},
|
},
|
||||||
closeStatusDialog() {
|
closeStatusDialog() {
|
||||||
this.statusVisible = false;
|
this.statusVisible = false;
|
||||||
|
|
Loading…
Reference in New Issue