diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss index 2941e06..6b50c09 100644 --- a/src/assets/styles/index.scss +++ b/src/assets/styles/index.scss @@ -281,3 +281,16 @@ aside { justify-content: flex-end; /* 使用标准值 */ } } + + +.table-form.el-table { + .cell { + padding-left: 0px; + padding-right: 0px; + } +} + +.table-form.el-table th.el-table__cell > .cell { + padding-left: 0px; + padding-right: 0px; +} \ No newline at end of file diff --git a/src/components/Business/Dept/DeptCheck.vue b/src/components/Business/Dept/DeptCheck.vue index 4b3e861..3c72d63 100644 --- a/src/components/Business/Dept/DeptCheck.vue +++ b/src/components/Business/Dept/DeptCheck.vue @@ -39,7 +39,7 @@ @row-click="changeSelection" @row-dblclick="select" @select-all="selectionAll" - @select="changeSelection" + @select="handleSelect" highlight-current-row style="width: 100%" size="small" @@ -185,6 +185,9 @@ export default { } }) }, + handleSelect(selection, row) { + this.changeSelection(row); + }, // 更换某一行的选中状态 changeSelection(row){ if(this.multiple){ diff --git a/src/components/ImportDialog/index.vue b/src/components/ImportDialog/index.vue index 407364a..b532717 100644 --- a/src/components/ImportDialog/index.vue +++ b/src/components/ImportDialog/index.vue @@ -15,9 +15,9 @@