Skip to content

Commit

Permalink
升级element-plus到最新版本2.2.27
Browse files Browse the repository at this point in the history
  • Loading branch information
yangzongzhuan committed Dec 23, 2022
1 parent d945183 commit 7c258f8
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@vueuse/core": "9.5.0",
"axios": "0.27.2",
"echarts": "5.4.0",
"element-plus": "2.2.21",
"element-plus": "2.2.27",
"file-saver": "2.0.5",
"fuse.js": "6.6.2",
"js-cookie": "3.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/layout/components/TagsView/ScrollPane.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import useTagsViewStore from '@/store/modules/tagsView'
const tagAndTagSpacing = ref(4);
const { proxy } = getCurrentInstance();
const scrollWrapper = computed(() => proxy.$refs.scrollContainer.$refs.wrap$);
const scrollWrapper = computed(() => proxy.$refs.scrollContainer.$refs.wrapRef);
onMounted(() => {
scrollWrapper.value.addEventListener('scroll', emitScroll, true)
Expand Down
1 change: 0 additions & 1 deletion src/views/system/dept/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@
value-key="deptId"
placeholder="选择上级部门"
check-strictly
:render-after-expand="false"
/>
</el-form-item>
</el-col>
Expand Down
3 changes: 1 addition & 2 deletions src/views/system/menu/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<dict-tag :options="sys_normal_disable" :value="scope.row.status" />
</template>
</el-table-column>
<el-table-column label="创建时间" align="center" prop="createTime">
<el-table-column label="创建时间" align="center" width="160" prop="createTime">
<template #default="scope">
<span>{{ parseTime(scope.row.createTime) }}</span>
</template>
Expand All @@ -96,7 +96,6 @@
value-key="menuId"
placeholder="选择上级菜单"
check-strictly
:render-after-expand="false"
/>
</el-form-item>
</el-col>
Expand Down
1 change: 0 additions & 1 deletion src/views/system/user/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,6 @@
value-key="id"
placeholder="请选择归属部门"
check-strictly
:render-after-expand="false"
/>
</el-form-item>
</el-col>
Expand Down

0 comments on commit 7c258f8

Please sign in to comment.