修复主页图片显示bug
This commit is contained in:
@@ -5,8 +5,8 @@ VUE_APP_TITLE = m2pool
|
|||||||
ENV = 'development'
|
ENV = 'development'
|
||||||
|
|
||||||
#开发环境
|
#开发环境
|
||||||
# VUE_APP_BASE_API = 'https://test.m2pool.com/api/'
|
VUE_APP_BASE_API = 'https://test.m2pool.com/api/'
|
||||||
VUE_APP_BASE_API = 'http://10.168.2.150:8101/'
|
# VUE_APP_BASE_API = 'http://10.168.2.150:8101/'
|
||||||
VUE_APP_BASE_URL = 'https://test.m2pool.com/'
|
VUE_APP_BASE_URL = 'https://test.m2pool.com/'
|
||||||
# 路由懒加载
|
# 路由懒加载
|
||||||
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
VUE_CLI_BABEL_TRANSPILE_MODULES = true
|
||||||
|
|||||||
Binary file not shown.
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<router-view class="page" />
|
<router-view class="page" />
|
||||||
<ChatWidget v-if="!$route.path.includes('/customerService')" />
|
<!-- <ChatWidget v-if="!$route.path.includes('/customerService')" /> -->
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script >
|
<script >
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ Vue.use(ElementUI, {
|
|||||||
});
|
});
|
||||||
Vue.prototype.$axios = axios
|
Vue.prototype.$axios = axios
|
||||||
|
|
||||||
// console.log = ()=>{} //全局关闭打印
|
console.log = ()=>{} //全局关闭打印
|
||||||
// 全局注册混入
|
// 全局注册混入
|
||||||
Vue.mixin(loadingStateMixin);
|
Vue.mixin(loadingStateMixin);
|
||||||
Vue.mixin(networkRecoveryMixin);
|
Vue.mixin(networkRecoveryMixin);
|
||||||
|
|||||||
@@ -1440,67 +1440,37 @@ export default {
|
|||||||
|
|
||||||
return width + marginLeft + marginRight;
|
return width + marginLeft + marginRight;
|
||||||
},
|
},
|
||||||
|
|
||||||
// 左滑动逻辑
|
// 左滑动逻辑
|
||||||
scrollLeft() {
|
scrollLeft() {
|
||||||
const listEl = this.$refs.currencyList;
|
const allLength = this.currencyList.length * 120
|
||||||
const listBox = this.$refs.listBox;
|
const boxLength = document.getElementById('list-box').clientWidth
|
||||||
if (!listEl || !listBox) return;
|
if (allLength < boxLength) return
|
||||||
|
const listEl = document.getElementById('list')
|
||||||
const itemFullWidth = this.getItemFullWidth();
|
const leftMove = Math.abs(parseInt(window.getComputedStyle(listEl, null)?.left))
|
||||||
const step = 2 * itemFullWidth; // 每次滑动2个币种
|
if (leftMove + boxLength - 360 < boxLength) {
|
||||||
const allLength = this.currencyList.length * itemFullWidth;
|
// 到最开始的时候
|
||||||
const boxLength = listBox.clientWidth;
|
listEl.style.left = '0PX'
|
||||||
|
|
||||||
if (allLength <= boxLength) return;
|
|
||||||
|
|
||||||
let currentLeft = Math.abs(parseInt(listEl.style.transform.replace('translateX(', '').replace('px)', '')) || 0);
|
|
||||||
let newLeft = currentLeft - step;
|
|
||||||
|
|
||||||
listEl.classList.add('scrolling');
|
|
||||||
|
|
||||||
if (newLeft <= 0) {
|
|
||||||
listEl.style.transform = 'translateX(0)';
|
|
||||||
} else {
|
} else {
|
||||||
listEl.style.transform = `translateX(-${newLeft}px)`;
|
listEl.style.left = '-' + (leftMove - 360) + 'PX'
|
||||||
}
|
}
|
||||||
|
},
|
||||||
// 增加动画时间到 500ms
|
// 右滑动逻辑
|
||||||
setTimeout(() => {
|
scrollRight() {
|
||||||
listEl.classList.remove('scrolling');
|
const allLength = this.currencyList.length * 120
|
||||||
}, 500);
|
const boxLength = document.getElementById('list-box').clientWidth
|
||||||
},
|
if (allLength < boxLength) return
|
||||||
|
const listEl = document.getElementById('list')
|
||||||
|
const leftMove = Math.abs(parseInt(window.getComputedStyle(listEl, null)?.left))
|
||||||
|
if (leftMove + boxLength + 360 > allLength) {
|
||||||
|
listEl.style.left = '-' + (allLength - boxLength) + 'PX'
|
||||||
|
} else {
|
||||||
|
listEl.style.left = '-' + (leftMove + 360) + 'PX'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// 右滑动逻辑
|
|
||||||
scrollRight() {
|
|
||||||
const listEl = this.$refs.currencyList;
|
|
||||||
const listBox = this.$refs.listBox;
|
|
||||||
if (!listEl || !listBox) return;
|
|
||||||
|
|
||||||
const itemFullWidth = this.getItemFullWidth();
|
|
||||||
const step = 2 * itemFullWidth; // 每次滑动2个币种
|
|
||||||
const allLength = this.currencyList.length * itemFullWidth;
|
|
||||||
const boxLength = listBox.clientWidth;
|
|
||||||
|
|
||||||
if (allLength <= boxLength) return;
|
|
||||||
|
|
||||||
let currentLeft = Math.abs(parseInt(listEl.style.transform.replace('translateX(', '').replace('px)', '')) || 0);
|
|
||||||
let newLeft = currentLeft + step;
|
|
||||||
const maxLeft = allLength - boxLength;
|
|
||||||
|
|
||||||
listEl.classList.add('scrolling');
|
|
||||||
|
|
||||||
if (newLeft >= maxLeft) {
|
|
||||||
listEl.style.transform = `translateX(-${maxLeft}px)`;
|
|
||||||
} else {
|
|
||||||
listEl.style.transform = `translateX(-${newLeft}px)`;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 增加动画时间到 500ms
|
|
||||||
setTimeout(() => {
|
|
||||||
listEl.classList.remove('scrolling');
|
|
||||||
}, 500);
|
|
||||||
},
|
|
||||||
// // 左滑动逻辑
|
// // 左滑动逻辑
|
||||||
// scrollLeft() {
|
// scrollLeft() {
|
||||||
// const allLength = this.currencyList.length * 120
|
// const allLength = this.currencyList.length * 120
|
||||||
|
|||||||
@@ -340,29 +340,6 @@
|
|||||||
<el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
|
<el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
|
||||||
<el-card>
|
<el-card>
|
||||||
<div class="monitor-list">
|
<div class="monitor-list">
|
||||||
<div class="btn left" @click="scrollLeft">
|
|
||||||
<i class="iconfont icon-icon-prev" />
|
|
||||||
</div>
|
|
||||||
<div ref="listBox" class="list-box">
|
|
||||||
<div ref="currencyList" class="list">
|
|
||||||
<div
|
|
||||||
v-for="item in currencyList"
|
|
||||||
:key="item.value"
|
|
||||||
@click="clickCurrency(item)"
|
|
||||||
class="list-item"
|
|
||||||
>
|
|
||||||
<img :src="item.img" alt="coin" />
|
|
||||||
<span :class="{ active: itemActive === item.value }">
|
|
||||||
{{ item.label }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="btn right" @click="scrollRight">
|
|
||||||
<i class="iconfont icon-zuoyoujiantou1" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- <div class="monitor-list">
|
|
||||||
<div class="btn left" @click="scrollLeft">
|
<div class="btn left" @click="scrollLeft">
|
||||||
<i class="iconfont icon-icon-prev" />
|
<i class="iconfont icon-icon-prev" />
|
||||||
</div>
|
</div>
|
||||||
@@ -384,10 +361,11 @@
|
|||||||
<div class="btn right" @click="scrollRight">
|
<div class="btn right" @click="scrollRight">
|
||||||
<i class="iconfont icon-zuoyoujiantou1" />
|
<i class="iconfont icon-zuoyoujiantou1" />
|
||||||
</div>
|
</div>
|
||||||
</div> -->
|
</div>
|
||||||
</el-card>
|
</el-card>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
<section class="describeBox">
|
<section class="describeBox">
|
||||||
<p> <i class="iconfont icon-tishishuoming "></i><span class="describeTitle">{{ $t(`home.describeTitle`) }}</span>{{ $t(`home.describe`) }} <span class="view" @click="handelJump(`/allocationExplanation`)"> {{ $t(`home.view`) }} </span> </p>
|
<p> <i class="iconfont icon-tishishuoming "></i><span class="describeTitle">{{ $t(`home.describeTitle`) }}</span>{{ $t(`home.describe`) }} <span class="view" @click="handelJump(`/allocationExplanation`)"> {{ $t(`home.view`) }} </span> </p>
|
||||||
</section>
|
</section>
|
||||||
@@ -783,7 +761,7 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
// 手机端适配
|
// 手机端适配
|
||||||
@media screen and (min-width: 220px) and (max-width: 800px) {
|
@media screen and (min-width: 220px) and (max-width: 800px) {
|
||||||
.imgTop {
|
.imgTop {
|
||||||
@@ -3141,63 +3119,6 @@ export default {
|
|||||||
transition: left 1s;
|
transition: left 1s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.list-box {//加的
|
|
||||||
width: calc(100% - 100px);
|
|
||||||
overflow: hidden;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.list {
|
|
||||||
display: flex;
|
|
||||||
will-change: transform;
|
|
||||||
padding-left: 2%;
|
|
||||||
|
|
||||||
&.scrolling {
|
|
||||||
// 增加动画时长到 0.5s,使用更平滑的缓动函数
|
|
||||||
transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
.list-item {
|
|
||||||
flex-shrink: 0;
|
|
||||||
width: 120px;
|
|
||||||
height: 95%;
|
|
||||||
margin-left: 18px;
|
|
||||||
// 增加过渡时间,使悬停效果更平滑
|
|
||||||
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
transform: translateY(-3px);
|
|
||||||
box-shadow: 0 6px 16px rgba(110, 62, 219, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
span {
|
|
||||||
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn {
|
|
||||||
// 增加按钮过渡时间
|
|
||||||
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background-color: #6e3edb;
|
|
||||||
color: #fff;
|
|
||||||
transform: scale(1.05);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:active {
|
|
||||||
transform: scale(0.95);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// -----------------------
|
// -----------------------
|
||||||
|
|||||||
Binary file not shown.
1
mining-pool/test/css/app-01dc9ae1.04da7d85.css
Normal file
1
mining-pool/test/css/app-01dc9ae1.04da7d85.css
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/css/app-01dc9ae1.04da7d85.css.gz
Normal file
BIN
mining-pool/test/css/app-01dc9ae1.04da7d85.css.gz
Normal file
Binary file not shown.
1
mining-pool/test/css/app-113c6c50.729eb983.css
Normal file
1
mining-pool/test/css/app-113c6c50.729eb983.css
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/css/app-113c6c50.729eb983.css.gz
Normal file
BIN
mining-pool/test/css/app-113c6c50.729eb983.css.gz
Normal file
Binary file not shown.
1
mining-pool/test/css/app-42f9d7e6.21e533d7.css
Normal file
1
mining-pool/test/css/app-42f9d7e6.21e533d7.css
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/css/app-42f9d7e6.21e533d7.css.gz
Normal file
BIN
mining-pool/test/css/app-42f9d7e6.21e533d7.css.gz
Normal file
Binary file not shown.
1
mining-pool/test/css/app-72600b29.f0fc86b8.css
Normal file
1
mining-pool/test/css/app-72600b29.f0fc86b8.css
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/css/app-72600b29.f0fc86b8.css.gz
Normal file
BIN
mining-pool/test/css/app-72600b29.f0fc86b8.css.gz
Normal file
Binary file not shown.
1
mining-pool/test/css/app-8e0489d9.105c6ba3.css
Normal file
1
mining-pool/test/css/app-8e0489d9.105c6ba3.css
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/css/app-8e0489d9.105c6ba3.css.gz
Normal file
BIN
mining-pool/test/css/app-8e0489d9.105c6ba3.css.gz
Normal file
Binary file not shown.
@@ -1 +1 @@
|
|||||||
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><meta name=google-site-verification content=pKAZogQ0NQ6L4j9-V58WJMjm7zYCFwkJXSJzWu9UDM8><meta name=robots content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1"><meta name=googlebot content="index, follow"><meta name=googlebot-news content="index, follow"><meta name=bingbot content="index, follow"><link rel=alternate hreflang=zh href=https://m2pool.com/zh><link rel=alternate hreflang=en href=https://m2pool.com/en><link rel=alternate hreflang=x-default href=https://m2pool.com/en><meta property=og:title content="M2pool - Stable leading high-yield mining pool"><meta property=og:description content="M2Pool provides professional mining services, supporting multiple cryptocurrency mining"><meta property=og:url content=https://m2pool.com/en><meta property=og:site_name content=M2Pool><meta property=og:type content=website><meta property=og:image content=https://m2pool.com/logo.png><link rel=icon href=/favicon.ico><link rel=stylesheet href=//at.alicdn.com/t/c/font_4582735_irzdjxdsrq8.css><title>M2pool - Stable leading high-yield mining pool</title><meta name=keywords content="M2Pool, cryptocurrency mining pool,Entropyx(enx),entropyx, bitcoin mining, DGB mining, mining pool service, 加密货币矿池, 比特币挖矿, DGB挖矿"><meta name=description content="M2Pool provides professional mining services, supporting multiple cryptocurrency mining, including nexa, grs, mona, dgb, rxd, enx"><meta name=format-detection content="telephone=no"><meta name=apple-mobile-web-app-capable content=yes><script defer src=/js/chunk-vendors-945ce2fe.648a91a9.js></script><script defer src=/js/chunk-vendors-aacc2dbb.d317c558.js></script><script defer src=/js/chunk-vendors-bc050c32.3f2f14d2.js></script><script defer src=/js/chunk-vendors-3003db77.d0b93d36.js></script><script defer src=/js/chunk-vendors-9d134daf.bb668c99.js></script><script defer src=/js/chunk-vendors-439af1fa.48a48f35.js></script><script defer src=/js/chunk-vendors-5c533fba.b9c00e08.js></script><script defer src=/js/chunk-vendors-96cecd74.a7d9b845.js></script><script defer src=/js/chunk-vendors-c2f7d60e.3710fdc2.js></script><script defer src=/js/chunk-vendors-89d5c698.2190b4ca.js></script><script defer src=/js/chunk-vendors-377fed06.159de137.js></script><script defer src=/js/chunk-vendors-5a805870.4cfc0ae8.js></script><script defer src=/js/chunk-vendors-cf2e0a28.c6e99da0.js></script><script defer src=/js/app-42f9d7e6.17cb0808.js></script><script defer src=/js/app-5c551db8.2b99b68c.js></script><script defer src=/js/app-01dc9ae1.188fe4f5.js></script><script defer src=/js/app-b4c4f6ec.bf0536f4.js></script><script defer src=/js/app-72600b29.6b68c3d1.js></script><script defer src=/js/app-f035d474.30e8939b.js></script><script defer src=/js/app-113c6c50.28d27f0c.js></script><link href=/css/chunk-vendors-5c533fba.6f97509c.css rel=stylesheet><link href=/css/app-42f9d7e6.23095695.css rel=stylesheet><link href=/css/app-01dc9ae1.825b7ca3.css rel=stylesheet><link href=/css/app-b4c4f6ec.c96edfc1.css rel=stylesheet><link href=/css/app-72600b29.83c22f01.css rel=stylesheet><link href=/css/app-f035d474.0e6b8898.css rel=stylesheet><link href=/css/app-113c6c50.af06316f.css rel=stylesheet></head><body><div id=app></div></body></html>
|
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><meta name=google-site-verification content=pKAZogQ0NQ6L4j9-V58WJMjm7zYCFwkJXSJzWu9UDM8><meta name=robots content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1"><meta name=googlebot content="index, follow"><meta name=googlebot-news content="index, follow"><meta name=bingbot content="index, follow"><link rel=alternate hreflang=zh href=https://m2pool.com/zh><link rel=alternate hreflang=en href=https://m2pool.com/en><link rel=alternate hreflang=x-default href=https://m2pool.com/en><meta property=og:title content="M2pool - Stable leading high-yield mining pool"><meta property=og:description content="M2Pool provides professional mining services, supporting multiple cryptocurrency mining"><meta property=og:url content=https://m2pool.com/en><meta property=og:site_name content=M2Pool><meta property=og:type content=website><meta property=og:image content=https://m2pool.com/logo.png><link rel=icon href=/favicon.ico><link rel=stylesheet href=//at.alicdn.com/t/c/font_4582735_7i8wfzc0art.css><title>M2pool - Stable leading high-yield mining pool</title><meta name=keywords content="M2Pool, cryptocurrency mining pool,Entropyx(enx),entropyx, bitcoin mining, DGB mining, mining pool service, 加密货币矿池, 比特币挖矿, DGB挖矿"><meta name=description content="M2Pool provides professional mining services, supporting multiple cryptocurrency mining, including nexa, grs, mona, dgb, rxd, enx"><meta name=format-detection content="telephone=no"><meta name=apple-mobile-web-app-capable content=yes><script defer src=/js/chunk-vendors-945ce2fe.648a91a9.js></script><script defer src=/js/chunk-vendors-aacc2dbb.d317c558.js></script><script defer src=/js/chunk-vendors-bc050c32.3f2f14d2.js></script><script defer src=/js/chunk-vendors-3003db77.d0b93d36.js></script><script defer src=/js/chunk-vendors-9d134daf.bb668c99.js></script><script defer src=/js/chunk-vendors-439af1fa.48a48f35.js></script><script defer src=/js/chunk-vendors-5c533fba.b9c00e08.js></script><script defer src=/js/chunk-vendors-96cecd74.a7d9b845.js></script><script defer src=/js/chunk-vendors-c2f7d60e.3710fdc2.js></script><script defer src=/js/chunk-vendors-89d5c698.2190b4ca.js></script><script defer src=/js/chunk-vendors-377fed06.159de137.js></script><script defer src=/js/chunk-vendors-5a805870.4cfc0ae8.js></script><script defer src=/js/chunk-vendors-cf2e0a28.c6e99da0.js></script><script defer src=/js/app-42f9d7e6.3d6812c5.js></script><script defer src=/js/app-5c551db8.068e1f5e.js></script><script defer src=/js/app-01dc9ae1.e746f05c.js></script><script defer src=/js/app-8e0489d9.e6feb21e.js></script><script defer src=/js/app-72600b29.ec821a84.js></script><script defer src=/js/app-f035d474.30e8939b.js></script><script defer src=/js/app-113c6c50.c73554a4.js></script><link href=/css/chunk-vendors-5c533fba.6f97509c.css rel=stylesheet><link href=/css/app-42f9d7e6.21e533d7.css rel=stylesheet><link href=/css/app-01dc9ae1.04da7d85.css rel=stylesheet><link href=/css/app-8e0489d9.105c6ba3.css rel=stylesheet><link href=/css/app-72600b29.f0fc86b8.css rel=stylesheet><link href=/css/app-f035d474.0e6b8898.css rel=stylesheet><link href=/css/app-113c6c50.729eb983.css rel=stylesheet></head><body><div id=app></div></body></html>
|
||||||
1
mining-pool/test/js/app-01dc9ae1.e746f05c.js
Normal file
1
mining-pool/test/js/app-01dc9ae1.e746f05c.js
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/js/app-01dc9ae1.e746f05c.js.gz
Normal file
BIN
mining-pool/test/js/app-01dc9ae1.e746f05c.js.gz
Normal file
Binary file not shown.
1
mining-pool/test/js/app-113c6c50.c73554a4.js
Normal file
1
mining-pool/test/js/app-113c6c50.c73554a4.js
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/js/app-113c6c50.c73554a4.js.gz
Normal file
BIN
mining-pool/test/js/app-113c6c50.c73554a4.js.gz
Normal file
Binary file not shown.
1
mining-pool/test/js/app-42f9d7e6.3d6812c5.js
Normal file
1
mining-pool/test/js/app-42f9d7e6.3d6812c5.js
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/js/app-42f9d7e6.3d6812c5.js.gz
Normal file
BIN
mining-pool/test/js/app-42f9d7e6.3d6812c5.js.gz
Normal file
Binary file not shown.
1
mining-pool/test/js/app-5c551db8.068e1f5e.js
Normal file
1
mining-pool/test/js/app-5c551db8.068e1f5e.js
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/js/app-5c551db8.068e1f5e.js.gz
Normal file
BIN
mining-pool/test/js/app-5c551db8.068e1f5e.js.gz
Normal file
Binary file not shown.
1
mining-pool/test/js/app-72600b29.ec821a84.js
Normal file
1
mining-pool/test/js/app-72600b29.ec821a84.js
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/js/app-72600b29.ec821a84.js.gz
Normal file
BIN
mining-pool/test/js/app-72600b29.ec821a84.js.gz
Normal file
Binary file not shown.
1
mining-pool/test/js/app-8e0489d9.e6feb21e.js
Normal file
1
mining-pool/test/js/app-8e0489d9.e6feb21e.js
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/js/app-8e0489d9.e6feb21e.js.gz
Normal file
BIN
mining-pool/test/js/app-8e0489d9.e6feb21e.js.gz
Normal file
Binary file not shown.
@@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"><url><loc>https://m2pool.com/en</loc><lastmod>2025-04-22T06:17:28.553Z</lastmod><changefreq>daily</changefreq><priority>1.0</priority></url><url><loc>https://m2pool.com/en/dataDisplay</loc><lastmod>2025-04-22T06:17:28.553Z</lastmod><changefreq>weekly</changefreq><priority>0.8</priority></url><url><loc>https://m2pool.com/en/ServiceTerms</loc><lastmod>2025-04-22T06:17:28.553Z</lastmod><changefreq>monthly</changefreq><priority>0.6</priority></url><url><loc>https://m2pool.com/en/apiFile</loc><lastmod>2025-04-22T06:17:28.553Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/rate</loc><lastmod>2025-04-22T06:17:28.553Z</lastmod><changefreq>weekly</changefreq><priority>0.8</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/nexaAccess</loc><lastmod>2025-04-22T06:17:28.553Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/grsAccess</loc><lastmod>2025-04-22T06:17:28.553Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/monaAccess</loc><lastmod>2025-04-22T06:17:28.553Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/dgbsAccess</loc><lastmod>2025-04-22T06:17:28.553Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/dgbqAccess</loc><lastmod>2025-04-22T06:17:28.553Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/dgboAccess</loc><lastmod>2025-04-22T06:17:28.553Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/rxdAccess</loc><lastmod>2025-04-22T06:17:28.553Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url></urlset>
|
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"><url><loc>https://m2pool.com/en</loc><lastmod>2025-05-16T08:36:13.289Z</lastmod><changefreq>daily</changefreq><priority>1.0</priority></url><url><loc>https://m2pool.com/en/dataDisplay</loc><lastmod>2025-05-16T08:36:13.290Z</lastmod><changefreq>weekly</changefreq><priority>0.8</priority></url><url><loc>https://m2pool.com/en/ServiceTerms</loc><lastmod>2025-05-16T08:36:13.290Z</lastmod><changefreq>monthly</changefreq><priority>0.6</priority></url><url><loc>https://m2pool.com/en/apiFile</loc><lastmod>2025-05-16T08:36:13.290Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/rate</loc><lastmod>2025-05-16T08:36:13.290Z</lastmod><changefreq>weekly</changefreq><priority>0.8</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/nexaAccess</loc><lastmod>2025-05-16T08:36:13.290Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/grsAccess</loc><lastmod>2025-05-16T08:36:13.290Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/monaAccess</loc><lastmod>2025-05-16T08:36:13.290Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/dgbsAccess</loc><lastmod>2025-05-16T08:36:13.290Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/dgbqAccess</loc><lastmod>2025-05-16T08:36:13.290Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/dgboAccess</loc><lastmod>2025-05-16T08:36:13.290Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/rxdAccess</loc><lastmod>2025-05-16T08:36:13.290Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url></urlset>
|
||||||
Binary file not shown.
@@ -1 +1 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"><url><loc>https://m2pool.com/zh</loc><lastmod>2025-04-22T06:17:28.543Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/dataDisplay</loc><lastmod>2025-04-22T06:17:28.543Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/ServiceTerms</loc><lastmod>2025-04-22T06:17:28.543Z</lastmod><changefreq>monthly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/apiFile</loc><lastmod>2025-04-22T06:17:28.543Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/rate</loc><lastmod>2025-04-22T06:17:28.543Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/nexaAccess</loc><lastmod>2025-04-22T06:17:28.543Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/grsAccess</loc><lastmod>2025-04-22T06:17:28.543Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/monaAccess</loc><lastmod>2025-04-22T06:17:28.543Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/dgbsAccess</loc><lastmod>2025-04-22T06:17:28.543Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/dgbqAccess</loc><lastmod>2025-04-22T06:17:28.543Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/dgboAccess</loc><lastmod>2025-04-22T06:17:28.543Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/rxdAccess</loc><lastmod>2025-04-22T06:17:28.543Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url></urlset>
|
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1"><url><loc>https://m2pool.com/zh</loc><lastmod>2025-05-16T08:36:13.279Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/dataDisplay</loc><lastmod>2025-05-16T08:36:13.279Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/ServiceTerms</loc><lastmod>2025-05-16T08:36:13.279Z</lastmod><changefreq>monthly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/apiFile</loc><lastmod>2025-05-16T08:36:13.279Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/rate</loc><lastmod>2025-05-16T08:36:13.279Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/nexaAccess</loc><lastmod>2025-05-16T08:36:13.279Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/grsAccess</loc><lastmod>2025-05-16T08:36:13.279Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/monaAccess</loc><lastmod>2025-05-16T08:36:13.279Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/dgbsAccess</loc><lastmod>2025-05-16T08:36:13.279Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/dgbqAccess</loc><lastmod>2025-05-16T08:36:13.279Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/dgboAccess</loc><lastmod>2025-05-16T08:36:13.279Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/rxdAccess</loc><lastmod>2025-05-16T08:36:13.279Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url></urlset>
|
||||||
Binary file not shown.
Reference in New Issue
Block a user