bdc72733 by xukangle

fix

1 parent 71924fdc
......@@ -32,7 +32,7 @@ import {
import { TableColumnWidth } from "@/utils/enum";
import router from "@/router";
import { download } from "@/utils/common";
import { ca } from "element-plus/es/locale";
const currentPath = ref<string[]>([]);
const currentDatabasePath = ref<string[]>([]);
......@@ -598,7 +598,7 @@ const dataBaseTableInfo = ref({
fields: [
{ label: "序号", type: "index", width: 56, align: "center" },
{ label: "数据源", field: "databaseChName", width: 140 },
{ label: "表名称", field: "tableChName", width: 120 },
{ label: "主题表名称", field: "tableChName", width: 120 },
{ label: "数据库表", field: "tableName", width: 120 },
{
label: "新建方式", field: "foundMode", width: 140, getName: (scope) => {
......@@ -1741,7 +1741,7 @@ onActivated(async () => {
const gradeTreeRef = ref<any>();
const treeSelectNodeClick = (node, item) => {
console.log('treeSelectNodeClick', node, item);
console.log('treeSelectNodeClick', gradeTreeRef.value.treeRef);
classifyDetailGuidInfo.value = node.classifyDetailGuid;
treeInfo.value.expandedKey = [];
treeInfo.value.expandedKey.push(node.classifyDetailGuid);
......
......@@ -974,7 +974,7 @@ onActivated(() => {
<!-- 表名称列 -->
<el-table-column prop="tableName" label="表名称" width="180">
<template #header>
<span>表名称</span>
<span>数据库表</span>
<span style="color:red;margin-left: 2px;">*</span>
</template>
<template #default="scope">
......@@ -985,7 +985,7 @@ onActivated(() => {
<!-- 数据库表列 -->
<el-table-column prop="tableChName" label="数据库表" width="280">
<template #header>
<span>数据库表</span>
<span>主题表名称</span>
<span style="color:red;margin-left: 2px;">*</span>
</template>
<template #default="scope">
......
......@@ -501,7 +501,7 @@ const formInfo = ref({
default: [],
limit: 1,
block: true,
required: true,
required: false,
visible: true
},
{
......@@ -515,7 +515,7 @@ const formInfo = ref({
default: [],
limit: 1,
block: true,
required: true,
required: false,
visible: true
},
{
......@@ -529,7 +529,7 @@ const formInfo = ref({
default: [],
limit: 1,
block: true,
required: true,
required: false,
visible: true
},
{
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!