!115 fix: 新版本问题修复

* fix: 新版本问题修复
This commit is contained in:
zongyangleo
2024-04-12 14:39:08 +00:00
committed by Coder慌
parent d6eb9683d1
commit 1a4626c24d
11 changed files with 124 additions and 87 deletions

View File

@@ -40,7 +40,7 @@
</div>
</template>
<machine-rdp ref="rdpRef" :machine-id="machineId" @status-change="handleStatusChange" />
<machine-rdp ref="rdpRef" :machine-id="machineId" :auth-cert="authCert" @status-change="handleStatusChange" />
</el-dialog>
</div>
</template>
@@ -56,7 +56,14 @@ const dialogRef = ref({} as any);
const props = defineProps({
visible: { type: Boolean },
machineId: { type: Number },
machineId: {
type: Number,
required: true,
},
authCert: {
type: String,
required: true,
},
title: { type: String },
});