From 7a6901520a8e10a4384625c8de918d00a63e7c99 Mon Sep 17 00:00:00 2001 From: MoYi <1545929126@qq.com> Date: Tue, 21 Nov 2023 21:09:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9EPC=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components.d.ts | 7 + src/views/AppPC.vue | 363 +++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 368 insertions(+), 2 deletions(-) diff --git a/components.d.ts b/components.d.ts index 9ca6ddc..baf86c7 100644 --- a/components.d.ts +++ b/components.d.ts @@ -7,9 +7,16 @@ export {} declare module 'vue' { export interface GlobalComponents { + ElAvatar: typeof import('element-plus/es')['ElAvatar'] ElButton: typeof import('element-plus/es')['ElButton'] + ElCol: typeof import('element-plus/es')['ElCol'] ElIcon: typeof import('element-plus/es')['ElIcon'] + ElInput: typeof import('element-plus/es')['ElInput'] + ElOption: typeof import('element-plus/es')['ElOption'] ElPagination: typeof import('element-plus/es')['ElPagination'] + ElRow: typeof import('element-plus/es')['ElRow'] + ElSelect: typeof import('element-plus/es')['ElSelect'] + ElSwitch: typeof import('element-plus/es')['ElSwitch'] ElTable: typeof import('element-plus/es')['ElTable'] ElTableColumn: typeof import('element-plus/es')['ElTableColumn'] ElUpload: typeof import('element-plus/es')['ElUpload'] diff --git a/src/views/AppPC.vue b/src/views/AppPC.vue index afd1a65..076d1a4 100644 --- a/src/views/AppPC.vue +++ b/src/views/AppPC.vue @@ -1,11 +1,370 @@ +/* 用户属性样式 */ +.HeaderHomeUserInfo { + display: flex; + align-items: center; +} + +/* 用户头像大小 */ +img { + width: 30px; + height: 30px; + border-radius: 10%; + margin: 10px 10px 10px 10px; +} + +/* 左侧Div边框 */ +.Left { + margin: 5px 5px 0 5px; +} + +/* 修改分页属性 */ +.Pagination { + display: flex; + justify-content: center; + align-items: center; +} + +/* 设置列表高度为100% */ +.LeftFileListData { + height: 100%; +} + \ No newline at end of file