测试验证完成

This commit is contained in:
rain
2026-06-20 11:20:45 +08:00
parent db8ed02602
commit b3e6f3e831
30 changed files with 110 additions and 135 deletions
+3 -3
View File
@@ -26,7 +26,7 @@ const ApiClient = {
noticeList: '/api/web/notice/list',
noticeDetail: (id) => `/api/web/notice/${encodeURIComponent(id || '')}`,
friendLinks: '/api/web/link/friend',
otherRecommendLinks: '/api/web/link/other',
otherRecommendLinks: '/api/web/link/other-recommend',
latestLotteryResult: '/api/web/lottery/result/latest',
lotteryResultList: '/api/web/lottery/result/list',
webConfigList: '/api/web/config/list',
@@ -108,8 +108,8 @@ const ApiClient = {
fc3dSchemeList: '/api/web/fc3d/scheme/list',
fc3dSchemeDetail: (id) => `/api/web/fc3d/scheme/${encodeURIComponent(id)}`,
walletPurchaseFc3dScheme: '/api/web/wallet/purchase/fc3d-scheme',
lotteryTrendTools: '/api/web/lottery/trend/tools',
lotteryTrend: '/api/web/lottery/trend',
lotteryTrendTools: '/api/web/lottery/result/trend/tools',
lotteryTrend: '/api/web/lottery/result/trend',
},
get baseUrl() {
+2 -2
View File
@@ -1020,7 +1020,7 @@ const CommonUtil = {
if (!window.__cxzCaiinfoMenuLoading && !window.__cxzCaiinfoMenuMeta && typeof ApiClient !== 'undefined') {
window.__cxzCaiinfoMenuLoading = true;
ApiClient.post('/api/web/menu/getFormatList', {})
ApiClient.loadMenuCompat()
.then((res) => {
window.__cxzCaiinfoMenuMeta = findMenuMeta(res.data || []);
if (typeof window.loadArticles === 'function') window.loadArticles();
@@ -1439,7 +1439,7 @@ const CommonUtil = {
},
loadLinks() {
ApiClient.post('/api/web/link/getList', {}).then((res) => {
ApiClient.loadLinksCompat().then((res) => {
const list = res.data || [];
this.renderLinks(
list.filter((item) => item.type === 1),