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