新增智能体按钮绑定问题

This commit is contained in:
Ran_Chen
2025-04-16 11:34:30 +08:00
parent 0049d0e926
commit 925cf3dabb
@@ -1,5 +1,5 @@
<template>
<el-dialog :visible.sync="visible" width="400px" center @open="handleOpen">
<el-dialog :visible="visible" @close="handleClose" width="400px" center @open="handleOpen">
<div
style="margin: 0 10px 10px;display: flex;align-items: center;gap: 10px;font-weight: 700;font-size: 20px;text-align: left;color: #3d4566;">
<div
@@ -66,7 +66,10 @@ export default {
cancel() {
this.$emit('update:visible', false)
this.wisdomBodyName = ""
}
},
handleClose() {
this.$emit('update:visible', false);
},
}
}
</script>