feat(splash): 添加全局开屏图片功能并优化客户端启动流程
- 新增全局开屏图片上传、获取、删除接口 - 实现客户端全局开屏图片优先加载机制 - 集成七牛云存储配置从 pxdj 切换到 bydj - 优化 splash 窗口显示逻辑确保至少显示 2 秒 - 添加全局开屏图片管理界面组件 - 更新应用配置和构建设置 - 修复多处图片缓存和加载问题 - 调整服务端 API 地址配置 - 修改微信客服联系方式
This commit is contained in:
@@ -10,7 +10,6 @@ import java.util.List;
|
||||
*/
|
||||
@Component
|
||||
public class ProxyPool {
|
||||
|
||||
private static final String API_URL = "http://api.tianqiip.com/getip?secret=y0thbcco1rgxn9e9&num=%d&type=txt&port=2&time=3&mr=1&sign=9be780c7e27aea815f1e0874446b9e35";
|
||||
|
||||
/**
|
||||
|
||||
@@ -13,8 +13,8 @@ public class QiniuUtil {
|
||||
// 七牛配置
|
||||
private static final String ACCESS_KEY = "M1I8ItQjEYOYXyJYieloSSaIG8Ppi4lfCAyZ8BaF";
|
||||
private static final String SECRET_KEY = "Xvi0SwtL9WVOl28h6DNRLKP9MnZZqsKBWrC8shAl";
|
||||
private static final String BUCKET = "pxdj-prod";
|
||||
private static final String DOMAIN = "https://qiniu.pxdj.tashowz.com/"; // 开启HTTPS的外链域名
|
||||
private static final String BUCKET = "bydj-prod";
|
||||
private static final String DOMAIN = "https://qiniu.bydj.tashowz.com/"; // 开启HTTPS的外链域名
|
||||
|
||||
public static String uploadFromUrl(String imageUrl, String key) throws Exception {
|
||||
// 1. 下载远程图片
|
||||
|
||||
@@ -46,9 +46,9 @@ server:
|
||||
api:
|
||||
server:
|
||||
# 主服务器API配置
|
||||
#base-url: "http://8.138.23.49:8085"
|
||||
base-url: "http://8.138.23.49:8085"
|
||||
#base-url: "http://192.168.1.89:8085"
|
||||
base-url: "http://127.0.0.1:8085"
|
||||
#base-url: "http://127.0.0.1:8085"
|
||||
paths:
|
||||
monitor: "/monitor/client/api"
|
||||
login: "/monitor/account/login"
|
||||
|
||||
Reference in New Issue
Block a user