├── .gitignore ├── README.md ├── babel.config.js ├── package-lock.json ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── api │ └── index.js ├── assets │ ├── css │ │ ├── account.css │ │ ├── account.less │ │ ├── clean.css │ │ └── theme.min.css │ ├── images │ │ ├── empty.png │ │ ├── empty1.png │ │ └── empty3.png │ └── imgs │ │ ├── 404.png │ │ ├── error.png │ │ ├── icon_close.png │ │ ├── load.gif │ │ ├── loading.gif │ │ ├── loading.png │ │ ├── logo.jpg │ │ └── logo.png ├── components │ ├── Account.vue │ ├── Capacity.vue │ ├── Copy.vue │ ├── Empty.vue │ ├── Forget.vue │ ├── Login.vue │ ├── Notice.vue │ ├── PortraitSelect.vue │ ├── Register.vue │ ├── UserFloat.vue │ ├── WangEnduit.vue │ └── index.js ├── main.js ├── router │ ├── index.js │ └── routes.js ├── store │ └── index.js ├── utils │ ├── index.js │ ├── request.js │ └── store │ │ ├── cookie.js │ │ └── localStorage.js └── views │ ├── error │ └── 404 │ │ └── index.vue │ ├── gallery │ └── index.vue │ ├── home │ ├── base-info.vue │ ├── home.vue │ ├── left-chart.vue │ └── right-chart.vue │ ├── index │ └── index.vue │ ├── layout │ └── index.vue │ ├── setup │ ├── admin.vue │ ├── home.vue │ ├── member.vue │ ├── role.vue │ └── storage.vue │ ├── user │ ├── about.vue │ ├── update.vue │ ├── userInfo.vue │ └── userpwd.vue │ └── word │ ├── delete.vue │ ├── index.vue │ └── upload.vue └── vue.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /dist 4 | 5 | # local env files 6 | .env.* 7 | .env.*.local 8 | 9 | # Log files 10 | npm-debug.log* 11 | yarn-debug.log* 12 | yarn-error.log* 13 | 14 | # Editor directories and files 15 | .idea 16 | .vscode 17 | *.suo 18 | *.ntvs* 19 | *.njsproj 20 | *.sln 21 | *.sw? 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |容量使用:
18 | 20 |{{turnSize(userInfo.user_size)}} / {{turnSize(userInfo.capacity)}}
21 |github
22 |gitee
26 |已找回账号?点此登录
65 |* 以上头像素材取自阿里云,商用请留意版权
33 |已有账号?点此登录
83 |点此上传图片,支持拖拽上传
31 |
99 |
删除用户不会删除此用户之前上传的图片,可通过新增相同邮箱恢复用户,是否删除? 104 |
105 |
54 |
110 |
至少保留一个默认角色组,请确保当前删除的角色组不是注册默认角色组,角色组删除后,该组下面的用户将重置默认角色组。 115 |
116 |
100 |
105 | 为安全起见,删除桶会删除系统内此桶的所有数据,但不会删除此桶内已有的图片文件;通俗的讲就是删除桶后不会影响之前上传的图片链接,但系统将会无法管理之前的图片,仍可以前往服务器图片文件所在文件夹或所属对象存储控制台管理 106 |
107 |一套轻量级企业团队图片资源管理系统、图床系统
26 |2021年底,苦于创作时没有一款方便快捷且适合需求的图床,在自己折腾下开发了LightPicture,本系统遵循GPL 3.0开源许可
27 |如果您认可我的作品,请为我点击一个star,你的支持也将帮助LightPicture变的更好
28 | 32 |33 | bug反馈请联系作者:admin@osuu.net 34 |
35 | 36 |