fix
Showing
4 changed files
with
7 additions
and
6 deletions
| ... | @@ -209,7 +209,7 @@ const toolBtnClick = (btn) => { | ... | @@ -209,7 +209,7 @@ const toolBtnClick = (btn) => { |
| 209 | rowInfo.ROWID = `upload_${tableData.value.length}` | 209 | rowInfo.ROWID = `upload_${tableData.value.length}` |
| 210 | tableData.value.unshift(rowInfo) | 210 | tableData.value.unshift(rowInfo) |
| 211 | orginData.value.unshift(rowInfo) | 211 | orginData.value.unshift(rowInfo) |
| 212 | tableInfo.value.page.rows = tableData.value.length | 212 | // tableInfo.value.page.rows = tableData.value.length |
| 213 | saveDisabled.value = false | 213 | saveDisabled.value = false |
| 214 | // 表格滚动到第一行 | 214 | // 表格滚动到第一行 |
| 215 | let $tableEl = tableEl.value.tableRef | 215 | let $tableEl = tableEl.value.tableRef | ... | ... |
src/views/data_meta/components/drawer.vue
0 → 100644
This diff is collapsed.
Click to expand it.
| ... | @@ -8,7 +8,7 @@ import { ElMessage, ElMessageBox } from "element-plus"; | ... | @@ -8,7 +8,7 @@ import { ElMessage, ElMessageBox } from "element-plus"; |
| 8 | import { Search } from '@element-plus/icons-vue' | 8 | import { Search } from '@element-plus/icons-vue' |
| 9 | import Tree from '@/components/Tree/index.vue' | 9 | import Tree from '@/components/Tree/index.vue' |
| 10 | import Table from '@/components/Table/index.vue' | 10 | import Table from '@/components/Table/index.vue' |
| 11 | import Drawer from '@/components/Drawer/index.vue' | 11 | import Drawer from './components/drawer.vue' |
| 12 | import DictFileds from './components/dictFileds.vue' | 12 | import DictFileds from './components/dictFileds.vue' |
| 13 | import useCatchStore from "@/store/modules/catch"; | 13 | import useCatchStore from "@/store/modules/catch"; |
| 14 | import { download } from '@/utils/common' | 14 | import { download } from '@/utils/common' |
| ... | @@ -388,7 +388,7 @@ const formTable = ref({ | ... | @@ -388,7 +388,7 @@ const formTable = ref({ |
| 388 | loading: false | 388 | loading: false |
| 389 | }, | 389 | }, |
| 390 | tableTool: { | 390 | tableTool: { |
| 391 | col: 'float-right', | 391 | // col: 'float-right', |
| 392 | visible: false, | 392 | visible: false, |
| 393 | btns: [ | 393 | btns: [ |
| 394 | { label: "新增行", value: "add-row", type: 'primary' }, | 394 | { label: "新增行", value: "add-row", type: 'primary' }, | ... | ... |
| ... | @@ -434,7 +434,7 @@ const viewGraph = () => { | ... | @@ -434,7 +434,7 @@ const viewGraph = () => { |
| 434 | <div class="aside_wrap"> | 434 | <div class="aside_wrap"> |
| 435 | <div class="aside_title"> | 435 | <div class="aside_title"> |
| 436 | 元数据标准列表 | 436 | 元数据标准列表 |
| 437 | <el-icon color="#4fa1a4" @click="openStandardDialog"> | 437 | <el-icon color="#4fa1a4" @click="openStandardDialog" style="width:2em;height:2em"> |
| 438 | <CirclePlus /> | 438 | <CirclePlus /> |
| 439 | </el-icon> | 439 | </el-icon> |
| 440 | </div> | 440 | </div> |
| ... | @@ -482,8 +482,8 @@ const viewGraph = () => { | ... | @@ -482,8 +482,8 @@ const viewGraph = () => { |
| 482 | .standard { | 482 | .standard { |
| 483 | .el-icon { | 483 | .el-icon { |
| 484 | cursor: pointer; | 484 | cursor: pointer; |
| 485 | width: 2em; | 485 | width: 1em; |
| 486 | height: 2em | 486 | height: 1em |
| 487 | } | 487 | } |
| 488 | .el-icon svg { | 488 | .el-icon svg { |
| 489 | width: 20px; | 489 | width: 20px; |
| ... | @@ -524,6 +524,7 @@ const viewGraph = () => { | ... | @@ -524,6 +524,7 @@ const viewGraph = () => { |
| 524 | .tags-list-right { | 524 | .tags-list-right { |
| 525 | position: absolute; | 525 | position: absolute; |
| 526 | right: 0; | 526 | right: 0; |
| 527 | top:8px; | ||
| 527 | } | 528 | } |
| 528 | } | 529 | } |
| 529 | 530 | ... | ... |
-
Please register or sign in to post a comment