This commit is contained in:
whitechiina 2026-04-27 19:21:21 +08:00
parent 2ae4aa2d17
commit 2307639779
27 changed files with 30 additions and 3 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

View File

@ -71,7 +71,8 @@
"vueVersion" : "2", "vueVersion" : "2",
"h5" : { "h5" : {
"router" : { "router" : {
"base" : "/bmt/" "base" : "/bmt/",
"mode" : "history"
} }
} }
} }

View File

@ -286,7 +286,7 @@ export default {
url("https://imgs.agrimedia.cn/bm-bmt/home2-bg.png") url("https://imgs.agrimedia.cn/bm-bmt/home2-bg.png")
no-repeat; no-repeat;
border: 1px solid rgba(112, 135, 196, 0.18); border: 1px solid rgba(112, 135, 196, 0.18);
background-size: contain; background-size: cover;
box-shadow: 0 24rpx 48rpx rgba(7, 12, 32, 0.28); box-shadow: 0 24rpx 48rpx rgba(7, 12, 32, 0.28);
} }

BIN
unpackage/.DS_Store vendored Normal file

Binary file not shown.

BIN
unpackage/dist/.DS_Store vendored Normal file

Binary file not shown.

BIN
unpackage/dist/build/.DS_Store vendored Normal file

Binary file not shown.

View File

2
unpackage/dist/build/web/index.html vendored Normal file
View File

@ -0,0 +1,2 @@
<!DOCTYPE html><html lang=zh-CN><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><title>白马交易所</title><script>var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')</script><link rel=stylesheet href=/bmt/static/index.883130ca.css></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id=app></div><script src=/bmt/static/js/chunk-vendors.98a0fd8f.js></script><script src=/bmt/static/js/index.eb295c71.js></script></body></html>

Binary file not shown.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

BIN
unpackage/dist/build/web/static/logo.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -54,13 +54,13 @@ export default function request(options) {
const requestHeader = Object.assign( const requestHeader = Object.assign(
{ {
"Content-Type": defaultContentType, "Content-Type": defaultContentType,
"Form-type": "gzh",
}, },
options.header || {}, options.header || {},
); );
if (token) { if (token) {
const bearerToken = "Bearer " + token; const bearerToken = "Bearer " + token;
requestHeader["Authori-zation"] = bearerToken;
requestHeader.Authorization = bearerToken; requestHeader.Authorization = bearerToken;
} }
const shouldHandleLoading = showGlobalLoading(options); const shouldHandleLoading = showGlobalLoading(options);