fix: 采用弹窗的方式显示验证码,解决验证码在低分辨率下被掩盖的Bug

This commit is contained in:
RockYang
2023-09-05 16:47:40 +08:00
parent 46a551df16
commit bf3f68fa19
11 changed files with 354 additions and 499 deletions

View File

@@ -2,7 +2,7 @@ version: '3'
services:
# 后端 API 程序
chatgpt-plus-api:
image: registry.cn-hangzhou.aliyuncs.com/geekmaster/chatgpt-plus-api:v3.0.7.4
image: registry.cn-shenzhen.aliyuncs.com/geekmaster/chatgpt-plus-api:v3.1.0
container_name: chatgpt-plus-api
restart: always
environment:
@@ -13,14 +13,14 @@ services:
- "5678:5678"
volumes:
- /usr/share/zoneinfo/Asia/Shanghai:/etc/localtime
- ./conf/config.toml:/var/www/app/config.toml
- ./conf/config.toml:/var/www/app/config.toml
- ./logs:/var/www/app/logs
- ./static:/var/www/app/static
# 前端应用
chatgpt-plus-vue:
image: registry.cn-hangzhou.aliyuncs.com/geekmaster/chatgpt-plus-vue:v3.0.7.4
container_name: chatgpt-plus-vue
chatgpt-plus-web:
image: registry.cn-shenzhen.aliyuncs.com/geekmaster/chatgpt-plus-web:v3.1.0
container_name: chatgpt-plus-web
restart: always
ports:
- "8080:8080"