fix(数据源): StarRocks数据源保存后 控制台有报错

This commit is contained in:
dataeaseShu
2025-11-04 14:36:59 +08:00
committed by dataeaseShu
parent fbc877cb71
commit 96cd342a59
2 changed files with 4 additions and 10 deletions

View File

@@ -301,8 +301,7 @@ onMounted(() => {
<style lang="less" scoped>
.ticket {
height: auto;
max-height: 560px;
height: 100%;
.ticket-model {
display: flex;
height: 22px;
@@ -378,12 +377,7 @@ onMounted(() => {
}
}
.ticket-table {
min-height: 156px;
padding: 0 0;
height: 50px;
overflow-y: overlay;
position: relative;
height: calc(100% - 124px);
height: 400px;
:deep(.ticket-exp-head) {
display: flex;

View File

@@ -295,7 +295,7 @@ const continueCreating = () => {
init(null, pid.value)
}
const handleShowFinishPage = ({ id, name, pid }) => {
const handleShowFinishPage = ({ id, name, pid: pidVal }) => {
isShowFinishPage()
.then(res => {
if (editDs.value || !res.data) {
@@ -308,7 +308,7 @@ const handleShowFinishPage = ({ id, name, pid }) => {
}
})
.finally(() => {
pid.value = pid
pid.value = pidVal
})
}