PACS配置确保连通性校验
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
3304a5d8d2
commit
b0efb9066d
|
@ -516,6 +516,10 @@ export default {
|
|||
handleConfirm() {
|
||||
this.$refs["dicomConfigForm"].validate(async (valid) => {
|
||||
if (!valid) return;
|
||||
if (!this.form.IsTestOK)
|
||||
return this.$message.warning(
|
||||
this.$t("trials:dicomCfg:message:IsTestNo")
|
||||
);
|
||||
this.getConfigArr();
|
||||
this.confirmVisible = true;
|
||||
});
|
||||
|
@ -525,6 +529,10 @@ export default {
|
|||
handleUpdate() {
|
||||
this.$refs["dicomConfigForm"].validate(async (valid) => {
|
||||
if (!valid) return;
|
||||
if (!this.form.IsTestOK)
|
||||
return this.$message.warning(
|
||||
this.$t("trials:dicomCfg:message:IsTestNo")
|
||||
);
|
||||
this.getConfigArr();
|
||||
this.updateVisible = true;
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue