测试版V1.2.0更新
This commit is contained in:
@@ -296,13 +296,12 @@ export default {
|
||||
let url = `/${lang}/AccessMiningPool`
|
||||
// 使用 name 进行导航,避免重复的路由参数
|
||||
this.$router.push({
|
||||
path:url,
|
||||
query: {
|
||||
lang: lang,
|
||||
name:'AccessMiningPool',
|
||||
params: {
|
||||
coin: this.activeItemCoin.value,
|
||||
imgUrl: this.activeItemCoin.imgUrl
|
||||
|
||||
},
|
||||
|
||||
replace: false // 保留历史记录,允许回退
|
||||
});
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ Vue.use(ElementUI, {
|
||||
});
|
||||
Vue.prototype.$axios = axios
|
||||
|
||||
// console.log = ()=>{} //全局关闭打印
|
||||
console.log = ()=>{} //全局关闭打印
|
||||
// 全局注册混入
|
||||
Vue.mixin(loadingStateMixin);//loading状态管理
|
||||
Vue.mixin(networkRecoveryMixin);//网络恢复后数据刷新
|
||||
|
||||
@@ -283,8 +283,8 @@ export default {
|
||||
this.currentRoutePath =to.path.split(`/`)[3]
|
||||
|
||||
|
||||
this.activeItem = this.currencyList.find(item => { return item.path == this.currentRoutePath })
|
||||
this.$addStorageEvent(1, `activeItem`, JSON.stringify( this.activeItem))
|
||||
// this.activeItem = this.currencyList.find(item => { return item.path == this.currentRoutePath })
|
||||
// this.$addStorageEvent(1, `activeItem`, JSON.stringify( this.activeItem))
|
||||
|
||||
|
||||
|
||||
@@ -293,94 +293,21 @@ export default {
|
||||
},
|
||||
|
||||
mounted() {
|
||||
// 优先级:路由参数 > localStorage > 默认
|
||||
let coinFromRoute = this.$route.params && this.$route.params.coin;
|
||||
let localActiveCoin = localStorage.getItem('activeCoin') ? JSON.parse(localStorage.getItem('activeCoin')) : null;
|
||||
let targetCoin = coinFromRoute || localActiveCoin || (this.currencyList[0] && this.currencyList[0].value);
|
||||
|
||||
// if (this.$route.name =="AccessMiningPool" ) {
|
||||
// this.$router.go(-1);
|
||||
// }
|
||||
this.fetchAllList(this.listParams)
|
||||
|
||||
console.log(this.$route, "this.$route.query.coin");
|
||||
|
||||
if (this.$route.query.coin) {
|
||||
this.activeCoin = this.$route.query.coin
|
||||
// this.currencyPath = this.$route.query.imgUrl
|
||||
this.imgUrl = this.$route.query.imgUrl
|
||||
this.currencyPath = this.$route.query.imgUrl
|
||||
this.params.coin = this.$route.query.coin
|
||||
this.$addStorageEvent(1, `activeCoin`, JSON.stringify(this.activeCoin))
|
||||
this.activeItem = this.currencyList.find(item => { return item.value == this.params.coin })
|
||||
const item = this.navList.find(item => { return item.coin == this.params.coin })
|
||||
console.log(item, "item65656565",this.navList,this.$route.query.coin);
|
||||
|
||||
if (item && item.coin) {
|
||||
this.clickJump(item)
|
||||
// const mockEvent = {
|
||||
// stopPropagation: () => {},
|
||||
// currentTarget: document.getElementById('menu1')
|
||||
// };
|
||||
// this.changeMenuName(mockEvent, item)
|
||||
}
|
||||
|
||||
this.activeCoin = targetCoin;
|
||||
this.activeItem = this.currencyList.find(item => item.value === targetCoin) || this.currencyList[0];
|
||||
this.params.coin = targetCoin;
|
||||
|
||||
// 如果是路由参数,记忆到localStorage
|
||||
if (coinFromRoute) {
|
||||
localStorage.setItem('activeCoin', JSON.stringify(coinFromRoute));
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
let activeCoin = localStorage.getItem("activeCoin")
|
||||
this.activeCoin = JSON.parse(activeCoin)
|
||||
let currencyList = localStorage.getItem("currencyList")
|
||||
this.currencyList = JSON.parse(currencyList)
|
||||
window.addEventListener("setItem", () => {
|
||||
let activeCoin = localStorage.getItem("activeCoin")
|
||||
this.activeCoin = JSON.parse(activeCoin)
|
||||
let currencyList = localStorage.getItem("currencyList")
|
||||
this.currencyList = JSON.parse(currencyList)
|
||||
});
|
||||
|
||||
|
||||
|
||||
if (!this.activeCoin) {
|
||||
this.activeCoin = "nexa"
|
||||
this.imgUrl = `${this.$baseApi}/img/nexa.png`
|
||||
this.currencyPath = `${this.$baseApi}/img/nexa.png`
|
||||
this.params.coin = "nexa"
|
||||
this.$addStorageEvent(1, `activeCoin`, JSON.stringify(this.activeCoin))
|
||||
this.openAPI = true
|
||||
} else {
|
||||
|
||||
// this.openAPI =true
|
||||
try {
|
||||
this.pageTitle = this.currencyList.find(item => item.value == this.activeCoin).name
|
||||
this.imgUrl = this.currencyList.find(item => item.value == this.activeCoin).imgUrl
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
// 从本地存储获取activeItem
|
||||
// const savedActiveItem = localStorage.getItem('activeItem');
|
||||
// if (savedActiveItem) {
|
||||
// try {
|
||||
// this.activeItem = JSON.parse(savedActiveItem);
|
||||
// } catch (error) {
|
||||
// console.error('Parse activeItem failed:', error);
|
||||
// // 使用默认值
|
||||
// this.activeItem = this.currencyList[0];
|
||||
// }
|
||||
// } else {
|
||||
// // 没有存储值时使用默认值
|
||||
// this.activeItem = this.currencyList[0];
|
||||
// }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
this.fetchAllList(this.listParams);
|
||||
},
|
||||
methods: {
|
||||
async fetchAllList(params){
|
||||
@@ -444,6 +371,7 @@ export default {
|
||||
},
|
||||
changeMenuName(e, item) {
|
||||
|
||||
console.log(`走移动端了?`);
|
||||
|
||||
|
||||
if (!e) return;
|
||||
@@ -481,6 +409,7 @@ export default {
|
||||
this.DetailsParams.id = item.id
|
||||
this.DetailsParams.coin = item.coin
|
||||
this.activeCoin = item.coin
|
||||
localStorage.setItem('activeCoin', JSON.stringify(this.activeCoin))
|
||||
this.fetchProblemDetails(this.DetailsParams)
|
||||
// if (!item.path) return; // 添加路径检查
|
||||
// this.activeCoin = item.value
|
||||
|
||||
@@ -50,10 +50,10 @@
|
||||
<section class="menu">
|
||||
|
||||
<ul>
|
||||
{{ DetailsParams.coin }}
|
||||
{{activeCoin }}
|
||||
<li
|
||||
|
||||
:class="{ active: DetailsParams.coin == item.coin }"
|
||||
:class="{ active: activeCoin == item.coin }"
|
||||
@click="clickJump(item)"
|
||||
v-for="item in navList"
|
||||
:key="item.id"
|
||||
|
||||
@@ -1568,9 +1568,8 @@ export default {
|
||||
let url = `/${this.lang}/AccessMiningPool`
|
||||
// 使用 name 进行导航,避免重复的路由参数
|
||||
this.$router.push({
|
||||
path:url,
|
||||
query: {
|
||||
lang: this.lang,
|
||||
name:'AccessMiningPool',
|
||||
params: {
|
||||
coin: this.params.coin,
|
||||
imgUrl: this.currencyPath
|
||||
|
||||
|
||||
Binary file not shown.
1
mining-pool/test/css/app-0a0a89cb.3a738b58.css
Normal file
1
mining-pool/test/css/app-0a0a89cb.3a738b58.css
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/css/app-0a0a89cb.3a738b58.css.gz
Normal file
BIN
mining-pool/test/css/app-0a0a89cb.3a738b58.css.gz
Normal file
Binary file not shown.
1
mining-pool/test/css/app-113c6c50.e7088500.css
Normal file
1
mining-pool/test/css/app-113c6c50.e7088500.css
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/css/app-113c6c50.e7088500.css.gz
Normal file
BIN
mining-pool/test/css/app-113c6c50.e7088500.css.gz
Normal file
Binary file not shown.
1
mining-pool/test/css/app-7023e5b0.b2dd9d63.css
Normal file
1
mining-pool/test/css/app-7023e5b0.b2dd9d63.css
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/css/app-7023e5b0.b2dd9d63.css.gz
Normal file
BIN
mining-pool/test/css/app-7023e5b0.b2dd9d63.css.gz
Normal file
Binary file not shown.
1
mining-pool/test/css/app-b4c4f6ec.855e5d4c.css
Normal file
1
mining-pool/test/css/app-b4c4f6ec.855e5d4c.css
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/css/app-b4c4f6ec.855e5d4c.css.gz
Normal file
BIN
mining-pool/test/css/app-b4c4f6ec.855e5d4c.css.gz
Normal file
Binary file not shown.
1
mining-pool/test/css/app-d87c119a.c835515c.css
Normal file
1
mining-pool/test/css/app-d87c119a.c835515c.css
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/css/app-d87c119a.c835515c.css.gz
Normal file
BIN
mining-pool/test/css/app-d87c119a.c835515c.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_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-c5c6856a.635a8cad.js></script><script defer src=/js/chunk-vendors-cca472bf.9545e49e.js></script><script defer src=/js/chunk-vendors-377fed06.79dbd1e2.js></script><script defer src=/js/chunk-vendors-0dc8c06b.8c238ff1.js></script><script defer src=/js/chunk-vendors-5fc483a3.764e837b.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/chunk-vendors-c9ff040c.57bd8c18.js></script><script defer src=/js/app-42f9d7e6.a2ad6942.js></script><script defer src=/js/app-d87c119a.ee3211eb.js></script><script defer src=/js/app-5c551db8.905e7865.js></script><script defer src=/js/app-b4c4f6ec.f05c7060.js></script><script defer src=/js/app-45954fd3.d2156f4b.js></script><script defer src=/js/app-a6ba6ead.0e42fe00.js></script><script defer src=/js/app-af2560cd.85129667.js></script><script defer src=/js/app-0a0a89cb.265f0701.js></script><script defer src=/js/app-abee3193.b1fe66b4.js></script><script defer src=/js/app-f035d474.a2a8f5af.js></script><script defer src=/js/app-7023e5b0.3fe9d138.js></script><script defer src=/js/app-113c6c50.88a0041a.js></script><link href=/css/chunk-vendors-5c533fba.6f97509c.css rel=stylesheet><link href=/css/chunk-vendors-cca472bf.3cf4fa64.css rel=stylesheet><link href=/css/app-42f9d7e6.3510b1e0.css rel=stylesheet><link href=/css/app-d87c119a.e332b0bd.css rel=stylesheet><link href=/css/app-b4c4f6ec.61949656.css rel=stylesheet><link href=/css/app-0a0a89cb.2754ed98.css rel=stylesheet><link href=/css/app-abee3193.46a8002a.css rel=stylesheet><link href=/css/app-f035d474.0348646a.css rel=stylesheet><link href=/css/app-7023e5b0.e2d4ad34.css rel=stylesheet><link href=/css/app-113c6c50.4361cf69.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/chunk-vendors-c9ff040c.57bd8c18.js></script><script defer src=/js/app-42f9d7e6.a2ad6942.js></script><script defer src=/js/app-d87c119a.4cb0202f.js></script><script defer src=/js/app-5c551db8.84d543aa.js></script><script defer src=/js/app-b4c4f6ec.eb8c1455.js></script><script defer src=/js/app-45954fd3.d2156f4b.js></script><script defer src=/js/app-a6ba6ead.ce3a9923.js></script><script defer src=/js/app-af2560cd.7ed13436.js></script><script defer src=/js/app-0a0a89cb.617c0d7d.js></script><script defer src=/js/app-f035d474.a2a8f5af.js></script><script defer src=/js/app-7023e5b0.fc505df9.js></script><script defer src=/js/app-113c6c50.f41deb32.js></script><link href=/css/chunk-vendors-5c533fba.6f97509c.css rel=stylesheet><link href=/css/app-42f9d7e6.3510b1e0.css rel=stylesheet><link href=/css/app-d87c119a.c835515c.css rel=stylesheet><link href=/css/app-b4c4f6ec.855e5d4c.css rel=stylesheet><link href=/css/app-0a0a89cb.3a738b58.css rel=stylesheet><link href=/css/app-f035d474.0348646a.css rel=stylesheet><link href=/css/app-7023e5b0.b2dd9d63.css rel=stylesheet><link href=/css/app-113c6c50.e7088500.css rel=stylesheet></head><body><div id=app></div></body></html>
|
||||
1
mining-pool/test/js/app-0a0a89cb.617c0d7d.js
Normal file
1
mining-pool/test/js/app-0a0a89cb.617c0d7d.js
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/js/app-0a0a89cb.617c0d7d.js.gz
Normal file
BIN
mining-pool/test/js/app-0a0a89cb.617c0d7d.js.gz
Normal file
Binary file not shown.
1
mining-pool/test/js/app-113c6c50.f41deb32.js
Normal file
1
mining-pool/test/js/app-113c6c50.f41deb32.js
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/js/app-113c6c50.f41deb32.js.gz
Normal file
BIN
mining-pool/test/js/app-113c6c50.f41deb32.js.gz
Normal file
Binary file not shown.
1
mining-pool/test/js/app-5c551db8.84d543aa.js
Normal file
1
mining-pool/test/js/app-5c551db8.84d543aa.js
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/js/app-5c551db8.84d543aa.js.gz
Normal file
BIN
mining-pool/test/js/app-5c551db8.84d543aa.js.gz
Normal file
Binary file not shown.
1
mining-pool/test/js/app-7023e5b0.fc505df9.js
Normal file
1
mining-pool/test/js/app-7023e5b0.fc505df9.js
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/js/app-7023e5b0.fc505df9.js.gz
Normal file
BIN
mining-pool/test/js/app-7023e5b0.fc505df9.js.gz
Normal file
Binary file not shown.
1
mining-pool/test/js/app-a6ba6ead.ce3a9923.js
Normal file
1
mining-pool/test/js/app-a6ba6ead.ce3a9923.js
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/js/app-a6ba6ead.ce3a9923.js.gz
Normal file
BIN
mining-pool/test/js/app-a6ba6ead.ce3a9923.js.gz
Normal file
Binary file not shown.
1
mining-pool/test/js/app-af2560cd.7ed13436.js
Normal file
1
mining-pool/test/js/app-af2560cd.7ed13436.js
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/js/app-af2560cd.7ed13436.js.gz
Normal file
BIN
mining-pool/test/js/app-af2560cd.7ed13436.js.gz
Normal file
Binary file not shown.
1
mining-pool/test/js/app-b4c4f6ec.eb8c1455.js
Normal file
1
mining-pool/test/js/app-b4c4f6ec.eb8c1455.js
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/js/app-b4c4f6ec.eb8c1455.js.gz
Normal file
BIN
mining-pool/test/js/app-b4c4f6ec.eb8c1455.js.gz
Normal file
Binary file not shown.
1
mining-pool/test/js/app-d87c119a.4cb0202f.js
Normal file
1
mining-pool/test/js/app-d87c119a.4cb0202f.js
Normal file
File diff suppressed because one or more lines are too long
BIN
mining-pool/test/js/app-d87c119a.4cb0202f.js.gz
Normal file
BIN
mining-pool/test/js/app-d87c119a.4cb0202f.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-07-31T07:15:06.269Z</lastmod><changefreq>daily</changefreq><priority>1.0</priority></url><url><loc>https://m2pool.com/en/dataDisplay</loc><lastmod>2025-07-31T07:15:06.269Z</lastmod><changefreq>weekly</changefreq><priority>0.8</priority></url><url><loc>https://m2pool.com/en/ServiceTerms</loc><lastmod>2025-07-31T07:15:06.269Z</lastmod><changefreq>monthly</changefreq><priority>0.6</priority></url><url><loc>https://m2pool.com/en/apiFile</loc><lastmod>2025-07-31T07:15:06.269Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/rate</loc><lastmod>2025-07-31T07:15:06.269Z</lastmod><changefreq>weekly</changefreq><priority>0.8</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/nexaAccess</loc><lastmod>2025-07-31T07:15:06.269Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/grsAccess</loc><lastmod>2025-07-31T07:15:06.269Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/monaAccess</loc><lastmod>2025-07-31T07:15:06.269Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/dgbsAccess</loc><lastmod>2025-07-31T07:15:06.269Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/dgbqAccess</loc><lastmod>2025-07-31T07:15:06.269Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/dgboAccess</loc><lastmod>2025-07-31T07:15:06.269Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/rxdAccess</loc><lastmod>2025-07-31T07:15:06.269Z</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-08-01T09:09:41.699Z</lastmod><changefreq>daily</changefreq><priority>1.0</priority></url><url><loc>https://m2pool.com/en/dataDisplay</loc><lastmod>2025-08-01T09:09:41.699Z</lastmod><changefreq>weekly</changefreq><priority>0.8</priority></url><url><loc>https://m2pool.com/en/ServiceTerms</loc><lastmod>2025-08-01T09:09:41.699Z</lastmod><changefreq>monthly</changefreq><priority>0.6</priority></url><url><loc>https://m2pool.com/en/apiFile</loc><lastmod>2025-08-01T09:09:41.699Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/rate</loc><lastmod>2025-08-01T09:09:41.699Z</lastmod><changefreq>weekly</changefreq><priority>0.8</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/nexaAccess</loc><lastmod>2025-08-01T09:09:41.699Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/grsAccess</loc><lastmod>2025-08-01T09:09:41.699Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/monaAccess</loc><lastmod>2025-08-01T09:09:41.699Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/dgbsAccess</loc><lastmod>2025-08-01T09:09:41.699Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/dgbqAccess</loc><lastmod>2025-08-01T09:09:41.699Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/dgboAccess</loc><lastmod>2025-08-01T09:09:41.699Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/en/AccessMiningPool/rxdAccess</loc><lastmod>2025-08-01T09:09:41.699Z</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-07-31T07:15:06.261Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/dataDisplay</loc><lastmod>2025-07-31T07:15:06.261Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/ServiceTerms</loc><lastmod>2025-07-31T07:15:06.261Z</lastmod><changefreq>monthly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/apiFile</loc><lastmod>2025-07-31T07:15:06.261Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/rate</loc><lastmod>2025-07-31T07:15:06.261Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/nexaAccess</loc><lastmod>2025-07-31T07:15:06.261Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/grsAccess</loc><lastmod>2025-07-31T07:15:06.261Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/monaAccess</loc><lastmod>2025-07-31T07:15:06.261Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/dgbsAccess</loc><lastmod>2025-07-31T07:15:06.261Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/dgbqAccess</loc><lastmod>2025-07-31T07:15:06.261Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/dgboAccess</loc><lastmod>2025-07-31T07:15:06.261Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/rxdAccess</loc><lastmod>2025-07-31T07:15:06.261Z</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-08-01T09:09:41.687Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/dataDisplay</loc><lastmod>2025-08-01T09:09:41.687Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/ServiceTerms</loc><lastmod>2025-08-01T09:09:41.687Z</lastmod><changefreq>monthly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/apiFile</loc><lastmod>2025-08-01T09:09:41.687Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/rate</loc><lastmod>2025-08-01T09:09:41.687Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/nexaAccess</loc><lastmod>2025-08-01T09:09:41.687Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/grsAccess</loc><lastmod>2025-08-01T09:09:41.687Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/monaAccess</loc><lastmod>2025-08-01T09:09:41.687Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/dgbsAccess</loc><lastmod>2025-08-01T09:09:41.687Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/dgbqAccess</loc><lastmod>2025-08-01T09:09:41.687Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/dgboAccess</loc><lastmod>2025-08-01T09:09:41.687Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url><url><loc>https://m2pool.com/zh/AccessMiningPool/rxdAccess</loc><lastmod>2025-08-01T09:09:41.687Z</lastmod><changefreq>weekly</changefreq><priority>0.7</priority></url></urlset>
|
||||
Binary file not shown.
Reference in New Issue
Block a user