diff --git a/README.md b/README.md index cf1ad92..5c6e6af 100644 --- a/README.md +++ b/README.md @@ -40,14 +40,14 @@ >新增内容: > >- 新增详细部署说明文档, 以及 `1Panel部署方式` , [点击查看](https://blog.mubai.link/2024/04/21/Docs/gofilm/) ->- 影片分类界面 `二级分类` 展示开关修改为 屏蔽 和 恢复 效果, 点击可对所属分类影片进行屏蔽和恢复 ->- 影片信息界面删除按钮功能生效, 可删除单一影片信息 (删除后暂无设置恢复效果) ->- 修复部分按钮点击后褐色边框问题 +>- 管理后台新增轮播组件管理功能 (细节图片上传本地服务器功能暂未完善) +>- 采集管理新增 数据重置 以及 全站点自动采集 功能 > >后续计划: > >- 优先针对手机端主页以及导航做修改 >- 同步手机端历史记录功能 +>- 采集方式细节化, 实现定向采集以及单一影片的实时手动更新功能 ## 目录结构 diff --git a/client/components.d.ts b/client/components.d.ts index a3feeed..0681cee 100644 --- a/client/components.d.ts +++ b/client/components.d.ts @@ -21,7 +21,6 @@ declare module '@vue/runtime-core' { ElContainer: typeof import('element-plus/es')['ElContainer'] ElDatePicker: typeof import('element-plus/es')['ElDatePicker'] ElDialog: typeof import('element-plus/es')['ElDialog'] - ElDrawer: typeof import('element-plus/es')['ElDrawer'] ElDropdown: typeof import('element-plus/es')['ElDropdown'] ElDropdownItem: typeof import('element-plus/es')['ElDropdownItem'] ElDropdownMenu: typeof import('element-plus/es')['ElDropdownMenu'] @@ -45,6 +44,7 @@ declare module '@vue/runtime-core' { ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup'] ElRow: typeof import('element-plus/es')['ElRow'] ElSelect: typeof import('element-plus/es')['ElSelect'] + ElSelectV2: typeof import('element-plus/es')['ElSelectV2'] ElSubMenu: typeof import('element-plus/es')['ElSubMenu'] ElSwitch: typeof import('element-plus/es')['ElSwitch'] ElTable: typeof import('element-plus/es')['ElTable'] diff --git a/client/src/components/Manage/ManageHeader.vue b/client/src/components/Manage/ManageHeader.vue index 37ef7eb..830be73 100644 --- a/client/src/components/Manage/ManageHeader.vue +++ b/client/src/components/Manage/ManageHeader.vue @@ -90,7 +90,6 @@ const form = reactive({ // 校验密码一致性 const regex = `^(?=.*[a-z])(?=.*[A-Z])(?=.*\\d)(?=.*[$@$!%*?&])[A-Za-z\\d$@$!%*?&]{8,12}$` const validateNewPwd = (rule: any, value: any, callback: any) => { - console.log(value) if (value === '') { callback(new Error('新密码不能为空')) } else if (!value.match(regex)) { diff --git a/client/src/style.css b/client/src/style.css index 4c2f1c6..fd934d0 100644 --- a/client/src/style.css +++ b/client/src/style.css @@ -163,6 +163,11 @@ button:focus-visible { --el-text-color-primary: #5e1e99b8; } +.el-input-number .el-input__inner { + --el-input-text-color: #999999; + --el-text-color-regular: #999999; +} + .el-dialog__header { border-bottom: 1px solid rgba(0, 0, 0, 0.1); margin-right: 0 !important; @@ -179,7 +184,16 @@ button:focus-visible { } - +/*表格底部工具栏*/ +.cus_util { + display: flex; + padding: 10px 8px; + border-left: 2px solid #9b49e733; + border-right: 2px solid #9b49e733; + border-bottom: 2px solid #9b49e733; + background: #ffffff; + justify-content: end; +} diff --git a/client/src/views/IndexHome.vue b/client/src/views/IndexHome.vue index 2608fdc..f573647 100644 --- a/client/src/views/IndexHome.vue +++ b/client/src/views/IndexHome.vue @@ -1,8 +1,8 @@