diff --git a/mining-pool/package.json b/mining-pool/package.json index 3e49b0e..819c5df 100644 --- a/mining-pool/package.json +++ b/mining-pool/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "scripts": { - "serve": "set NODE_OPTIONS=--max-old-space-size=8192 && vue-cli-service serve", + "serve": "vue-cli-service serve", "build": "vue-cli-service build", "test": "vue-cli-service build --mode staging --dest test", "lint": "vue-cli-service lint" diff --git a/mining-pool/src/i18n/backendSystem.js b/mining-pool/src/i18n/backendSystem.js index 76804a9..806cc9c 100644 --- a/mining-pool/src/i18n/backendSystem.js +++ b/mining-pool/src/i18n/backendSystem.js @@ -27,6 +27,7 @@ export const backendSystem_zh = { editContent:"修改广播内容", dialogTitle:"新增广播内容", pleaseInputContent:"请输入广播内容", + pleaseInputContent2:"请输入内容", newlineInvalid:"广播内容输入换行符无效", onlineUserNum:"在线数量", offlineUserNum:"离线数量", @@ -148,6 +149,7 @@ export const backendSystem_zh = { contentReset:"内容已重置", selectCurrency:"选择币种", pleaseSelectCurrency2:"添加挖矿教程,请选择币种", + pleaseInputTitle:"请输入标题", } } @@ -303,6 +305,9 @@ export const backendSystem_en = { contentReset:"Content has been reset", selectCurrency:"Select Currency", pleaseSelectCurrency2:"Please select a currency when adding mining tutorials", + pleaseInputContent2:"Please input content", + pleaseInputTitle:"Please input title", + } } diff --git a/mining-pool/src/views/AccessMiningPool/index.vue b/mining-pool/src/views/AccessMiningPool/index.vue index 41aab38..18a3d7a 100644 --- a/mining-pool/src/views/AccessMiningPool/index.vue +++ b/mining-pool/src/views/AccessMiningPool/index.vue @@ -50,7 +50,7 @@ +
@@ -52,10 +54,13 @@ :placeholder="$t('backendSystem.pleaseInputDocumentTitle') || '请输入文档标题'" @input="handleAutoSave" size="medium" + maxlength="30" + show-word-limit />
+
@@ -138,11 +145,11 @@ {{ $t('backendSystem.richTextEditor') || '富文本编辑器' }}
-
+
- +
@@ -364,8 +371,24 @@ export default Vue.extend({ handelAddDocument() { + // 强制同步编辑器内容 + if (this.editor) { + this.addParams.content = this.editor.txt.html(); + } + console.log(this.addParams.content, "this.addParams.content"); + if (!this.addParams.content.trim()) { + this.$message({ + message: + this.$t("backendSystem.pleaseInputContent2") || + "请输入内容", + type: "warning", + duration: 4000, + showClose: true, + }); + return; + } - if (!this.addParams.type || this.addParams.type == "0") { + if (!this.addParams.type) { this.$message({ message: this.$t('backendSystem.pleaseInputType') || '请填写文档类型', type: "warning", @@ -375,7 +398,33 @@ export default Vue.extend({ return; } - console.log(this.screenCurrency, "this.screenCurrency",this.addParams.type); + console.log(this.addParams.type,this.addParams.childType, "this.addP就发货很符合arams.type"); + + + if (this.addParams.type == `0` && (!this.addParams.childType || this.addParams.childType == `0`) ) { + this.$message({ + message: this.$t('backendSystem.pleaseInputType') || '请填写文档类型', + type: "warning", + duration: 4000, + showClose: true, + }); + return; + } + + if (!this.addParams.title) { + this.$message({ + message: + this.$t("backendSystem.pleaseInputTitle") || + "请输入标题", + type: "warning", + duration: 4000, + showClose: true, + }); + return; + } + + + if (this.addParams.type == "1" && !this.screenCurrency) { this.$message({ @@ -446,13 +495,22 @@ export default Vue.extend({ this.handleAutoSave(); }, handleAutoSaveType(type) { + + try { + if (type.length == 0) return; + console.log(`走这里了嘛`,type); let item = this.TypeList.find((item) => item.value === type[0]); + console.log(item, type,"item"); if (item.articleUrl) { this.addParams.articleUrl = item.articleUrl; - } else { + } else if (item.children && item.children.length > 0) { + let childItem = item.children.find((child) => child.value === type[1]); + this.addParams.articleUrl = childItem.articleUrl; + }else{ this.addParams.articleUrl = ""; } + this.addParams.type = type[0]; this.addParams.childType = type[1]; } catch (error) { @@ -469,6 +527,11 @@ export default Vue.extend({ this.autoSaveTimer = setTimeout(() => { this.saveToLocalStorage(); }, 1500); // 减少到1.5秒,提高响应速度 + + + + + }, handleAutoSave() { @@ -483,13 +546,13 @@ export default Vue.extend({ this.saveToLocalStorage(); }, 1500); // 减少到1.5秒,提高响应速度 - if (this.addParams.type == "2") { - //常见问题 - this.addParams.articleUrl = `commonProblem`; - } else if (this.addParams.type == "3") { - //公告中心 - this.addParams.articleUrl = `announcementDetails`; - } + // if (this.addParams.type == "2") { + // //常见问题 + // this.addParams.articleUrl = `commonProblem`; + // } else if (this.addParams.type == "3") { + // //公告中心 + // this.addParams.articleUrl = `announcementDetails`; + // } }, saveToLocalStorage() { @@ -542,7 +605,10 @@ export default Vue.extend({ // 使用 $nextTick 确保 DOM 更新后再设置内容 this.$nextTick(() => { - this.addParams.title = data.title || ""; + if (data.type !== `0`) { + + + this.addParams.title = data.title || ""; this.addParams.content = data.content || ""; this.addParams.type = data.type || "1"; this.addParams.imageUrl = data.imageUrl || ""; @@ -552,6 +618,8 @@ export default Vue.extend({ if (this.editor) { this.editor.txt.html(data.content || ""); } + } + }); } } catch (error) { @@ -676,13 +744,16 @@ export default Vue.extend({ .editor-page { width: 100%; margin: 0 auto; - padding: 20px; + padding: 10px; background: #f8f9fa; min-height: 60vh; - overflow-y: auto; - + // overflow-y: auto; + } + + + /* 页面头部样式 */ .page-header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); @@ -744,7 +815,12 @@ export default Vue.extend({ transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); } - +.content-section{ + width: 100%; + height: 80%; + overflow-y: auto; + padding: 10px; +} /* 配置区域样式 */ .config-section { background: white; @@ -825,7 +901,7 @@ export default Vue.extend({ /* 设置编辑器高度 */ ::v-deep .editor-container .w-e-text-container { - height: 600px !important; + // height: 600px !important; min-height: 600px !important; z-index: 1 !important; position: relative; diff --git a/mining-pool/src/views/editorDocument.vue b/mining-pool/src/views/editorDocument.vue index dd42501..3b3a112 100644 --- a/mining-pool/src/views/editorDocument.vue +++ b/mining-pool/src/views/editorDocument.vue @@ -149,22 +149,22 @@ export default Vue.extend({ previewVisible: false, // 新增:控制预览对话框的显示 currentTime: '', // 新增:记录预览时间 TypeList:[ - { - value:"1", - label:"服务条款" - }, - { - value:"2", - label:"api文档" - }, - { - value:"3", - label:"挖矿教程" - }, - { - value:"0", - label:"其他" - } + // { + // value:"1", + // label:"服务条款" + // }, + // { + // value:"2", + // label:"api文档" + // }, + // { + // value:"3", + // label:"挖矿教程" + // }, + // { + // value:"0", + // label:"其他" + // } ], } diff --git a/mining-pool/src/views/helpCenter/index.js b/mining-pool/src/views/helpCenter/index.js index 0890e0f..9815e6e 100644 --- a/mining-pool/src/views/helpCenter/index.js +++ b/mining-pool/src/views/helpCenter/index.js @@ -26,41 +26,41 @@ export default{ ], /** 活动数据 */ activities: [ - { - id: 1, - type: '最新公告', - title: 'LKY将停减税', - author: '文章ID1星期 主发布', - comments: '0' - }, - { - id: 2, - type: '最新公告', - title: 'PFP将停减税', - author: '文章ID1星期 11发布', - comments: '0' - }, - { - id: 3, - type: '最新公告', - title: 'ETC+ZIL停研发综合日获得', - author: '文章ID1星期 15发布', - comments: '0' - }, - { - id: 4, - type: '最新公告', - title: '预计2023年06月19日SCC收益分配说明', - author: '文章ID1星期 18发布', - comments: '0' - }, - { - id: 5, - type: '其他', - title: '关于临时(信为网站、备案管理、矿池编码)', - author: '文章ID1星期 19发布', - comments: '0' - } + // { + // id: 1, + // type: '最新公告', + // title: 'LKY将停减税', + // author: '文章ID1星期 主发布', + // comments: '0' + // }, + // { + // id: 2, + // type: '最新公告', + // title: 'PFP将停减税', + // author: '文章ID1星期 11发布', + // comments: '0' + // }, + // { + // id: 3, + // type: '最新公告', + // title: 'ETC+ZIL停研发综合日获得', + // author: '文章ID1星期 15发布', + // comments: '0' + // }, + // { + // id: 4, + // type: '最新公告', + // title: '预计2023年06月19日SCC收益分配说明', + // author: '文章ID1星期 18发布', + // comments: '0' + // }, + // { + // id: 5, + // type: '其他', + // title: '关于临时(信为网站、备案管理、矿池编码)', + // author: '文章ID1星期 19发布', + // comments: '0' + // } ], activeParams:{ type:"3",//公告中心 diff --git a/mining-pool/src/views/userDetails/index.vue b/mining-pool/src/views/userDetails/index.vue index a3e4f51..7aff705 100644 --- a/mining-pool/src/views/userDetails/index.vue +++ b/mining-pool/src/views/userDetails/index.vue @@ -146,7 +146,7 @@ {{ handelTime(scope.row.createDate ) }} --> - + @@ -154,13 +154,13 @@ - - + + - + - + diff --git a/mining-pool/test.zip b/mining-pool/test.zip index b7d00f0..8d09589 100644 Binary files a/mining-pool/test.zip and b/mining-pool/test.zip differ diff --git a/mining-pool/test/css/app-113c6c50.36a20683.css b/mining-pool/test/css/app-113c6c50.36a20683.css new file mode 100644 index 0000000..74054fa --- /dev/null +++ b/mining-pool/test/css/app-113c6c50.36a20683.css @@ -0,0 +1 @@ +@media screen and (min-width:220px)and (max-width:1279px){.Block[data-v-d42df632]{width:100%;background:transparent!important;padding-top:10px!important}.currencySelect[data-v-d42df632]{display:flex;align-items:center;margin-bottom:10px;padding-left:8px;font-size:.85rem}.currencySelect .el-menu-demo[data-v-d42df632]{width:100%}.currencySelect .el-menu[data-v-d42df632]{background:transparent}.currencySelect .coinSelect img[data-v-d42df632]{width:25px}.currencySelect .coinSelect span[data-v-d42df632]{text-transform:capitalize;margin-left:5px}.moveCurrencyBox[data-v-d42df632]{margin:0;padding:0;width:100%;display:flex;min-height:200px;flex-wrap:wrap;padding:10px 20px;margin:0 auto;background:#fff}.moveCurrencyBox li[data-v-d42df632]{list-style:none;display:flex;flex-direction:column;align-items:center!important;margin-left:10px;padding:5px 5px;box-sizing:border-box}.moveCurrencyBox li img[data-v-d42df632]{width:25px}.moveCurrencyBox li p[data-v-d42df632]{min-width:50px;margin-top:8px;font-size:.85rem;word-wrap:break-word;word-break:break-all;text-align:center;text-transform:capitalize}.luckyBox[data-v-d42df632]{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between!important;width:100%;height:auto!important}.luckyBox .luckyItem[data-v-d42df632]{width:155px!important;margin-left:2%!important;height:88px!important;margin-top:10px;justify-content:space-between!important;padding-bottom:10px}.luckyBox .luckyItem .text[data-v-d42df632]{font-size:1.8rem!important}.tableBox[data-v-d42df632]{margin:0 auto;width:95%;min-height:300px;overflow:hidden;border-radius:8px;font-size:.9rem;margin-bottom:20px;box-shadow:0 0 5px 2px #ccc;margin-top:10px}.tableBox .table-title[data-v-d42df632]{height:50px;background:#d2c4e8;display:flex;justify-content:space-around;align-items:center;font-weight:600;padding-left:0!important}.tableBox .table-title span[data-v-d42df632]{text-align:center}.tableBox .table-title span[data-v-d42df632]:first-of-type{width:30%!important}.tableBox .table-title span[data-v-d42df632]:nth-of-type(2){width:70%!important}.tableBox .collapseTitle[data-v-d42df632]{width:100%;display:flex;justify-content:space-around;align-items:center;padding-left:0!important}.tableBox .collapseTitle span[data-v-d42df632]{text-align:center}.tableBox .collapseTitle span[data-v-d42df632]:first-of-type{width:30%!important}.tableBox .collapseTitle span[data-v-d42df632]:nth-of-type(2){width:70%!important}.tableBox .belowTable[data-v-d42df632]{display:flex;justify-content:space-between}.tableBox .belowTable div[data-v-d42df632]{width:50%;height:auto;text-align:left;padding-left:8%}.tableBox #hash[data-v-d42df632]{width:100%;padding-left:8%;margin-top:8px}.tableBox #hash .text[data-v-d42df632]{width:93%;height:auto;word-wrap:break-word;overflow-wrap:break-word;color:#8f61f5;text-decoration:underline}.tableBox .paginationBox[data-v-d42df632]{text-align:center}[data-v-d42df632] .el-pager li{min-width:19px}[data-v-d42df632] .el-pagination .el-select .el-input{margin:0}.el-pagination button[data-v-d42df632],.el-pagination span[data-v-d42df632]:not([class*=suffix]){min-width:20px}[data-v-d42df632] .el-pagination .btn-next,[data-v-d42df632] .el-pagination .btn-prev{padding:0!important;min-width:auto}[data-v-d42df632] .el-pagination .el-select .el-input{width:92px}}#boxTitle2[data-title][data-v-d42df632]{position:relative;display:inline-block}#boxTitle2[data-title][data-v-d42df632]:hover:after{opacity:1;transition:all .1s ease .5s;visibility:visible}#boxTitle2[data-title][data-v-d42df632]:after{min-width:180PX;max-width:300PX;content:attr(data-title);position:absolute;padding:5PX 10PX;right:28PX;border-radius:4PX;color:hsla(0,0%,100%,.8);background-color:rgba(80,79,79,.8);box-shadow:0 0 4PX rgba(0,0,0,.16);font-size:.8rem;visibility:hidden;opacity:0;text-align:center;overflow-wrap:break-word!important}.Block[data-v-d42df632]{background:#fff;background-image:url(/img/top.7f0acfc3.png);background-size:100% 50%;background-repeat:no-repeat;background-position:30% -15%;padding-top:60PX}.BlockTop[data-v-d42df632]{width:75%;margin:0 auto}.luckyBox[data-v-d42df632]{width:100%;height:280PX;border-radius:10PX;transition:all .3s linear;padding:0;display:flex;flex-wrap:wrap;justify-content:left;padding:10PX 10PX}.luckyBox .luckyItem[data-v-d42df632]{background:#d2c3ea;width:38%;height:45%;border-radius:5PX;display:flex;flex-direction:column;justify-content:left;align-items:center;color:#fff;font-weight:600;background-image:linear-gradient(-20deg,#b868da,#89e0f3);margin-left:50PX}.luckyBox .luckyItem span[data-v-d42df632]{font-size:.9em}.luckyBox .luckyItem .title[data-v-d42df632]{width:100%;height:35%;display:inline-block;text-align:right;padding:10PX 15PX}.luckyBox .luckyItem .text[data-v-d42df632]{font-size:2.5em}.luckyBox .luckyItem[data-v-d42df632]:hover{border:1PX solid #d2c3ea}.luckyBox p[data-v-d42df632]{width:100%;text-align:right;padding-right:10%}.luckyBox ul[data-v-d42df632]{padding:0;width:95%;padding-left:5%;height:90%}.luckyBox ul li[data-v-d42df632]{list-style:none;display:flex;width:100%;align-items:center;justify-content:space-between;height:20%}.luckyBox ul li .progressBar[data-v-d42df632]{width:82%;margin-left:1%;overflow:hidden}.luckyBox .progress-container[data-v-d42df632]{display:flex;align-items:center}.luckyBox .progress-bar[data-v-d42df632]{width:80%;height:10PX;background-color:#f0f0f0;border-radius:5PX}.luckyBox .progress[data-v-d42df632]{height:100%;background-color:#4caf50;border-radius:10PX;transition:width .3s ease;background:linear-gradient(180deg,#d0c7ec 60%,#6427df 0);margin-left:-3PX}.luckyBox .progress7[data-v-d42df632]{height:100%;background-color:#4caf50;border-radius:25PX;transition:width .3s ease;background:linear-gradient(180deg,#f4da95 60%,#ceac37 0);margin-left:-3PX}.luckyBox .progress30[data-v-d42df632]{height:100%;background-color:#4caf50;border-radius:25PX;transition:width .3s ease;background:linear-gradient(180deg,#7bd28e 60%,#349b53 0);margin-left:-3PX}.luckyBox .progress90[data-v-d42df632]{height:100%;background-color:#4caf50;border-radius:25PX;transition:width .3s ease;background:linear-gradient(180deg,#fcbad0 60%,#f2407c 0);margin-left:-3PX}.luckyBox .progress-percentage[data-v-d42df632]{width:20%;text-align:right;padding-right:5PX}[data-v-d42df632] .el-progress__text{text-align:left}.currencyBox[data-v-d42df632]{width:100%;display:flex;justify-content:left;align-items:start;padding:10PX 10PX;height:280PX;flex-wrap:wrap;box-shadow:0 0 10PX 3PX #ccc;border-radius:2%;background:#fff;transition:all .3s linear;overflow:hidden;overflow-y:auto}.currencyBox .sunCurrency[data-v-d42df632]{display:flex;justify-content:space-around;align-items:center;flex-direction:column;padding:8PX 5PX;border-radius:22PX;width:18%;cursor:pointer;margin-left:8PX;font-size:1em;text-align:center;height:100PX;transition:all .2s linear}.currencyBox .sunCurrency img[data-v-d42df632]{width:38PX;transition:all .2s linear}.currencyBox .sunCurrency span[data-v-d42df632]{text-transform:capitalize;margin-top:5PX;width:100%;font-size:.7em;padding:5PX 0;border-radius:5PX}.currencyBox .sunCurrency[data-v-d42df632]:hover{font-size:1.1em;box-shadow:0 0 5PX 3PX rgba(210,195,234,.8)}.currencyBox .sunCurrency:hover img[data-v-d42df632]{width:40PX}.currencyBox[data-v-d42df632]:hover{box-shadow:3PX 3PX 20PX 3PX #c1a1fe}.reportBlock[data-v-d42df632]{width:100%;display:flex;justify-content:center;margin-top:1%;padding-bottom:1%;background-size:100% 40%;background-repeat:no-repeat;background-position:30% 130%}.reportBlock .reportBlockBox[data-v-d42df632]{width:100%;height:100%;display:flex;justify-content:space-between;flex-direction:column;align-items:center}.reportBlock .reportBlockBox .top[data-v-d42df632]{width:100%;height:18%;display:flex;align-items:center;justify-content:center;border-bottom:1PX solid rgba(0,0,0,.1);padding:20PX 0;color:#fff;font-weight:600}.reportBlock .reportBlockBox .top .lucky[data-v-d42df632]{display:flex;align-items:center;flex-direction:column;justify-content:center}.reportBlock .reportBlockBox .top .lucky .luckyNum[data-v-d42df632]{font-size:1.8em}.reportBlock .reportBlockBox .top .lucky .luckyText[data-v-d42df632]{font-size:1em;margin-top:5%}.reportBlock .reportBlockBox .top div[data-v-d42df632]{width:16%;background:#2eaeff;height:100%;display:flex;align-items:center;justify-content:space-around;margin-left:5%;border-radius:10PX;box-shadow:0 8PX 20PX 0 rgba(46,174,255,.5)}.reportBlock .reportBlockBox .belowTable[data-v-d42df632]{width:75%;max-height:80%;display:flex;justify-content:center;flex-direction:column;align-items:center;border-radius:10PX;overflow:hidden;transition:all .3s linear;margin-bottom:120PX}.reportBlock .reportBlockBox .belowTable .table-title[data-v-d42df632]{width:100%;display:flex;align-items:center;height:68PX;position:sticky;top:0;background:#d2c3ea;padding:0 10PX;color:#4e3e7d;position:relative}.reportBlock .reportBlockBox .belowTable .table-title span[data-v-d42df632]{height:100%;width:20%;line-height:63PX;font-size:.95rem;font-weight:600;text-align:center}.reportBlock .reportBlockBox .belowTable .table-title .hash[data-v-d42df632]{width:58%;font-size:.95rem;text-align:left;margin-left:5%;justify-content:left}.reportBlock .reportBlockBox .belowTable .table-title .blockRewards[data-v-d42df632]{width:20%;font-weight:600;font-size:.95rem;text-align:left;margin-left:1%}.reportBlock .reportBlockBox .belowTable .table-title .transactionFee[data-v-d42df632]{width:18%;font-weight:600;font-size:.95rem}.reportBlock .reportBlockBox .belowTable .table-title span[data-v-d42df632]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:flex;align-items:center;justify-content:center}.reportBlock .reportBlockBox .belowTable ul[data-v-d42df632]{width:100%;min-height:200PX;max-height:818PX;padding:0;background:#fff;margin:0;overflow:hidden;overflow-y:auto}.reportBlock .reportBlockBox .belowTable ul .table-title[data-v-d42df632]{position:sticky;top:0;background:#d2c3ea;padding:0 10PX;color:#4e3e7d;position:relative}.reportBlock .reportBlockBox .belowTable ul .table-title .hash[data-v-d42df632]{width:50%;text-align:left}.reportBlock .reportBlockBox .belowTable ul .table-title .blockRewards[data-v-d42df632],.reportBlock .reportBlockBox .belowTable ul .table-title .transactionFee[data-v-d42df632]{width:18%;font-weight:600}.reportBlock .reportBlockBox .belowTable ul .table-title span[data-v-d42df632]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:flex;align-items:center;justify-content:center}.reportBlock .reportBlockBox .belowTable ul li[data-v-d42df632]{width:100%;list-style:none;display:flex;cursor:pointer;justify-content:space-around;align-items:center;height:9%}.reportBlock .reportBlockBox .belowTable ul li span[data-v-d42df632]{height:100%;width:20%;line-height:63PX;font-size:.95rem;font-weight:600;text-align:center}.reportBlock .reportBlockBox .belowTable ul li[data-v-d42df632]:nth-child(2n){background-color:#fff;background:#f8f8fa}.reportBlock .reportBlockBox .belowTable ul .currency-list[data-v-d42df632]{background:#efefef;box-shadow:0 0 2PX 1PX rgba(0,0,0,.02);padding:0 10PX;border:1PX solid #efefef;background:#f8f8fa;margin-top:10PX}.reportBlock .reportBlockBox .belowTable ul .currency-list span[data-v-d42df632]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.reportBlock .reportBlockBox .belowTable ul .currency-list .hash[data-v-d42df632]{width:58%;text-align:left;margin-left:5%}.reportBlock .reportBlockBox .belowTable ul .currency-list .reward[data-v-d42df632]{width:20%;text-align:left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-left:1%}.reportBlock .reportBlockBox .belowTable .pageBox[data-v-d42df632]{padding:2%}.reportBlock .reportBlockBox .belowTable[data-v-d42df632]:hover{box-shadow:0 0 15PX 3PX #c1a1fe}.el-progress[data-v-d42df632]{width:400PX;margin-left:-5PX;white-space:nowrap}.active[data-v-d42df632]{color:#fff;background:#641ffc}@media screen and (min-width:220px) and (max-width:1279px){.el-menu--horizontal{width:95%}}.main-title[data-v-21797be4],.main-title[data-v-ecb06f72]{font-size:24px;font-weight:700;color:#333;margin-bottom:18px}.user-details-box[data-v-21797be4]{width:100%;margin:0 auto;box-sizing:border-box;padding:20px;background-color:#fff;border-radius:10px;margin-bottom:20px;height:73vh;overflow:hidden;overflow-y:auto}.time-box[data-v-21797be4]{display:flex;justify-content:space-between;margin-bottom:10px;padding-right:20px;font-size:14px;color:#333}.user-details-form[data-v-21797be4]{width:80%;box-sizing:border-box;padding:20px;background-color:#fff;border-radius:10px;margin-bottom:20px}.no-data-tip[data-v-21797be4]{width:80%;margin:0 auto;font-size:16px;color:#999;text-align:center;margin-top:20px}.history-balance-item[data-v-21797be4]{display:inline-block;background:#e7dff3;padding:8px 20px;border-radius:20px;margin-bottom:10px;color:rgba(0,0,0,.6);flex:none;align-self:flex-start;margin-left:10px}[data-v-21797be4] .el-form-item__label{font-weight:700;font-size:16px;letter-spacing:1px}.chartBox[data-v-21797be4]{width:80vw;box-sizing:border-box;padding:0;margin:30px 0}.lineChartBox[data-v-21797be4]{width:97%;height:80%;box-sizing:border-box;box-shadow:0 0 1px 1px #ccc;padding:20px;border-radius:10px}.lineChartBox-title[data-v-21797be4]{font-size:16px;font-weight:700;color:rgba(0,0,0,.6);margin-bottom:20px}.lineChartBox-header[data-v-21797be4]{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px;padding:1% 5%}.el-date-editor .el-range-separator{padding:0!important;color:#333!important}::v-deep .el-table td{vertical-align:middle}::v-deep .el-table .cell{padding:0 12px;word-break:break-word}::v-deep .el-table tbody tr:hover>td{background-color:#f5f7fa}::v-deep .el-table--border td{border-right:1px solid #ebeef5}::v-deep .el-table--border th{border-right:1px solid #ebeef5}@media screen and (min-width:220px)and (max-width:1279px){.submitWorkOrder[data-v-2552dbca]{width:100%;min-height:300px;background:transparent!important;padding:0!important}.WorkOrder[data-v-2552dbca]{width:100%!important;margin:0 auto;padding:10px 18px!important;border-radius:8px;transition:all .2s linear}.prompt[data-v-2552dbca]{width:100%}[data-v-2552dbca] .el-upload-dragger{width:332px!important}}.submitWorkOrder[data-v-2552dbca]{width:100%;min-height:360px;background:#fff;background-image:url(/img/top.7f0acfc3.png);background-size:100% 50%;background-repeat:no-repeat;background-position:30% -15%;padding-top:60px}.WorkOrder[data-v-2552dbca]{width:70%;margin:0 auto;padding:50px 88px;border-radius:8px;transition:all .2s linear}.elBtn[data-v-2552dbca]{background:#661ffb;color:#fff;border-radius:20px}h3[data-v-2552dbca]{margin-bottom:30px}@media screen and (min-width:220px)and (max-width:1279px){.workOrderRecords[data-v-10849caa]{width:100%;padding:0;margin:0;padding-top:30PX!important;background:transparent!important;min-height:300px!important}.workMain[data-v-10849caa]{width:100%!important;padding:10px 5px}.tableBox[data-v-10849caa]{margin:0 auto;width:95%;min-height:300px;overflow:hidden;border-radius:8px;font-size:.9rem;margin-bottom:20px;box-shadow:0 0 5px 2px #ccc;margin-top:10px}.tableBox .table-title[data-v-10849caa]{height:50px;background:#d2c4e8;display:flex;justify-content:space-around;align-items:center;font-weight:600;padding-left:0!important;padding-right:18PX}.tableBox .table-title span[data-v-10849caa]{text-align:center}.tableBox .table-title span[data-v-10849caa]:first-of-type{width:30%!important}.tableBox .table-title span[data-v-10849caa]:nth-of-type(2){width:40%!important}.tableBox .table-title span[data-v-10849caa]:nth-of-type(3){width:30%!important}.tableBox .rollContentBox[data-v-10849caa]{background:#eee8aa;max-height:500px;overflow:hidden;overflow-y:auto}.tableBox .collapseTitle[data-v-10849caa]{width:100%;display:flex;justify-content:space-around;align-items:center;padding-left:0!important}.tableBox .collapseTitle span[data-v-10849caa]{text-align:center;overflow:hidden;text-overflow:ellipsis}.tableBox .collapseTitle span[data-v-10849caa]:first-of-type{width:30%!important}.tableBox .collapseTitle span[data-v-10849caa]:nth-of-type(2){width:40%!important}.tableBox .collapseTitle span[data-v-10849caa]:nth-of-type(3){width:30%!important;color:#6621ff}.tableBox .belowTable[data-v-10849caa]{display:flex;justify-content:space-between}.tableBox .belowTable div[data-v-10849caa]{width:50%;height:auto;text-align:left;padding-left:8%}.tableBox #hash[data-v-10849caa]{width:100%;padding-left:8%;margin-top:8px}.tableBox #hash .text[data-v-10849caa]{width:93%;height:auto;word-wrap:break-word;overflow-wrap:break-word;color:#8f61f5;text-decoration:underline}.tableBox .paginationBox[data-v-10849caa]{text-align:center}[data-v-10849caa] .el-collapse-item__content{background:#edf2fa!important;padding:8px}.el-tab-pane[data-v-10849caa]{padding:1px;border-radius:0!important;overflow:hidden!important;border:none!important}}.workOrderRecords[data-v-10849caa]{width:100%;min-height:100vh;background:#fff;background-image:url(/img/top.7f0acfc3.png);background-size:100% 50%;background-repeat:no-repeat;background-position:30% -15%;padding:0;margin:0;padding-top:60PX;display:flex;justify-content:center}.bth[data-v-10849caa]{padding-top:51px;padding-left:70px!important}.workBK[data-v-10849caa]{padding:30px 50px;width:75%;margin:0 auto;min-height:360px;border-radius:8px}.el-tabs[data-v-10849caa]{margin-top:30px}.elBtn[data-v-10849caa]{background:#697861;color:#f0f8ff}.elBtn[data-v-10849caa]:hover{background:#ecf5ff;color:#409eff}.el-tab-pane[data-v-10849caa]{padding:1px;border-radius:5px;overflow:hidden!important;border:1px solid rgba(0,0,0,.1)}[data-v-10849caa] .el-tabs__item.is-active{color:#6621ff!important}[data-v-10849caa] .el-tabs__active-bar{background-color:#6621ff!important}[data-v-10849caa] .el-button--text{color:#6621ff!important}@media screen and (min-width:220px)and (max-width:1279px){.main[data-v-3554fa88]{width:100%;padding:15px 18px!important;margin:0;padding-top:30PX!important;background:transparent!important;min-height:300px!important}.MobileMain[data-v-3554fa88]{width:100%}.contentMobile p[data-v-3554fa88]{height:40px;line-height:40px;padding:0 8px;margin-top:8px;border-radius:5px;border:1px solid rgba(0,0,0,.1);font-size:.9rem;margin-left:18px}.el-row[data-v-3554fa88]{margin:0!important}.submitTitle[data-v-3554fa88]{font-size:14px;width:600px}.submitTitle .userName[data-v-3554fa88]{color:#661ffb}.submitTitle .time[data-v-3554fa88]{margin-left:8px}#contentBox[data-v-3554fa88]{border:1px solid rgba(0,0,0,.1);margin-top:5px;padding:8px;border-radius:5px;font-size:.9rem;word-wrap:break-word}[data-v-3554fa88] .el-upload-dragger{width:332px!important}}.main[data-v-3554fa88]{width:100%;min-height:100vh;background:#fff;background-image:url(/img/top.7f0acfc3.png);background-size:100% 50%;background-repeat:no-repeat;background-position:30% -15%;padding:0;margin:0;padding-top:60PX;display:flex;justify-content:center}.content[data-v-3554fa88]{width:50%;margin:0 auto}.orderDetails p[data-v-3554fa88]{width:80%;outline:1px solid rgba(0,0,0,.1);border-radius:4px;font-weight:600;padding:10px 10px;font-size:14px;display:flex;align-items:center}.orderDetails .orderTitle[data-v-3554fa88]{display:inline-block;text-align:center}.orderDetails .orderContent[data-v-3554fa88]{flex:1;display:inline-block;color:#661ffb;font-weight:400;border-radius:4px;text-align:left;padding-left:5px}.submitContent[data-v-3554fa88]{max-height:300px;overflow:hidden;overflow-y:auto;display:flex;flex-direction:column;padding:20px;border:1px solid #ccc;background:rgba(255,0,0,.01);border-radius:5px;margin-top:18px}.submitContent .submitTitle[data-v-3554fa88]{font-size:14px;width:600px;display:flex;justify-content:left}.submitContent .submitTitle span[data-v-3554fa88]:nth-of-type(2){margin-left:50px}.submitContent .contentBox[data-v-3554fa88]{width:50vw;padding:0 10px;padding-left:5px;font-size:15px;max-height:80px;display:inline-block;overflow:scroll;overflow-x:auto;overflow-y:auto}.submitContent .downloadBox[data-v-3554fa88]{font-size:15px;color:#661ffb;display:inline-block;cursor:pointer}.submitContent .replyBox[data-v-3554fa88]{margin-top:20px}.download[data-v-3554fa88]{display:inline-block;margin-top:10px;margin-left:20px;padding:8px 15px;border-radius:4px;font-size:14px;background:#f0f9eb;color:#67c23a;cursor:pointer}.download[data-v-3554fa88]:hover{color:#000;outline:1px solid rgba(0,0,0,.1)}.reply[data-v-3554fa88]{font-size:15px;margin-top:10px;padding:5px 0}.reply .replyTitle[data-v-3554fa88]{font-weight:600}.reply .replyContent[data-v-3554fa88]{color:#661ffb}[data-v-3554fa88].replyInput .el-input.is-disabled .el-input__inner{color:#000}.edit[data-v-3554fa88]{font-size:15px;color:#661ffb;cursor:pointer;margin-left:10px}.auditBox .submitTitle[data-v-3554fa88]{font-size:14px;width:600px;display:flex;justify-content:left}.auditBox .submitTitle span[data-v-3554fa88]:nth-of-type(2){margin-left:50px}.auditBox .contentBox[data-v-3554fa88]{width:54vw;border:1px solid rgba(0,0,0,.1);padding:5px 5px;padding-left:5px;font-size:15px;max-height:80px;display:inline-block;overflow:scroll;overflow-x:auto;overflow-y:auto}.auditBox .downloadBox[data-v-3554fa88]{font-size:15px;color:#661ffb;cursor:pointer;display:inline-block}.registeredForm .mandatory[data-v-3554fa88]{color:red;margin-right:5px}.logistics[data-v-3554fa88]{display:flex;margin-bottom:30px;width:26%;justify-content:space-between}.closingOrder[data-v-3554fa88]{font-size:14px;margin:0}.closingOrder span[data-v-3554fa88]{cursor:pointer;color:#661ffb}.closingOrder span[data-v-3554fa88]:hover{color:#67c23a}.elBtn[data-v-3554fa88]{background:#661ffb;color:#f0f8ff}.elBtn[data-v-3554fa88]:hover{background:#ecf5ff;color:#409eff}.machineCoding[data-v-3554fa88]{outline:1px solid rgba(0,0,0,.1);display:flex;max-height:300px;padding:10px!important;margin-top:8px;overflow-y:auto}.orderNum[data-v-3554fa88]{width:800px!important;padding:0!important;outline:none!important;border:none!important}.el-row[data-v-3554fa88]{margin:18px 0}@media screen and (min-width:220px)and (max-width:1279px){.workBK[data-v-19141cf8]{width:100%;padding:0;margin:0;padding-top:30PX!important;background:transparent!important;min-height:300px!important}.workMain[data-v-19141cf8]{width:100%!important;padding:10px 5px}.tableBox[data-v-19141cf8]{margin:0 auto;width:95%;min-height:300px;overflow:hidden;border-radius:8px;font-size:.9rem;margin-bottom:20px;box-shadow:0 0 5px 2px #ccc;margin-top:10px}.tableBox .table-title[data-v-19141cf8]{height:50px;background:#d2c4e8;display:flex;justify-content:space-around;align-items:center;font-weight:600;padding-left:0!important;padding-right:18PX}.tableBox .table-title span[data-v-19141cf8]{text-align:center}.tableBox .table-title span[data-v-19141cf8]:first-of-type{width:30%!important}.tableBox .table-title span[data-v-19141cf8]:nth-of-type(2){width:40%!important}.tableBox .table-title span[data-v-19141cf8]:nth-of-type(3){width:30%!important}.tableBox .rollContentBox[data-v-19141cf8]{background:#eee8aa;max-height:500px;overflow:hidden;overflow-y:auto}.tableBox .collapseTitle[data-v-19141cf8]{width:100%;display:flex;justify-content:space-around;align-items:center;padding-left:0!important}.tableBox .collapseTitle span[data-v-19141cf8]{text-align:center;overflow:hidden;text-overflow:ellipsis}.tableBox .collapseTitle span[data-v-19141cf8]:first-of-type{width:30%!important}.tableBox .collapseTitle span[data-v-19141cf8]:nth-of-type(2){width:40%!important}.tableBox .collapseTitle span[data-v-19141cf8]:nth-of-type(3){width:30%!important;color:#6621ff}.tableBox .belowTable[data-v-19141cf8]{display:flex;justify-content:space-between}.tableBox .belowTable div[data-v-19141cf8]{width:50%;height:auto;text-align:left;padding-left:8%}.tableBox #hash[data-v-19141cf8]{width:100%;padding-left:8%;margin-top:8px}.tableBox #hash .text[data-v-19141cf8]{width:93%;height:auto;word-wrap:break-word;overflow-wrap:break-word;color:#8f61f5;text-decoration:underline}.tableBox .paginationBox[data-v-19141cf8]{text-align:center;margin:18px 8px}[data-v-19141cf8] .el-collapse-item__content{background:#edf2fa!important;padding:8px}.el-tab-pane[data-v-19141cf8]{padding:1px;border-radius:0!important;overflow:hidden!important;border:none!important}.paginationBox[data-v-19141cf8]{text-align:center}[data-v-19141cf8] .el-pager li{min-width:19px}[data-v-19141cf8] .el-pagination .el-select .el-input{margin:0}}.workBK[data-v-19141cf8]{width:100%;min-height:100vh;background:#fff;padding:0;margin:0;display:flex;justify-content:center}.workBKContent[data-v-19141cf8]{width:100%;margin:0 auto}.elBtn[data-v-19141cf8]{background:#e60751;color:#fff;border:none;margin-left:18px}.el-table__header-wrapper tbody td.el-table__cell[data-v-19141cf8],[data-v-19141cf8] .el-table__footer-wrapper tbody td.el-table__cell{text-align:center}.moneyItem[data-v-19141cf8]{width:80%;display:flex;font-size:14px;align-items:center;font-weight:550;color:rgba(0,0,0,.7);flex-direction:column;height:100px;justify-content:center}.moneyItem div[data-v-19141cf8]:first-of-type{width:100%;padding-left:10px}.moneyItem .moneyInput[data-v-19141cf8]{display:flex;align-items:center;outline:1px solid #dcdfe6;margin:0;padding:0;border-radius:4px;height:38px;margin-top:25px}.moneyItem .moneyInput p[data-v-19141cf8]{display:inline-block;height:30px;margin:0;padding:0;padding-top:5px;color:rgba(0,0,0,.3)}.moneyItem .moneyInput input[data-v-19141cf8]:first-of-type{padding-left:5%}.moneyItem .moneyInput input[data-v-19141cf8]{display:inline-block;width:45%;height:30px;border:none;outline:none}.moneyItem .moneyInput input[data-v-19141cf8]::-webkit-input-placeholder{color:#c0c4cc}.moneyItem .moneyInput .InputIcon[data-v-19141cf8]:hover{color:#409eff;cursor:pointer}[data-v-19141cf8] .el-tabs__item.is-active{color:#6621ff!important}[data-v-19141cf8] .el-tabs__active-bar{background-color:#6621ff!important}[data-v-19141cf8] .el-button--text{color:#6621ff!important}.el-tab-pane[data-v-19141cf8]{padding:1px;border-radius:5px;overflow:hidden!important;border:1px solid rgba(0,0,0,.1)}.search-result-page[data-v-723d4295]{min-height:100vh;background:#f5f7fa}.result-header[data-v-723d4295]{background:linear-gradient(135deg,#667eea,#764ba2);padding:18px 0;box-shadow:0 4px 20px rgba(0,0,0,.1)}.header-container[data-v-723d4295]{max-width:1200px;margin:0 auto;padding:0 20px;display:flex;justify-content:space-between;align-items:center}.header-left[data-v-723d4295]{color:#fff}.page-title[data-v-723d4295]{margin:0 0 8px 0;font-size:28px;font-weight:600}.search-info[data-v-723d4295]{margin:0;font-size:16px;opacity:.9}.search-info strong[data-v-723d4295]{color:gold}.header-right .el-button[data-v-723d4295]{background:hsla(0,0%,100%,.2);border:1px solid hsla(0,0%,100%,.3);color:#fff}.header-right .el-button[data-v-723d4295]:hover{background:hsla(0,0%,100%,.3)}.search-content[data-v-723d4295]{max-width:1200px;margin:0 auto;padding:40px 20px}.result-container[data-v-723d4295]{background:#fff;border-radius:12px;box-shadow:0 4px 20px rgba(0,0,0,.08);overflow:hidden}.result-list[data-v-723d4295]{padding:0}.result-item[data-v-723d4295]{display:flex;align-items:flex-start;padding:24px 30px;border-bottom:1px solid #f5f5f5;cursor:pointer;transition:all .3s ease}.result-item[data-v-723d4295]:hover{background:#f8f9ff;transform:translateX(4px)}.result-item[data-v-723d4295]:last-child{border-bottom:none}.item-icon[data-v-723d4295]{margin-right:16px;flex-shrink:0}.doc-icon[data-v-723d4295]{width:40px;height:40px;border-radius:8px;object-fit:cover}.doc-icon-placeholder[data-v-723d4295]{width:40px;height:40px;border-radius:8px;background:#f0f0f0;display:flex;align-items:center;justify-content:center;color:#999;font-size:20px}.item-content[data-v-723d4295]{flex:1;min-width:0}.item-title[data-v-723d4295]{margin:0 0 8px 0;font-size:18px;font-weight:600;color:#333;line-height:1.4}.item-title mark[data-v-723d4295]{background:#fff3cd;color:#856404;padding:2px 4px;border-radius:3px}.item-subtitle[data-v-723d4295]{margin:0 0 8px 0;font-size:14px;color:#666;line-height:1.4}.item-meta[data-v-723d4295]{display:flex;flex-wrap:wrap;gap:16px;margin-bottom:12px}.meta-item[data-v-723d4295]{display:flex;align-items:center;font-size:12px;color:#999}.meta-item i[data-v-723d4295]{margin-right:4px;font-size:14px}.item-preview[data-v-723d4295]{font-size:14px;color:#666;line-height:1.6;background:#f8f9fa;padding:12px;border-radius:6px;border-left:3px solid #667eea}.item-actions[data-v-723d4295]{display:flex;flex-direction:column;gap:8px;margin-left:16px;flex-shrink:0}.no-result[data-v-723d4295]{text-align:center;padding:80px 20px;color:#666}.no-result strong[data-v-723d4295]{color:#667eea}.no-result-icon[data-v-723d4295]{font-size:64px;color:#ddd;margin-bottom:20px}.no-result h3[data-v-723d4295]{margin:0 0 12px 0;font-size:24px;font-weight:500;color:#333}.no-result p[data-v-723d4295]{margin:0 0 24px 0;font-size:16px;color:#999}.pagination-container[data-v-723d4295]{padding:30px;text-align:center;border-top:1px solid #f0f0f0;background:#fafbfc}.preview-dialog .preview-content h2[data-v-723d4295]{margin:0 0 16px 0;color:#333;font-size:24px}.preview-dialog .preview-meta[data-v-723d4295]{display:flex;gap:20px;margin-bottom:24px;padding:16px;background:#f8f9fa;border-radius:6px;font-size:14px;color:#666}.preview-dialog .preview-body[data-v-723d4295]{line-height:1.8;color:#333}.preview-dialog .preview-body[data-v-723d4295] h1,.preview-dialog .preview-body[data-v-723d4295] h2,.preview-dialog .preview-body[data-v-723d4295] h3{color:#333;margin:20px 0 12px 0}.preview-dialog .preview-body[data-v-723d4295] p{margin:12px 0}.preview-dialog .preview-body[data-v-723d4295] img{max-width:100%;height:auto;border-radius:6px}.preview-dialog .preview-body[data-v-723d4295] table{border-collapse:collapse;width:100%;margin:16px 0}.preview-dialog .preview-body[data-v-723d4295] td,.preview-dialog .preview-body[data-v-723d4295] th{border:1px solid #ddd;padding:8px 12px;text-align:left}.preview-dialog .preview-body[data-v-723d4295] th{background:#f5f5f5;font-weight:700}@media(max-width:768px){.header-container[data-v-723d4295]{padding:0 15px;flex-direction:column;gap:20px;text-align:center}.page-title[data-v-723d4295]{font-size:24px}.search-content[data-v-723d4295]{padding:20px 15px}.result-item[data-v-723d4295]{padding:16px 20px;flex-direction:column}.item-icon[data-v-723d4295]{margin-right:0;margin-bottom:12px}.item-actions[data-v-723d4295]{margin-left:0;margin-top:12px;flex-direction:row;justify-content:flex-end}.item-meta[data-v-723d4295]{gap:12px}.preview-meta[data-v-723d4295]{flex-direction:column;gap:8px}}.loginPage[data-v-45513616]{width:100%;height:100%;background-color:#fff;display:flex;justify-content:center;align-items:center;background-image:url(/img/logBg.3050d0aa.png);background-size:cover;background-repeat:no-repeat}.loginPage .loginModular[data-v-45513616]{width:53%;height:68%;display:flex;border-radius:10px;overflow:hidden;box-shadow:0 0 20px 18px #d6d2ea}.loginPage .remind[data-v-45513616]{font-size:.8em;padding:0;margin:0;min-height:15px;line-height:15px;color:#ff4081}.loginPage .leftBox[data-v-45513616]{width:47%;height:100%;background-image:linear-gradient(150deg,#18b7e6 -20%,#651fff 60%);position:relative}.loginPage .leftBox img[data-v-45513616]{width:100%;position:absolute;right:-15%;bottom:0;z-index:99}.loginPage .leftBox .logo[data-v-45513616]{position:absolute;left:30px;top:18px;width:22%}.el-form[data-v-45513616]{width:90%;padding:0 20px 50px 20px}.el-form-item[data-v-45513616]{width:100%}.loginBox[data-v-45513616]{width:53%;display:flex;justify-content:center;align-items:center;border-radius:10px;position:relative;flex-direction:column;overflow:hidden;padding:0 25px;background:#fff}.loginBox .demo-ruleForm[data-v-45513616]{height:100%;padding-top:3%}.loginBox img[data-v-45513616]{width:18%;position:absolute;top:20px;right:30px;cursor:pointer}.loginBox .closeBox[data-v-45513616]{position:absolute;top:18px;right:30px;cursor:pointer}.loginBox .closeBox .close[data-v-45513616]{font-size:1.3em}.loginBox .closeBox[data-v-45513616]:hover{color:#661fff}.loginTitle[data-v-45513616]{font-size:20px;font-weight:600;margin-bottom:30px;text-align:center}.loginColor[data-v-45513616]{width:100%;height:15px;background:#661fff}.langBox[data-v-45513616]{display:flex;justify-content:space-between;align-content:center}.register[data-v-45513616]{display:flex;justify-content:start;margin:0;font-size:12px;height:10px}.register .goLogin[data-v-45513616]:hover{color:#661fff;cursor:pointer}.forget[data-v-45513616]{margin-left:10px}.forgotPassword[data-v-45513616]{display:inline-block;width:20%}.verificationCode[data-v-45513616]{display:flex}.verificationCode .codeBtn[data-v-45513616]{font-size:13px;margin-left:2px}@media screen and (min-width:220px)and (max-width:1279px){.mobileMain[data-v-45513616]{width:100vw;min-height:100vh;background:#fff;background-image:url(/img/bgtop.d1ac5a03.svg);background-repeat:no-repeat;background-size:115%;background-position:49% 47%;box-sizing:border-box}.headerBox2[data-v-45513616]{width:100%;height:60px;display:flex;align-items:center;justify-content:space-between;line-height:60px;padding:0 20px;padding-top:10px;box-shadow:0 0 2px 1px #ccc}.headerBox2 img[data-v-45513616]{width:30px}.headerBox2 .title[data-v-45513616]{height:100%;font-weight:600}.imgTop[data-v-45513616]{width:100%;display:flex;justify-content:center;margin-top:2%}.imgTop img[data-v-45513616]{height:159px}.formInput[data-v-45513616]{width:100%;display:flex;justify-content:center}.register .goLogin[data-v-45513616]{color:#651fff;padding:0 8px}}.split-editor-demo[data-v-7b3906e4]{padding:20px;background:#f5f7fa;min-height:calc(100vh - 140px)}.page-header[data-v-7b3906e4]{display:flex;justify-content:space-between;align-items:center;margin-bottom:24px;padding:20px;background:#fff;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,.1)}.header-content[data-v-7b3906e4]{flex:1}.page-title[data-v-7b3906e4]{margin:0 0 8px 0;color:#2c3e50;font-size:28px;font-weight:600;display:flex;align-items:center;gap:12px}.page-title i[data-v-7b3906e4]{color:#5721e4;font-size:32px}.page-subtitle[data-v-7b3906e4]{margin:0;color:#7f8c8d;font-size:14px;line-height:1.5}.header-actions[data-v-7b3906e4]{display:flex;gap:12px}.document-config[data-v-7b3906e4]{margin-bottom:20px}.document-config[data-v-7b3906e4] .el-card__header{background:#f8f9fa;border-bottom:1px solid #e0e0e0;font-weight:600;color:#2c3e50}.document-config[data-v-7b3906e4] .el-card__header i{color:#5721e4;margin-right:8px}.config-form .el-form-item[data-v-7b3906e4]{margin-bottom:16px}.editor-card[data-v-7b3906e4]{margin-bottom:20px}.editor-card[data-v-7b3906e4] .el-card__header{background:#f8f9fa;border-bottom:1px solid #e0e0e0;font-weight:600;color:#2c3e50;display:flex;justify-content:space-between;align-items:center}.editor-card[data-v-7b3906e4] .el-card__header i{color:#5721e4;margin-right:8px}.header-tips[data-v-7b3906e4]{display:flex;gap:8px}.usage-guide[data-v-7b3906e4]{margin-bottom:20px}.usage-guide[data-v-7b3906e4] .el-card__header{background:#f8f9fa;border-bottom:1px solid #e0e0e0;font-weight:600;color:#2c3e50;display:flex;justify-content:space-between;align-items:center}.usage-guide[data-v-7b3906e4] .el-card__header i{color:#5721e4;margin-right:8px}.guide-content[data-v-7b3906e4]{padding:10px 0}.guide-section[data-v-7b3906e4]{margin-bottom:20px;padding-bottom:16px;border-bottom:1px dashed #eee}.guide-section[data-v-7b3906e4]:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}.guide-section h4[data-v-7b3906e4]{font-size:16px;font-weight:600;color:#5721e4;margin-bottom:12px;position:relative;padding-left:20px}.guide-section h4[data-v-7b3906e4]:before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);width:4px;height:16px;background:#5721e4;border-radius:2px}.guide-section ul[data-v-7b3906e4]{margin:8px 0;padding-left:20px}.guide-section li[data-v-7b3906e4]{margin:6px 0;line-height:1.6;color:#2c3e50}.guide-section li strong[data-v-7b3906e4]{color:#5721e4;font-weight:600}.example-box[data-v-7b3906e4]{background:#f8f9fa;border:1px solid #e0e0e0;border-radius:6px;padding:12px;margin:8px 0}.example-box p[data-v-7b3906e4]{margin:4px 0;font-family:Monaco,Consolas,monospace;font-size:13px}.example-box code[data-v-7b3906e4]{background:#fff;color:#e74c3c;padding:2px 6px;border-radius:3px;border:1px solid #ddd}.slide-fade-enter-active[data-v-7b3906e4],.slide-fade-leave-active[data-v-7b3906e4]{transition:all .4s ease}.slide-fade-enter[data-v-7b3906e4],.slide-fade-leave-to[data-v-7b3906e4]{transform:translateY(-10px);opacity:0}@media screen and (max-width:768px){.split-editor-demo[data-v-7b3906e4]{padding:10px}.page-header[data-v-7b3906e4]{flex-direction:column;gap:16px;align-items:stretch}.header-actions[data-v-7b3906e4]{justify-content:center}.config-form .el-row .el-col[data-v-7b3906e4]{width:100%!important;margin-bottom:12px}.page-title[data-v-7b3906e4]{font-size:24px;text-align:center}.page-title i[data-v-7b3906e4]{font-size:28px}.page-subtitle[data-v-7b3906e4]{text-align:center}.header-tips[data-v-7b3906e4]{justify-content:center;flex-wrap:wrap}}@media screen and (min-width:220px)and (max-width:1279px){.mobileMain[data-v-5cb463fb]{width:100vw;min-height:100vh;background:#fff;background-image:url(/img/bgtop.d1ac5a03.svg);background-repeat:no-repeat;background-size:115%;background-position:49% 47%}.headerBox[data-v-5cb463fb]{width:100%;height:60px;display:flex;align-items:center;justify-content:space-between;padding:0 20px;box-shadow:0 0 2px 1px #ccc}.headerBox img[data-v-5cb463fb]{width:30px}.headerBox .title[data-v-5cb463fb]{height:100%;font-weight:600;line-height:75px}.imgTop[data-v-5cb463fb]{width:100%;display:flex;justify-content:center;margin-top:2%}.imgTop img[data-v-5cb463fb]{height:159px}.formInput[data-v-5cb463fb]{width:100%;display:flex;justify-content:center}.footer[data-v-5cb463fb]{width:100%;height:100px;background:#651fff}}.loginPage[data-v-5cb463fb]{width:100%;height:100%;background-color:#fff;display:flex;justify-content:center;align-items:center;padding:100px 0;background-image:url(/img/logBg.3050d0aa.png);background-size:cover;background-repeat:no-repeat}.loginPage .loginModular[data-v-5cb463fb]{width:50%;height:85%;display:flex;border-radius:10px;overflow:hidden;box-shadow:0 0 20px 18px #d6d2ea}.loginPage .leftBox[data-v-5cb463fb]{width:47%;height:100%;background-image:linear-gradient(150deg,#18b7e6 -20%,#651fff 60%);position:relative}.loginPage .leftBox .logo[data-v-5cb463fb]{position:absolute;left:30px;top:18px;width:22%}.loginPage .leftBox img[data-v-5cb463fb]{width:100%;position:absolute;right:-16%;bottom:0;z-index:99}.remind[data-v-5cb463fb]{font-size:.8em;padding:0;margin:0;min-height:15px;line-height:15px;color:#ff4081}.el-form[data-v-5cb463fb]{width:90%;padding:0 20px 50px 20px}.el-form-item[data-v-5cb463fb]{width:100%}.loginBox[data-v-5cb463fb]{width:53%;height:100%;display:flex;justify-content:center;align-items:center;border-radius:10px;flex-direction:column;overflow:hidden;background:#fff;position:relative;padding:0 35px}.loginBox .demo-ruleForm[data-v-5cb463fb]{height:100%;padding-top:5%}.loginBox img[data-v-5cb463fb]{width:18%;position:absolute;top:20px;left:30px;cursor:pointer}.loginBox .closeBox[data-v-5cb463fb]{position:absolute;top:18px;right:30px;cursor:pointer}.loginBox .closeBox .close[data-v-5cb463fb]{font-size:1.3em}.loginBox .closeBox[data-v-5cb463fb]:hover{color:#661fff}.loginTitle[data-v-5cb463fb]{font-size:20px;font-weight:600;margin-bottom:30px;text-align:center}.loginColor[data-v-5cb463fb]{width:100%;height:15px;background:#661fff}.langBox[data-v-5cb463fb]{display:flex;justify-content:space-between;align-content:center}.registerBox[data-v-5cb463fb]{display:flex;justify-content:start;margin:0;font-size:12px;height:20px;cursor:pointer}.registerBox span[data-v-5cb463fb]{padding:5px 0;display:inline-block;height:100%;z-index:99}.registerBox span[data-v-5cb463fb]:hover{color:#661fff}.registerBox .noAccount[data-v-5cb463fb]:hover{color:#000}.registerBox .forget[data-v-5cb463fb]{margin-left:8px}.forget[data-v-5cb463fb]{margin-left:10px}.forgotPassword[data-v-5cb463fb]{display:inline-block;width:20%}.verificationCode[data-v-5cb463fb]{display:flex}.verificationCode .codeBtn[data-v-5cb463fb]{font-size:13px;margin-left:2px} \ No newline at end of file diff --git a/mining-pool/test/css/app-113c6c50.36a20683.css.gz b/mining-pool/test/css/app-113c6c50.36a20683.css.gz new file mode 100644 index 0000000..1c217d4 Binary files /dev/null and b/mining-pool/test/css/app-113c6c50.36a20683.css.gz differ diff --git a/mining-pool/test/css/app-45954fd3.bdb4aecd.css b/mining-pool/test/css/app-45954fd3.bdb4aecd.css new file mode 100644 index 0000000..6ff8789 --- /dev/null +++ b/mining-pool/test/css/app-45954fd3.bdb4aecd.css @@ -0,0 +1 @@ +.main-title-box[data-v-76d940dc]{display:flex;align-items:center;margin-bottom:20px}.main-title-box .add-btn[data-v-76d940dc]{background:#661ffb;color:#fff;border:none;margin-left:28px;border-radius:20px;padding:10px 20px;transition:all .3s ease}.main-title-box .add-btn .arrow[data-v-76d940dc]{margin-left:10px}.main-title-box .add-btn[data-v-76d940dc]:hover{transform:scale(1.05)}.main-title[data-v-76d940dc]{font-size:24px;font-weight:700;color:#333}.elBtn[data-v-76d940dc]{background:#e60751;color:#fff;border:none;margin-left:18px}.el-table .cell[data-v-76d940dc]{word-break:break-word}[data-v-76d940dc] .path-help-dialog .el-message-box__message{white-space:pre-line;font-family:Courier New,monospace;font-size:13px;line-height:1.6}.el-tag[data-v-76d940dc]{max-width:80px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.path-item[data-v-76d940dc]{font-family:Courier New,monospace;background:#f5f7fa;padding:2px 6px;border-radius:3px;margin:1px 0;border-left:3px solid #409eff}[data-v-76d940dc] .el-tag{max-width:200px!important}@media screen and (min-width:220px)and (max-width:1279px){.rate[data-v-7b2f7ae5]{min-height:360px!important;background:transparent!important;padding-top:20PX!important}.rateMobile[data-v-7b2f7ae5]{padding:10px}h4[data-v-7b2f7ae5]{color:rgba(0,0,0,.8);padding-left:5%;font-size:18px}.tableBox[data-v-7b2f7ae5]{margin:0 auto;width:98%;min-height:300px;overflow:hidden;border-radius:8px;font-size:.9rem;margin-bottom:20px;box-shadow:0 0 5px 2px #ccc;margin-top:10px}.tableBox .table-title[data-v-7b2f7ae5]{height:50px;background:#d2c4e8;display:flex;justify-content:space-around;align-items:center;font-weight:600;padding-left:0!important}.tableBox .table-title span[data-v-7b2f7ae5]{text-align:center}.tableBox .table-title span[data-v-7b2f7ae5]:first-of-type{width:30%!important}.tableBox .table-title span[data-v-7b2f7ae5]:nth-of-type(2){width:70%!important}.tableBox .collapseTitle[data-v-7b2f7ae5]{width:100%;display:flex;justify-content:space-around;align-items:center;padding-left:0!important;font-size:.95rem!important}.tableBox .collapseTitle span[data-v-7b2f7ae5]{text-align:center}.tableBox .collapseTitle span[data-v-7b2f7ae5]:first-of-type{width:40%!important;display:flex;align-items:center;justify-content:left;padding-left:4%}.tableBox .collapseTitle span:first-of-type img[data-v-7b2f7ae5]{width:20px;margin-right:5px}.tableBox .collapseTitle span[data-v-7b2f7ae5]:nth-of-type(2){width:60%!important}.tableBox[data-v-7b2f7ae5] .el-collapse-item__wrap{background:#f0e9f5}.tableBox .belowTable[data-v-7b2f7ae5]{margin-top:8px}.tableBox .belowTable div[data-v-7b2f7ae5]{min-width:50%;height:auto;text-align:left;padding-left:8%;font-size:.85rem!important}.tableBox .belowTable div p[data-v-7b2f7ae5]:first-of-type{font-weight:600}.tableBox .paginationBox[data-v-7b2f7ae5]{text-align:center}}.rate[data-v-7b2f7ae5]{width:100%;min-height:600PX;background:#fff;background-image:url(/img/top.7f0acfc3.png);background-size:100% 50%;background-repeat:no-repeat;background-position:30% -15%;padding:0;margin:0;padding-top:60PX;font-size:.9rem}.rateBox[data-v-7b2f7ae5]{width:80%;margin:0 auto;min-height:700PX;display:flex;justify-content:center;border-radius:8PX;overflow:hidden;padding:20PX;transition:.3S linear}.rateBox .leftMenu[data-v-7b2f7ae5]{width:18%;text-align:center;margin-right:2%;padding-top:50PX;box-sizing:border-box;box-shadow:0 0 5px 2px #ccc;border-radius:8px;overflow:hidden;padding:10px}.rateBox .leftMenu ul[data-v-7b2f7ae5]{display:flex;justify-content:center;padding:0;margin:0}.rateBox .leftMenu ul li[data-v-7b2f7ae5]{list-style:none;min-height:40PX;display:flex;align-items:center;justify-content:center;margin-top:10PX;border-radius:5PX;background:rgba(210,195,234,.3);width:90%;padding:8px 8px;font-size:.9rem;text-align:left}.rateBox .rightText[data-v-7b2f7ae5]{box-sizing:border-box;width:90%;box-shadow:0 0 5px 2px #ccc;border-radius:8px;overflow:hidden;padding:10px;text-align:center;padding-top:30px}.rateBox .rightText h2[data-v-7b2f7ae5]{text-align:left;padding-left:50px;margin-bottom:20px}.rateBox .rightText .table[data-v-7b2f7ae5]{width:100%;text-align:center;display:flex;align-items:center;justify-content:center;flex-direction:column}.rateBox .rightText .tableTitle[data-v-7b2f7ae5]{width:90%;display:flex;align-items:center;height:60PX;background:#d2c3ea;border-radius:5px 5px 0 0}.rateBox .rightText .tableTitle span[data-v-7b2f7ae5]{display:inline-block;width:20%;text-align:left;padding-left:2%}.rateBox .rightText .tableTitle .coin[data-v-7b2f7ae5]{width:18%;padding-left:2%}.rateBox .rightText .tableTitle .describe[data-v-7b2f7ae5]{width:35%}.rateBox .rightText ul[data-v-7b2f7ae5]{width:90%;padding:0;margin:0;display:flex;justify-content:center;flex-direction:column}.rateBox .rightText ul li[data-v-7b2f7ae5]{width:100%;list-style:none;display:flex;align-items:center;min-height:50PX;background:#f8f8fa;margin-top:8PX;font-size:.85rem;max-height:200px;overflow:hidden}.rateBox .rightText ul li span[data-v-7b2f7ae5]{display:inline-block;width:20%;text-align:left;padding-left:2%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rateBox .rightText ul li .coin[data-v-7b2f7ae5]{width:18%;display:flex;justify-content:left;align-items:center;padding-left:2%;text-transform:uppercase}.rateBox .rightText ul li .coin img[data-v-7b2f7ae5]{width:22px;margin-right:5px}.rateBox .rightText ul li .describe[data-v-7b2f7ae5]{width:35%;text-align:left;padding-right:8px;font-size:.8rem;word-wrap:break-word;word-break:break-word;white-space:pre-wrap;overflow-wrap:break-word}@media screen and (min-width:220px)and (max-width:1279px){.rate[data-v-34314eb3]{background:transparent!important;min-height:360px}.rateMobile[data-v-34314eb3]{padding:10px}.ExampleTable[data-v-34314eb3],.MiningPool[data-v-34314eb3],.content[data-v-34314eb3],.text-container[data-v-34314eb3]{margin-top:18px;font-size:.9rem}.ExampleTable p[data-v-34314eb3],.MiningPool p[data-v-34314eb3],.content p[data-v-34314eb3],.text-container p[data-v-34314eb3]{font-size:.9rem;margin-top:5px}.ExampleTable div[data-v-34314eb3],.ExampleTable li[data-v-34314eb3],.ExampleTable span[data-v-34314eb3],.MiningPool div[data-v-34314eb3],.MiningPool li[data-v-34314eb3],.MiningPool span[data-v-34314eb3],.content div[data-v-34314eb3],.content li[data-v-34314eb3],.content span[data-v-34314eb3],.text-container div[data-v-34314eb3],.text-container li[data-v-34314eb3],.text-container span[data-v-34314eb3]{font-size:.9rem}.ExampleTable table[data-v-34314eb3],.MiningPool table[data-v-34314eb3],.content table[data-v-34314eb3],.text-container table[data-v-34314eb3]{border-collapse:collapse;margin-top:8px}.ExampleTable table[data-v-34314eb3],.ExampleTable td[data-v-34314eb3],.ExampleTable th[data-v-34314eb3],.MiningPool table[data-v-34314eb3],.MiningPool td[data-v-34314eb3],.MiningPool th[data-v-34314eb3],.content table[data-v-34314eb3],.content td[data-v-34314eb3],.content th[data-v-34314eb3],.text-container table[data-v-34314eb3],.text-container td[data-v-34314eb3],.text-container th[data-v-34314eb3]{border:1px solid gray;font-size:.9rem;padding:5px}.active[data-v-34314eb3]{font-weight:600;background:#f2ecf6;cursor:pointer;text-decoration:underline}.navContent[data-v-34314eb3]{width:100%;padding:15px;background:#fff;border-radius:8px;margin-bottom:15px;box-shadow:0 2px 4px rgba(0,0,0,.1);overflow:hidden}.navContent .error-container[data-v-34314eb3],.navContent .loading-container[data-v-34314eb3]{text-align:center;padding:30px 15px;color:#666;font-size:.9rem}.navContent .error-container[data-v-34314eb3]{color:#f56c6c}.navContent .document-content[data-v-34314eb3]{font-size:.9rem;line-height:1.5;color:#333;word-wrap:break-word}.navContent .document-content h1[data-v-34314eb3],.navContent .document-content h2[data-v-34314eb3],.navContent .document-content h3[data-v-34314eb3]{margin:15px 0 10px 0;color:#2c3e50;font-weight:600}.navContent .document-content h1[data-v-34314eb3]{font-size:1.4rem}.navContent .document-content h2[data-v-34314eb3]{font-size:1.2rem}.navContent .document-content h3[data-v-34314eb3]{font-size:1.1rem}.navContent .document-content p[data-v-34314eb3]{margin:8px 0;line-height:1.5}.navContent .document-content code[data-v-34314eb3]{background:#f4f4f4;padding:2px 4px;border-radius:2px;font-size:.85rem}.navContent .document-content pre[data-v-34314eb3]{background:#f4f4f4;padding:10px;border-radius:4px;overflow-x:auto;margin:10px 0;font-size:.8rem}.navContent .document-content table[data-v-34314eb3]{width:100%;border-collapse:collapse;margin:10px 0;font-size:.8rem}.navContent .document-content table td[data-v-34314eb3],.navContent .document-content table th[data-v-34314eb3]{border:1px solid #ddd;padding:6px 8px;text-align:left}.navContent .document-content table th[data-v-34314eb3]{background:#f8f9fa;font-weight:600}.navContent .document-content a[data-v-34314eb3]{color:#5721e4;text-decoration:none}.navContent .document-content [data-v-34314eb3]{max-width:100%;box-sizing:border-box}}.rate[data-v-34314eb3]{width:100%;background:#fff;background-image:url(/img/top.7f0acfc3.png);background-size:100% 50%;background-repeat:no-repeat;background-position:30% -15%;padding:0;margin:0;padding-top:20px}a[data-v-34314eb3]{transition:all .3s}.rateBox[data-v-34314eb3]{width:90%;height:830px;margin:0 auto;display:flex;justify-content:center;border-radius:8px;overflow:hidden;padding:20px;transition:.3s linear}.rateBox .leftMenu[data-v-34314eb3]{min-width:240px;text-align:center;margin-right:2%;padding-top:50px;border-radius:10px;background:#fff;box-shadow:0 0 8px 2px #ccc}.rateBox .leftMenu ul[data-v-34314eb3]{display:flex;flex-direction:column;align-items:center;padding:0;margin:0}.rateBox .leftMenu ul li[data-v-34314eb3]{width:100%;list-style:none;min-height:40px;display:flex;align-items:center;justify-content:center;width:90%;margin-top:10px;border-radius:5px;background:rgba(210,195,234,.3);color:#000;cursor:pointer}.rateBox .leftMenu ul li .file[data-v-34314eb3]{margin-right:5px}.rateBox .rightText[data-v-34314eb3]{flex:1;background:#fff;padding:50px;box-shadow:0 0 8px 2px #ccc;height:100%;overflow-y:auto}.rateBox .rightText .Interface[data-v-34314eb3]{height:50px;line-height:50px;background:#f7f7f7;padding-left:10px}.rateBox .rightText .tableTitle[data-v-34314eb3]{width:90%;display:flex;align-items:center;height:60px;background:#d2c3ea}.rateBox .rightText .tableTitle span[data-v-34314eb3]{display:inline-block;width:20%;text-align:center}.rateBox .rightText .content[data-v-34314eb3]{margin-top:30px}.rateBox .rightText .content h3[data-v-34314eb3]{margin-bottom:20px}.rateBox .rightText .content p[data-v-34314eb3]{line-height:30px;font-size:.95rem}.rateBox .rightText .content ul[data-v-34314eb3]{padding:20px;padding-left:20px;background:#f7f7f7;font-size:.9rem}.rateBox .rightText .content ul li[data-v-34314eb3]{margin-top:8px}.rateBox .rightText .ExampleTable[data-v-34314eb3]{background:#f7f7f7;width:100%;padding-left:10px;padding-bottom:20px}.rateBox .rightText .ExampleTable .title[data-v-34314eb3]{height:35px;line-height:35px;font-weight:700;overflow:hidden}.rateBox .rightText .ExampleTable div[data-v-34314eb3]{box-sizing:border-box;width:95%;display:flex;height:120px;font-size:.9rem;align-items:center;overflow-y:auto}.rateBox .rightText .ExampleTable div span[data-v-34314eb3]{width:100%;border:1px solid rgba(0,0,0,.3);height:100%;padding-left:10px}.rateBox .rightText .text-container[data-v-34314eb3]{margin-top:15px}.rateBox .rightText .text-container p[data-v-34314eb3]{margin-top:10px;font-size:.95rem}.rateBox .rightText .text-container .container[data-v-34314eb3]{background:#f7f7f7;padding-left:10px}.rateBox .rightText .MiningPool[data-v-34314eb3]{margin-top:50px;font-size:.95rem}.rateBox .rightText .MiningPool .Pool[data-v-34314eb3]{margin-top:20px}.rateBox .rightText .MiningPool .Pool p[data-v-34314eb3]{margin-top:8px}.rateBox .rightText .MiningPool .Pool .hash[data-v-34314eb3]{font-weight:600}.rateBox .active[data-v-34314eb3]{font-weight:600;background:#f2ecf6;cursor:pointer;text-decoration:underline}.rateBox table[data-v-34314eb3]{border-collapse:collapse;margin-top:8px}.rateBox table[data-v-34314eb3],.rateBox td[data-v-34314eb3],.rateBox th[data-v-34314eb3]{border:1px solid gray;font-size:.95rem}.rateBox td[data-v-34314eb3]{padding:5px;min-width:160px;height:40px;text-align:center;font-size:.9rem}.rateBox th[data-v-34314eb3]{font-weight:700;padding:8px}.rateBox tr[data-v-34314eb3]:nth-child(odd){background-color:#f7f7f7}.rateBox tr[data-v-34314eb3]:first-child,.rateBox tr[data-v-34314eb3]:nth-child(2n){background-color:#fff}.rateBox .navContent[data-v-34314eb3]{width:100%;max-width:100%;padding:20px;background:#fff;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,.1);margin-bottom:20px;overflow:hidden}.rateBox .navContent .error-container[data-v-34314eb3],.rateBox .navContent .loading-container[data-v-34314eb3]{text-align:center;padding:40px 20px;color:#666;font-size:14px}.rateBox .navContent .error-container[data-v-34314eb3]{color:#f56c6c}.rateBox .navContent .document-content[data-v-34314eb3]{font-size:14px;line-height:1.6;color:#333;word-wrap:break-word;overflow-wrap:break-word}.rateBox .navContent .document-content h1[data-v-34314eb3],.rateBox .navContent .document-content h2[data-v-34314eb3],.rateBox .navContent .document-content h3[data-v-34314eb3],.rateBox .navContent .document-content h4[data-v-34314eb3],.rateBox .navContent .document-content h5[data-v-34314eb3],.rateBox .navContent .document-content h6[data-v-34314eb3]{margin:20px 0 15px 0;color:#2c3e50;font-weight:600}.rateBox .navContent .document-content h1[data-v-34314eb3]{font-size:28px}.rateBox .navContent .document-content h2[data-v-34314eb3]{font-size:24px}.rateBox .navContent .document-content h3[data-v-34314eb3]{font-size:20px}.rateBox .navContent .document-content p[data-v-34314eb3]{margin:10px 0;line-height:1.6}.rateBox .navContent .document-content code[data-v-34314eb3]{background:#f4f4f4;padding:2px 6px;border-radius:3px;font-family:Courier New,monospace;font-size:13px}.rateBox .navContent .document-content pre[data-v-34314eb3]{background:#f4f4f4;padding:15px;border-radius:5px;overflow-x:auto;margin:15px 0}.rateBox .navContent .document-content pre code[data-v-34314eb3]{background:none;padding:0}.rateBox .navContent .document-content table[data-v-34314eb3]{width:100%;border-collapse:collapse;margin:15px 0;font-size:13px}.rateBox .navContent .document-content table td[data-v-34314eb3],.rateBox .navContent .document-content table th[data-v-34314eb3]{border:1px solid #ddd;padding:8px 12px;text-align:left}.rateBox .navContent .document-content table th[data-v-34314eb3]{background:#f8f9fa;font-weight:600}.rateBox .navContent .document-content table tr[data-v-34314eb3]:nth-child(2n){background:#f9f9f9}.rateBox .navContent .document-content a[data-v-34314eb3]{color:#5721e4;text-decoration:none}.rateBox .navContent .document-content a[data-v-34314eb3]:hover{text-decoration:underline}.rateBox .navContent .document-content strong[data-v-34314eb3]{font-weight:600;color:#2c3e50}.rateBox .navContent .document-content em[data-v-34314eb3]{font-style:italic;color:#666}.rateBox .navContent .document-content [data-v-34314eb3]{max-width:100%;box-sizing:border-box}.rateBox .navContent .document-content img[data-v-34314eb3]{max-width:100%;height:auto;border-radius:4px}.navContent[data-v-34314eb3]{background:#fff;padding:24px;border-radius:12px;box-shadow:0 2px 12px rgba(0,0,0,.05);margin-bottom:20px}.loading-container[data-v-34314eb3]{background:#f8f9fa;padding:40px 20px;text-align:center;border-radius:8px;border:1px solid #e9ecef}.loading-container p[data-v-34314eb3]{color:#6c757d;font-size:14px;margin:0;animation:pulse-34314eb3 1.5s ease-in-out infinite}.document-content[data-v-34314eb3]{background:#fff;padding:20px;border-radius:8px;line-height:1.6;color:#2c3e50;max-height:70vh;overflow-y:auto}.error-container[data-v-34314eb3]{background:#fef5f5;padding:30px 20px;text-align:center;border-radius:8px;border:1px solid #fecaca}.error-container p[data-v-34314eb3]{color:#dc2626;font-size:14px;margin:0}.dynamic-content[data-v-34314eb3]{width:100%;margin:0 auto;font-family:PingFang SC,Microsoft YaHei,Arial,sans-serif;font-size:16px;line-height:1.7;color:#222}.dynamic-content[data-v-34314eb3] table{border-collapse:collapse;width:100%;margin:16px 0;font-size:14px}.dynamic-content[data-v-34314eb3] ul{background:#f4f4f4;padding:10px;padding-left:18px}.dynamic-content[data-v-34314eb3] li{margin-top:10px}.dynamic-content[data-v-34314eb3] code{line-height:1px!important}.dynamic-content[data-v-34314eb3] span{background-color:transparent!important}.dynamic-content[data-v-34314eb3] pre{background:#f4f4f4;line-height:1!important;padding:18px 8px}.dynamic-content[data-v-34314eb3] td,.dynamic-content[data-v-34314eb3] th{border:1px solid #d1d5db;padding:8px 12px;text-align:left}.dynamic-content[data-v-34314eb3] th{background:#d2c3ea;font-weight:700}.dynamic-content[data-v-34314eb3] b,.dynamic-content[data-v-34314eb3] strong{font-weight:700!important;color:inherit!important;font-style:normal!important}.dynamic-content[data-v-34314eb3] em,.dynamic-content[data-v-34314eb3] i{font-style:italic!important;color:inherit!important}.dynamic-content[data-v-34314eb3] a{color:#661ffb!important;text-decoration:none!important}.dynamic-content[data-v-34314eb3] a:hover{text-decoration:underline!important}.dynamic-content[data-v-34314eb3] p{text-align:justify!important;text-justify:inter-ideograph!important;line-height:2!important;margin:.8em 0!important;word-break:break-all}@keyframes pulse-34314eb3{0%,to{opacity:1}50%{opacity:.5}}@media(max-width:768px){.navContent[data-v-34314eb3]{padding:16px;margin:10px}.document-content[data-v-34314eb3]{padding:15px;max-height:60vh}.error-container[data-v-34314eb3],.loading-container[data-v-34314eb3]{padding:25px 15px}}.navActive[data-v-34314eb3]{background:#ac85e0!important}.cs-chat-container[data-v-7b09cda6]{width:65%;height:600px;margin:0 auto;background-color:#f5f6f7;border-radius:10px;box-shadow:0 2px 12px 0 rgba(0,0,0,.1);overflow:hidden;margin-top:50px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;position:relative}.cs-chat-wrapper[data-v-7b09cda6]{display:flex;height:100%}.cs-contact-list[data-v-7b09cda6]{width:290px;min-width:260px;border-right:1px solid #e0e0e0;background-color:#fff;display:flex;flex-direction:column;height:100%;overflow:hidden}.cs-header[data-v-7b09cda6]{padding:15px;font-weight:700;border-bottom:1px solid #e0e0e0;color:#333;font-size:16px;background-color:#f8f8f8}.cs-search[data-v-7b09cda6]{padding:10px;border-bottom:1px solid #e0e0e0}.cs-contacts[data-v-7b09cda6]{flex:1;overflow-y:auto}.cs-contact-item[data-v-7b09cda6]:hover{background-color:#f5f5f5}.cs-contact-item.active[data-v-7b09cda6]{background-color:#e6f7ff}.cs-avatar[data-v-7b09cda6]{position:relative;margin-right:10px;flex-shrink:0}.unread-badge[data-v-7b09cda6]{position:absolute;top:-5px;right:-5px;background-color:#f56c6c;color:#fff;font-size:12px;min-width:16px;height:16px;text-align:center;line-height:16px;border-radius:8px;padding:0 4px}.cs-contact-info[data-v-7b09cda6]{flex:1;min-width:0;overflow:hidden}.cs-contact-name[data-v-7b09cda6]{font-weight:500;font-size:14px;color:#333;display:flex;justify-content:space-between;margin-bottom:4px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.cs-contact-time[data-v-7b09cda6]{font-size:12px;color:#999;font-weight:400}.cs-contact-msg[data-v-7b09cda6]{font-size:12px;color:#666;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}.important-tag[data-v-7b09cda6]{color:#f56c6c}.cs-chat-area[data-v-7b09cda6]{flex:1;display:flex;flex-direction:column;background-color:#f5f5f5}.cs-chat-header[data-v-7b09cda6]{padding:15px;border-bottom:1px solid #e0e0e0;display:flex;justify-content:space-between;align-items:center;background-color:#fff}.cs-chat-title[data-v-7b09cda6]{font-weight:700;font-size:16px;color:#333;display:flex;align-items:center;gap:10px}.cs-header-actions i[data-v-7b09cda6]{font-size:18px;margin-left:15px;color:#666;cursor:pointer}.cs-header-actions i[data-v-7b09cda6]:hover{color:#409eff}.cs-chat-messages[data-v-7b09cda6]{flex:1;padding:15px;overflow-y:auto;background-color:#f5f5f5;height:calc(100% - 180px);position:relative}.cs-empty-chat[data-v-7b09cda6],.cs-loading[data-v-7b09cda6]{height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;color:#909399}.cs-empty-chat i[data-v-7b09cda6],.cs-loading i[data-v-7b09cda6]{font-size:60px;margin-bottom:20px;color:#dcdfe6}.cs-message-list[data-v-7b09cda6]{display:flex;flex-direction:column;padding-bottom:20px}.cs-message[data-v-7b09cda6]{margin-bottom:15px}.cs-message-time[data-v-7b09cda6]{text-align:center;margin:10px 0;font-size:12px;color:#909399}.cs-message-content[data-v-7b09cda6]{display:flex;align-items:flex-start}.cs-message-self .cs-message-content[data-v-7b09cda6]{flex-direction:row-reverse}.cs-message-self .cs-avatar[data-v-7b09cda6]{margin-right:0;margin-left:10px}.cs-bubble[data-v-7b09cda6]{max-width:70%;padding:8px 12px;border-radius:4px;background-color:#fff;box-shadow:0 1px 2px rgba(0,0,0,.05);position:relative;margin-bottom:4px}.cs-message-self .cs-bubble[data-v-7b09cda6]{background-color:#d8f4fe}.cs-sender[data-v-7b09cda6]{font-size:12px;color:#909399;margin-bottom:4px}.cs-text[data-v-7b09cda6]{font-size:14px;line-height:1.5;word-break:break-word}.cs-image img[data-v-7b09cda6]{max-width:200px;max-height:200px;border-radius:4px;cursor:pointer;display:block}.cs-chat-input[data-v-7b09cda6]{padding:10px;background-color:#fff;border-top:1px solid #e0e0e0}.cs-toolbar[data-v-7b09cda6]{padding:5px 0;margin-bottom:5px}.cs-toolbar i[data-v-7b09cda6]{font-size:18px;margin-right:15px;color:#606266;cursor:pointer}.cs-toolbar i[data-v-7b09cda6]:hover{color:#409eff}.cs-input-area[data-v-7b09cda6]{margin-bottom:10px}.cs-send-area[data-v-7b09cda6]{display:flex;justify-content:flex-end;align-items:center}.cs-counter[data-v-7b09cda6]{margin-right:10px;font-size:12px;color:#909399}.shop-type[data-v-7b09cda6]{font-size:12px;color:#909399;font-weight:400;margin-left:5px}.image-preview-dialog[data-v-7b09cda6]{display:flex;justify-content:center;align-items:center}.preview-image[data-v-7b09cda6]{max-width:100%;max-height:80vh}@media (max-width:768px){.cs-contact-list[data-v-7b09cda6]{width:200px}.cs-image img[data-v-7b09cda6]{max-width:150px;max-height:150px}}.important-star[data-v-7b09cda6]{display:flex;align-items:center;justify-content:center;width:30px;height:30px;cursor:pointer;margin-left:5px;color:#c0c4cc;transition:color .3s;flex-shrink:0}.important-star.is-important[data-v-7b09cda6],.important-star[data-v-7b09cda6]:hover{color:#ac85e0}.important-star i[data-v-7b09cda6]{font-size:16px}.cs-contact-item[data-v-7b09cda6]{display:flex;padding:10px;cursor:pointer;border-bottom:1px solid #f0f0f0;transition:background-color .2s;align-items:center;width:100%;box-sizing:border-box}.important-tag[data-v-7b09cda6]{color:#ac85e0;font-size:12px;margin-right:4px;font-weight:700}.guest-badge[data-v-7b09cda6]{position:absolute;bottom:-5px;right:-5px;background-color:#67c23a;color:#fff;font-size:10px;width:16px;height:16px;text-align:center;line-height:16px;border-radius:8px}.cs-contact-item.is-guest[data-v-7b09cda6]{background-color:#f9f9f9}.scroll-to-bottom[data-v-7b09cda6]{position:absolute;right:4px;bottom:184px;background-color:#fff;border-radius:5px 0 0 5px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .3s;z-index:1000;padding:5px 1vw;font-size:.7vw;color:#7638ff}.scroll-to-bottom[data-v-7b09cda6]:hover{background-color:#f0f0f0;transform:translateY(-2px)}.scroll-to-bottom i[data-v-7b09cda6]{font-size:.8vw;color:#7638ff;margin-left:5px}.connection-status[data-v-7b09cda6]{position:fixed;top:8%;right:41%;padding:8px 16px;border-radius:4px;display:flex;align-items:center;gap:8px;z-index:1000;color:#7638ff}.connection-status.error[data-v-7b09cda6]{background-color:#fef0f0;color:#f56c6c}.connection-status.connecting[data-v-7b09cda6]{background-color:#f0f9eb;color:#67c23a}.history-section[data-v-7b09cda6]{margin-bottom:10px}.history-indicator[data-v-7b09cda6]{padding:8px 12px}.history-indicator[data-v-7b09cda6],.no-more-history[data-v-7b09cda6]{transition:all .3s ease;border-radius:4px}.no-more-history i[data-v-7b09cda6]{margin-right:6px;font-size:.8em}.network-status[data-v-7b09cda6]{position:fixed;top:80px;right:20px;padding:8px 16px;border-radius:4px;display:flex;align-items:center;gap:8px;z-index:1000;box-shadow:0 2px 12px rgba(0,0,0,.1);background-color:#fef0f0;color:#f56c6c}@media screen and (min-width:220px)and (max-width:1279px){.ServiceTerms[data-v-af693de8]{background:transparent!important;min-height:360PX!important;padding:5%!important;padding-top:20px!important}.clauseBox[data-v-af693de8]{width:100%!important;min-height:100PX;margin:0 auto}.clauseBox .textBox[data-v-af693de8],.clauseBox h5[data-v-af693de8]{margin-top:10px}.clauseBox p[data-v-af693de8]{line-height:20PX!important;font-size:.9rem!important;margin-top:8px!important}.content[data-v-af693de8]{margin-bottom:20px!important}.content .loading-container[data-v-af693de8]{width:100%!important;margin:20px auto!important;padding:20px 0!important}.content .loading-container .el-icon[data-v-af693de8]{font-size:20px!important}.content .loading-container .loading-text[data-v-af693de8]{font-size:14px!important}.content .no-content[data-v-af693de8]{width:100%!important;margin:20px auto!important;padding:20px 0!important}.content .no-content p[data-v-af693de8]{font-size:14px!important}.content .dynamic-content[data-v-af693de8]{width:100%!important;padding:10px!important}.content .dynamic-content[data-v-af693de8] b,.content .dynamic-content[data-v-af693de8] strong{font-weight:700!important;color:inherit!important;font-style:normal!important}.content .dynamic-content[data-v-af693de8] em,.content .dynamic-content[data-v-af693de8] i{font-style:italic!important;color:inherit!important}.content .dynamic-content[data-v-af693de8] code{background-color:#f5f5f5!important;padding:2px 4px!important;border-radius:3px!important;font-family:Courier New,monospace!important;font-size:.9em!important}.content .dynamic-content[data-v-af693de8] del{text-decoration:line-through!important;color:#666!important}.content .dynamic-content[data-v-af693de8] a{color:#007bff!important;text-decoration:none!important}.content .dynamic-content[data-v-af693de8] a:hover{text-decoration:underline!important}}.ServiceTerms[data-v-af693de8]{width:100%;min-height:600PX;background:#fff;background-image:url(/img/top.7f0acfc3.png);background-size:100% 50%;background-repeat:no-repeat;background-position:30% -15%;padding:0;margin:0;padding-top:60PX}.ServiceTerms h2[data-v-af693de8]{width:70%;margin:0 auto;margin-bottom:30PX}.clauseBox[data-v-af693de8]{width:70%;min-height:100PX;margin:0 auto}.clauseBox p[data-v-af693de8]{line-height:28PX}.content[data-v-af693de8]{width:100%;margin-bottom:40px}.content .loading-container[data-v-af693de8]{width:70%;margin:40px auto;text-align:center;padding:40px 0}.content .loading-container .el-icon[data-v-af693de8]{font-size:24px;color:#409eff;margin-right:8px}.content .loading-container .loading-text[data-v-af693de8]{font-size:16px;color:#666;vertical-align:middle}.content .no-content[data-v-af693de8]{width:70%;margin:40px auto;text-align:center;padding:40px 0}.content .no-content p[data-v-af693de8]{font-size:16px;color:#999;margin:0}.content .dynamic-content[data-v-af693de8]{width:70%;margin:0 auto;padding:20px 0}.content .dynamic-content[data-v-af693de8] b,.content .dynamic-content[data-v-af693de8] strong{font-weight:700!important;color:inherit!important;font-style:normal!important}.content .dynamic-content[data-v-af693de8] em,.content .dynamic-content[data-v-af693de8] i{font-style:italic!important;color:inherit!important}.content .dynamic-content[data-v-af693de8] code{background-color:#f5f5f5!important;padding:2px 4px!important;border-radius:3px!important;font-family:Courier New,monospace!important;font-size:.9em!important}.content .dynamic-content[data-v-af693de8] del{text-decoration:line-through!important;color:#666!important}.content .dynamic-content[data-v-af693de8] a{color:#007bff!important;text-decoration:none!important}.content .dynamic-content[data-v-af693de8] a:hover{text-decoration:underline!important}.announcements-container[data-v-7ee09dfe]{min-height:100vh;background-color:#f8f9fa;padding:20px}.breadcrumb-section[data-v-7ee09dfe]{display:flex;justify-content:space-between;align-items:center;margin-bottom:30px;background:#fff;padding:16px 24px;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,.06)}.breadcrumb[data-v-7ee09dfe]{font-size:14px}.breadcrumb .breadcrumb-item[data-v-7ee09dfe]{color:#666;cursor:pointer;transition:color .3s ease}.breadcrumb .breadcrumb-item[data-v-7ee09dfe]:hover{color:#5721e4}.search-section .search-input[data-v-7ee09dfe]{width:300px}.main-content[data-v-7ee09dfe]{max-width:1200px;margin:0 auto;background:#fff;border-radius:12px;box-shadow:0 4px 20px rgba(0,0,0,.08);overflow:hidden;margin-top:60px}.page-header[data-v-7ee09dfe]{padding:40px 40px 20px;border-bottom:1px solid #f0f0f0;text-align:center}.page-title[data-v-7ee09dfe]{font-size:32px;font-weight:600;color:#2c3e50;margin:0}.markdown-guide-section[data-v-7ee09dfe]{padding:30px 40px 20px;border-bottom:1px solid #f0f0f0}.guide-header[data-v-7ee09dfe]{display:flex;justify-content:flex-start;margin-bottom:20px}.guide-toggle-btn[data-v-7ee09dfe]{font-size:14px;color:#5721e4;text-decoration:none;transition:color .3s ease}.guide-toggle-btn[data-v-7ee09dfe]:hover{color:#5721e4;text-decoration:underline}.markdown-guide-content[data-v-7ee09dfe]{background:#f8f9ff;border-radius:8px;padding:20px;border:1px solid #e0e0e0;box-shadow:inset 0 1px 3px rgba(0,0,0,.05)}.guide-container[data-v-7ee09dfe]{max-height:0;overflow:hidden;transition:max-height .3s ease-in-out}.guide-container.show[data-v-7ee09dfe]{max-height:1000px}.guide-title[data-v-7ee09dfe]{font-size:20px;font-weight:600;color:#34495e;margin-bottom:20px;border-bottom:1px solid #f0f0f0;padding-bottom:10px}.guide-section[data-v-7ee09dfe]{margin-bottom:25px;padding-bottom:20px;border-bottom:1px dashed #eee}.guide-section[data-v-7ee09dfe]:last-child{border-bottom:none;padding-bottom:0}.guide-section h4[data-v-7ee09dfe]{font-size:16px;font-weight:500;color:#4a4a4a;margin-bottom:15px;position:relative;padding-left:15px}.guide-section h4[data-v-7ee09dfe]:before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);width:4px;height:15px;background:#5721e4;border-radius:2px}.example-container[data-v-7ee09dfe]{display:flex;gap:20px;margin-bottom:15px}.syntax-example[data-v-7ee09dfe]{flex:1;background:#f0f0f0;border-radius:4px;padding:10px;overflow-x:auto;font-size:14px;color:#333;line-height:1.6;white-space:pre-wrap;word-break:break-all;border:1px solid #ccc}.result-preview[data-v-7ee09dfe]{flex:1;padding:10px;background:#fff;border-radius:4px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.05);min-height:100px;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;font-size:14px;color:#555;line-height:1.8}.tips-section[data-v-7ee09dfe]{margin-top:20px;padding-top:20px;border-top:1px dashed #eee}.tips-grid[data-v-7ee09dfe]{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:15px;margin-top:15px}.tip-item[data-v-7ee09dfe]{background:#f0edff;padding:10px 15px;border-radius:6px;font-size:13px;color:#5721e4;font-weight:500;display:flex;align-items:center;gap:8px}.shortcuts-grid[data-v-7ee09dfe]{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:10px;margin-top:15px}.shortcut-item[data-v-7ee09dfe]{background:#f0edff;padding:8px 12px;border-radius:6px;font-size:13px;color:#5721e4;font-weight:500;display:flex;align-items:center;gap:8px}.shortcut-item kbd[data-v-7ee09dfe]{background-color:#e0e0e0;border-radius:4px;padding:2px 4px;font-size:12px;font-family:monospace;color:#333;box-shadow:1px 1px 1px rgba(0,0,0,.2)}.latest-section[data-v-7ee09dfe]{padding:30px 40px 20px}.section-title[data-v-7ee09dfe]{font-size:20px;font-weight:600;color:#34495e;margin:0;position:relative}.section-title[data-v-7ee09dfe]:before{content:"";position:absolute;left:-20px;top:50%;transform:translateY(-50%);width:4px;height:20px;background:#5721e4;border-radius:2px}.announcement-list[data-v-7ee09dfe]{padding:0 40px 20px}.announcement-item[data-v-7ee09dfe]{display:flex;align-items:center;justify-content:space-between;padding:20px 0;border-bottom:1px solid #f5f5f5;cursor:pointer;transition:all .3s ease}.announcement-item[data-v-7ee09dfe]:hover{background-color:#f8f9ff;transform:translateX(5px)}.announcement-item[data-v-7ee09dfe]:last-child{border-bottom:none}.announcement-content[data-v-7ee09dfe]{flex:1}.announcement-title[data-v-7ee09dfe]{font-size:16px;font-weight:500;color:#2c3e50;margin:0 0 8px;line-height:1.4;transition:color .3s ease}.announcement-item:hover .announcement-title[data-v-7ee09dfe]{color:#5721e4}.announcement-meta[data-v-7ee09dfe]{display:flex;align-items:center;gap:16px;margin-bottom:8px}.announcement-date[data-v-7ee09dfe]{font-size:12px;color:#999}.announcement-type[data-v-7ee09dfe]{font-size:12px;color:#5721e4;background:#f0edff;padding:2px 8px;border-radius:12px}.announcement-summary[data-v-7ee09dfe]{font-size:14px;color:#666;line-height:1.5;margin:0;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.announcement-arrow[data-v-7ee09dfe]{color:#ccc;transition:color .3s ease}.announcement-item:hover .announcement-arrow[data-v-7ee09dfe]{color:#5721e4}.empty-state[data-v-7ee09dfe]{text-align:center;padding:80px 40px}.empty-content i[data-v-7ee09dfe]{font-size:64px;color:#ddd;margin-bottom:20px}.empty-content p[data-v-7ee09dfe]{font-size:16px;color:#999;margin:0}.pagination-section[data-v-7ee09dfe]{padding:30px 40px 40px;text-align:center;border-top:1px solid #f0f0f0}.view-all-button[data-v-7ee09dfe]{margin-bottom:20px;display:flex;justify-content:center;align-items:center;gap:16px;flex-wrap:wrap}.view-all-link[data-v-7ee09dfe]{font-size:14px;color:#5721e4;text-decoration:none}.view-all-link[data-v-7ee09dfe]:hover{text-decoration:underline}.markdown-guide-btn[data-v-7ee09dfe]{font-size:14px;color:#5721e4!important;font-weight:500;transition:all .3s ease;border:1px solid #5721e4;border-radius:4px;padding:8px 16px}.markdown-guide-btn[data-v-7ee09dfe]:hover{color:#fff!important;background-color:#5721e4!important;transform:translateY(-1px);box-shadow:0 4px 8px rgba(87,33,228,.3)}.pagination[data-v-7ee09dfe]{justify-content:center}.pagination[data-v-7ee09dfe] .el-pager li{background-color:transparent;color:#666}.pagination[data-v-7ee09dfe] .el-pager li.active{background-color:#5721e4;color:#fff}.pagination[data-v-7ee09dfe] .el-pager li:hover:not(.active){background-color:#f0edff;color:#5721e4}.pagination[data-v-7ee09dfe] .btn-next,.pagination[data-v-7ee09dfe] .btn-prev{background-color:transparent;color:#666}.pagination[data-v-7ee09dfe] .btn-next:hover,.pagination[data-v-7ee09dfe] .btn-prev:hover{background-color:#f0edff;color:#5721e4}@media screen and (max-width:768px){.announcements-container[data-v-7ee09dfe]{padding:10px}.breadcrumb-section[data-v-7ee09dfe]{flex-direction:column;gap:16px;align-items:stretch;padding:16px}.search-section .search-input[data-v-7ee09dfe]{width:100%}.main-content[data-v-7ee09dfe]{border-radius:8px}.markdown-guide-section[data-v-7ee09dfe]{padding:15px 20px}.guide-header[data-v-7ee09dfe]{justify-content:center}.guide-toggle-btn[data-v-7ee09dfe]{font-size:13px}.markdown-guide-content[data-v-7ee09dfe]{padding:10px}.guide-container.show[data-v-7ee09dfe],.guide-container[data-v-7ee09dfe]{max-height:none}.example-container[data-v-7ee09dfe]{flex-direction:column;gap:10px}.result-preview[data-v-7ee09dfe],.syntax-example[data-v-7ee09dfe]{width:100%}.shortcuts-grid[data-v-7ee09dfe],.tips-grid[data-v-7ee09dfe]{grid-template-columns:1fr}.shortcut-item[data-v-7ee09dfe],.tip-item[data-v-7ee09dfe]{justify-content:flex-start;padding-left:15px}.shortcut-item kbd[data-v-7ee09dfe]{font-size:11px}.announcement-list[data-v-7ee09dfe],.latest-section[data-v-7ee09dfe],.page-header[data-v-7ee09dfe],.pagination-section[data-v-7ee09dfe]{padding-left:20px;padding-right:20px}.page-title[data-v-7ee09dfe]{font-size:24px}.section-title[data-v-7ee09dfe]{font-size:18px}.section-title[data-v-7ee09dfe]:before{left:-16px}.announcement-item[data-v-7ee09dfe]{padding:16px 0}.announcement-title[data-v-7ee09dfe]{font-size:15px}.announcement-meta[data-v-7ee09dfe]{flex-direction:column;align-items:flex-start;gap:4px}.view-all-button[data-v-7ee09dfe]{flex-direction:column;gap:12px}.markdown-guide-btn[data-v-7ee09dfe]{font-size:13px;padding:6px 12px}}@media(prefers-color-scheme:dark){.announcements-container[data-v-7ee09dfe]{background-color:#1a1a1a}.breadcrumb-section[data-v-7ee09dfe],.main-content[data-v-7ee09dfe]{background:#2d2d2d;color:#fff}.markdown-guide-section[data-v-7ee09dfe]{background:#2d2d2d;border-color:#3a3a3a}.guide-section h4[data-v-7ee09dfe],.guide-title[data-v-7ee09dfe]{color:#fff}.syntax-example[data-v-7ee09dfe]{background:#3a3a3a;border-color:#555;color:#ccc}.result-preview[data-v-7ee09dfe]{background:#333;border-color:#555;color:#bbb}.tips-section[data-v-7ee09dfe]{border-top-color:#3a3a3a}.shortcut-item[data-v-7ee09dfe],.tip-item[data-v-7ee09dfe]{background:#3a3a3a;color:#888}.shortcut-item kbd[data-v-7ee09dfe]{background-color:#444;color:#eee;box-shadow:1px 1px 1px rgba(0,0,0,.3)}.announcement-title[data-v-7ee09dfe],.page-title[data-v-7ee09dfe],.section-title[data-v-7ee09dfe]{color:#fff}.announcement-item[data-v-7ee09dfe]:hover{background-color:#3a3a3a}.announcement-summary[data-v-7ee09dfe]{color:#ccc}.announcement-date[data-v-7ee09dfe]{color:#999}}.slide-fade-enter-active[data-v-7ee09dfe],.slide-fade-leave-active[data-v-7ee09dfe]{transition:all .3s ease}.slide-fade-enter[data-v-7ee09dfe],.slide-fade-leave-to[data-v-7ee09dfe]{transform:translateY(-10px);opacity:0}.announcementDetails[data-v-9a80418e]{width:100vw;height:100vh;background:#f8f9fa;padding-top:60px}.container[data-v-9a80418e]{display:flex;justify-content:center;width:70vw;height:80vh;margin:0 auto;background:#fff;border-radius:10px;box-shadow:0 0 10px 0 rgba(0,0,0,.1);padding:20px;padding-top:50px}.container .leftNav[data-v-9a80418e]{width:200px;height:100%;overflow-y:auto}.container .rightContent[data-v-9a80418e]{flex:1;height:100%;margin-left:50px;overflow-y:auto;padding-right:20px}.container .rightContent .dynamic-content[data-v-9a80418e]{width:100%;margin:0 auto}.container .rightContent .dynamic-content[data-v-9a80418e] table{border-collapse:collapse;width:100%;margin:16px 0}.container .rightContent .dynamic-content[data-v-9a80418e] td,.container .rightContent .dynamic-content[data-v-9a80418e] th{border:1px solid #d1d5db;padding:8px 12px;text-align:left}.container .rightContent .dynamic-content[data-v-9a80418e] th{background:#f3f4f6;font-weight:700}.container .rightContent .dynamic-content[data-v-9a80418e] b,.container .rightContent .dynamic-content[data-v-9a80418e] strong{font-weight:700!important;color:inherit!important;font-style:normal!important}.container .rightContent .dynamic-content[data-v-9a80418e] em,.container .rightContent .dynamic-content[data-v-9a80418e] i{font-style:italic!important;color:inherit!important}.container .rightContent .dynamic-content[data-v-9a80418e] a{color:#007bff!important;text-decoration:none!important}.container .rightContent .dynamic-content[data-v-9a80418e] a:hover{text-decoration:underline!important}.container .rightContent .loading-container[data-v-9a80418e]{text-align:center;padding:40px 0}.container .rightContent .loading-container .loading-text[data-v-9a80418e]{font-size:16px;color:#666;vertical-align:middle}.container .rightContent .no-content[data-v-9a80418e]{text-align:center;padding:40px 0}.container .rightContent .no-content p[data-v-9a80418e]{font-size:16px;color:#999;margin:0}.leftNav-item[data-v-9a80418e]{cursor:pointer;padding:10px;margin-bottom:10px;text-decoration:underline;text-align:right}.leftNav-item[data-v-9a80418e]:hover{background:rgba(0,0,0,.02);color:#651fff}.active[data-v-9a80418e]{color:#651fff}.container[data-v-578e33f5]{display:flex;justify-content:center;width:80vw;height:80vh;margin:0 auto;border-radius:10px;padding:20px;margin-top:60px;padding-top:50px}.container .leftNav[data-v-578e33f5]{width:200px;height:100%;overflow-y:auto}.container .rightContent[data-v-578e33f5]{flex:1;height:100%;margin-left:50px;overflow-y:auto;padding-right:20px}.container .rightContent .dynamic-content[data-v-578e33f5]{width:100%;margin:0 auto}.container .rightContent .dynamic-content[data-v-578e33f5] table{border-collapse:collapse;width:100%;margin:16px 0}.container .rightContent .dynamic-content[data-v-578e33f5] td,.container .rightContent .dynamic-content[data-v-578e33f5] th{border:1px solid #d1d5db;padding:8px 12px;text-align:left}.container .rightContent .dynamic-content[data-v-578e33f5] th{background:#f3f4f6;font-weight:700}.container .rightContent .dynamic-content[data-v-578e33f5] b,.container .rightContent .dynamic-content[data-v-578e33f5] strong{font-weight:700!important;color:inherit!important;font-style:normal!important}.container .rightContent .dynamic-content[data-v-578e33f5] em,.container .rightContent .dynamic-content[data-v-578e33f5] i{font-style:italic!important;color:inherit!important}.container .rightContent .dynamic-content[data-v-578e33f5] a{color:#007bff!important;text-decoration:none!important}.container .rightContent .dynamic-content[data-v-578e33f5] a:hover{text-decoration:underline!important}.container .rightContent .loading-container[data-v-578e33f5]{text-align:center;padding:40px 0}.container .rightContent .loading-container .loading-text[data-v-578e33f5]{font-size:16px;color:#666;vertical-align:middle}.container .rightContent .no-content[data-v-578e33f5]{text-align:center;padding:40px 0}.container .rightContent .no-content p[data-v-578e33f5]{font-size:16px;color:#999;margin:0}.leftNav-item[data-v-578e33f5]{cursor:pointer;padding:10px;margin-bottom:10px;text-decoration:underline;text-align:right}.leftNav-item[data-v-578e33f5]:hover{background:rgba(0,0,0,.02);color:#651fff}.active[data-v-578e33f5]{color:#651fff}@media screen and (min-width:220px)and (max-width:1279px){.mobileMain[data-v-ec5988d8]{width:100%;background:transparent!important;padding:0;margin:0;padding:8px;padding-top:60PX}.mobileMain h4[data-v-ec5988d8]{color:rgba(0,0,0,.8);text-align:left;width:100%;padding-left:3px}.mobileMain .explain[data-v-ec5988d8]{font-size:.85rem;margin-top:8px;color:rgba(0,0,0,.6)}.mobileMain .accountInformation[data-v-ec5988d8]{width:100%;height:30px;background:rgba(0,0,0,.5);position:fixed;top:62px;left:0;display:flex;align-items:center;padding:1% 5%;z-index:2001}.mobileMain .accountInformation img[data-v-ec5988d8]{width:20px}.mobileMain .accountInformation i[data-v-ec5988d8]{color:#fff;font-size:1.2rem;margin-left:10px}.mobileMain .accountInformation .coin[data-v-ec5988d8]{font-size:.9rem;margin-left:5px;font-weight:600;color:#fff;text-transform:capitalize}.mobileMain .accountInformation .ma[data-v-ec5988d8]{font-size:.9rem;font-weight:600;color:#fff;margin-left:10px}.BthBox[data-v-ec5988d8]{width:100%;text-align:right;padding:0 20px}.BthBox .addBth[data-v-ec5988d8]{border-radius:20px;color:#fff;background:#661ffb;margin-top:18px}.tableBox[data-v-ec5988d8]{margin:0 auto;width:96%;min-height:300px;overflow:hidden;border-radius:8px;font-size:.9rem;margin-bottom:20px;box-shadow:0 0 5px 2px #ccc;margin-top:10px;background:#fff}.tableBox .table-title[data-v-ec5988d8]{height:50px;background:#d2c4e8;display:flex;justify-content:space-around;align-items:center;font-weight:600;padding-left:0!important;text-align:center}.tableBox .table-title span[data-v-ec5988d8]:first-of-type{width:50%!important}.tableBox .table-title span[data-v-ec5988d8]:nth-of-type(2){min-width:30%}.tableBox .collapseTitle[data-v-ec5988d8]{width:100%;display:flex;justify-content:space-around;align-items:center;padding-left:0!important;text-align:center}.tableBox .collapseTitle .coinBox[data-v-ec5988d8]{width:50%;overflow:hidden;text-overflow:ellipsis}.tableBox .collapseTitle .operationBox[data-v-ec5988d8]{min-width:30%}.tableBox .belowTable[data-v-ec5988d8]{background:#f0e9f5;padding:10px 0}.tableBox .belowTable div[data-v-ec5988d8]{width:100%;height:auto;text-align:left;padding-left:8%}.tableBox .belowTable div p[data-v-ec5988d8]:first-of-type{font-weight:600}.tableBox .belowTable div p[data-v-ec5988d8]{word-wrap:break-word}.tableBox .belowTable div p .copy[data-v-ec5988d8]{padding:0 5px;display:inline-block;cursor:pointer;border:1px solid #d1c2e9;border-radius:5px;margin-left:10px;font-size:.8rem}.tableBox .paginationBox[data-v-ec5988d8]{text-align:center}}@media screen and (min-width:220px)and (max-width:500px){[data-v-ec5988d8] .el-dialog{width:98%!important;border-radius:10px!important}[data-v-ec5988d8] .el-dialog__body{padding:0!important}[data-v-ec5988d8] .dialogBox .inputBox{width:93%!important;margin-top:8px!important}}@media screen and (min-width:500px)and (max-width:800px){[data-v-ec5988d8] .el-dialog{width:80%!important;border-radius:10px!important}[data-v-ec5988d8] .el-dialog__body{padding:0!important}[data-v-ec5988d8] .dialogBox .inputBox{width:80%!important;margin-top:8px!important}}.pcMain[data-v-ec5988d8]{width:100%;min-height:100vh;background:#fff;background-image:url(/img/top.7f0acfc3.png);background-size:100% 50%;background-repeat:no-repeat;background-position:30% -15%;padding:0;margin:0;padding-top:60PX;display:flex;justify-content:center}.alerts[data-v-ec5988d8]{width:100%}.accountInformation[data-v-ec5988d8]{width:100%;height:30px;background:rgba(0,0,0,.5);position:fixed;top:8%;left:0;display:flex;align-items:center;padding:1% 5%;z-index:2001}.accountInformation img[data-v-ec5988d8]{width:23px}.accountInformation i[data-v-ec5988d8]{color:#fff;font-size:1.5em;margin-left:10px}.accountInformation .coin[data-v-ec5988d8]{margin-left:5px;font-weight:600;color:#fff;text-transform:capitalize}.accountInformation .ma[data-v-ec5988d8]{font-weight:600;color:#fff;margin-left:10px}.content[data-v-ec5988d8]{width:70%;min-height:500px;padding:20px}.content h2[data-v-ec5988d8]{color:rgba(0,0,0,.8);margin-bottom:18px}.content .explain[data-v-ec5988d8]{color:rgba(0,0,0,.6);font-size:.9rem;margin-top:5px}.content .BthBox[data-v-ec5988d8]{width:100%;text-align:right;padding:0 20px}.content .BthBox .addBth[data-v-ec5988d8]{border-radius:20px;color:#fff;background:#661ffb}.modifyBth[data-v-ec5988d8]{margin-right:8px;color:#fff;background:#661ffb}.elBtn[data-v-ec5988d8]{color:#fff;background:#f0286a}.dialogBox[data-v-ec5988d8]{padding:0 20PX;padding-bottom:50PX;display:flex;justify-content:center;flex-direction:column;align-items:center}.dialogBox .title[data-v-ec5988d8]{width:100%;text-align:center;font-size:1em;font-weight:600}.dialogBox .inputBox[data-v-ec5988d8]{width:70%;margin-top:20PX}.dialogBox .inputBox .inputItem[data-v-ec5988d8]{margin-top:30PX;display:flex;flex-direction:column;align-items:left;justify-content:left}.dialogBox .inputBox .title[data-v-ec5988d8]{font-size:1.1em;text-align:left}.dialogBox .inputBox .input[data-v-ec5988d8]{margin-top:10PX}.dialogBox .el-button[data-v-ec5988d8]{background:#661fff;color:#edf2ff;border:none;outline:none;margin-top:30PX}[data-v-ec5988d8] .el-dialog{background-image:url(/img/dialog1.6b499f8a.png);background-size:130% 105%;background-repeat:no-repeat;background-position:100% 100%;border-radius:32PX}.verificationCode[data-v-ec5988d8]{display:flex;margin-top:10px}.verificationCode .codeBtn[data-v-ec5988d8]{font-size:13px;margin-left:2px;margin:0;margin-left:8px}.bthBox[data-v-ec5988d8]{width:100%;display:flex;align-items:center;padding:0 15%}.bthBox .previousStep[data-v-ec5988d8]{width:35%;font-size:1.3em}.verificationBthBox[data-v-ec5988d8]{width:70%;display:flex;justify-content:left}.verificationBthBox .el-button.previousStep[data-v-ec5988d8]{min-width:28%;background:#d0c4e8;color:#fff}.verificationBthBox .el-button.confirmBtn[data-v-ec5988d8]{min-width:60%;background:#661fff;color:#fff;border:none}.table[data-v-ec5988d8]{box-shadow:0 3px 20px 1px #ccc} \ No newline at end of file diff --git a/mining-pool/test/css/app-45954fd3.bdb4aecd.css.gz b/mining-pool/test/css/app-45954fd3.bdb4aecd.css.gz new file mode 100644 index 0000000..aaf9b52 Binary files /dev/null and b/mining-pool/test/css/app-45954fd3.bdb4aecd.css.gz differ diff --git a/mining-pool/test/css/app-b4c4f6ec.d99a94fb.css b/mining-pool/test/css/app-b4c4f6ec.d99a94fb.css new file mode 100644 index 0000000..53c2674 --- /dev/null +++ b/mining-pool/test/css/app-b4c4f6ec.d99a94fb.css @@ -0,0 +1 @@ +@media screen and (min-width:220px)and (max-width:1279px){.AccessMiningPoolMain[data-v-5dadff3c]{width:100%;background:transparent!important;padding:0;margin:0;padding-top:30px;display:flex;justify-content:center;overflow-y:auto;height:100%}.AccessMiningPoolMain .mail[data-v-5dadff3c]{color:#5917c4}.notOpen[data-v-5dadff3c]{width:100%;display:inline-block!important;margin:50px 0;justify-content:center;padding:0 30px}.notOpen p[data-v-5dadff3c]{font-size:20px!important;width:100%!important;line-height:50px;color:#6a24ff;text-align:center}.notOpen .imgBox[data-v-5dadff3c]{display:flex;justify-content:center;margin-top:30px}.notOpen img[data-v-5dadff3c]{width:80%}.currencySelect[data-v-5dadff3c]{display:flex;align-items:center;padding-left:8px;font-size:.85rem}.currencySelect .el-menu-demo[data-v-5dadff3c]{width:100%}.currencySelect .el-menu[data-v-5dadff3c]{background:transparent}.currencySelect .coinSelect img[data-v-5dadff3c]{width:25px}.currencySelect .coinSelect span[data-v-5dadff3c]{text-transform:capitalize;margin-left:5px}.moveCurrencyBox[data-v-5dadff3c]{margin:0;padding:0;width:100%;display:flex;min-height:200px;flex-wrap:wrap;padding:10px 20px;margin:0 auto;background:#fff}.moveCurrencyBox li[data-v-5dadff3c]{list-style:none;display:flex;flex-direction:column;align-items:center!important;margin-left:10px;padding:5px 5px;box-sizing:border-box}.moveCurrencyBox li img[data-v-5dadff3c]{width:25px}.moveCurrencyBox li p[data-v-5dadff3c]{min-width:50px;margin-top:8px;font-size:.85rem;word-wrap:break-word;word-break:break-all;text-align:center;text-transform:capitalize}.mainTitle[data-v-5dadff3c]{padding:0 20px}.mainTitle span[data-v-5dadff3c]{font-size:.95rem;color:rgba(0,0,0,.7);font-weight:600}.tableBox[data-v-5dadff3c]{margin:0 auto;width:96%;min-height:300px;overflow:hidden;border-radius:8px;font-size:.9rem;margin-bottom:20px;box-shadow:0 0 5px 2px #ccc;margin-top:10px;background:#fff}.tableBox .table-title[data-v-5dadff3c]{height:50px;background:#d2c4e8;display:flex;justify-content:space-around;align-items:center;font-weight:600;padding-left:0!important}.tableBox .table-title span[data-v-5dadff3c]{text-align:center}.tableBox .table-title span[data-v-5dadff3c]:first-of-type{width:50%!important}.tableBox .table-title span[data-v-5dadff3c]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700;padding-right:5px}.tableBox .collapseTitle[data-v-5dadff3c]{width:100%;display:flex;justify-content:space-around;align-items:center;padding-left:0!important;text-align:center}.tableBox .collapseTitle span[data-v-5dadff3c]{text-align:center}.tableBox .collapseTitle span[data-v-5dadff3c]:first-of-type{width:50%!important;display:flex;align-items:center;justify-content:center}.tableBox .collapseTitle span:first-of-type img[data-v-5dadff3c]{margin-right:5px}.tableBox .collapseTitle span[data-v-5dadff3c]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700}.tableBox .belowTable[data-v-5dadff3c]{background:#f0e9f5;padding:10px 0}.tableBox .belowTable div[data-v-5dadff3c]{width:100%;height:auto;text-align:left;padding-left:8%}.tableBox .belowTable div p[data-v-5dadff3c]:first-of-type{font-weight:600}.tableBox .belowTable div p[data-v-5dadff3c]{word-wrap:break-word}.tableBox .belowTable div p .copy[data-v-5dadff3c]{padding:0 5px;display:inline-block;cursor:pointer;border:1px solid #d1c2e9;border-radius:5px;margin-left:10px;font-size:.8rem}.tableBox .paginationBox[data-v-5dadff3c]{text-align:center}#careful[data-v-5dadff3c]{padding:0 8px;font-size:.85rem;color:rgba(0,0,0,.7);line-height:25px}#careful .mail[data-v-5dadff3c]{color:#5917c4}.step[data-v-5dadff3c]{width:99%!important;margin:0 auto;margin-top:3%;border:1px solid rgba(0,0,0,.1);box-sizing:border-box;padding:15px!important}.step p[data-v-5dadff3c]{line-height:25px!important}.step .stepTitle[data-v-5dadff3c]{height:auto!important;width:100%;border-bottom:1px solid rgba(0,0,0,.1);line-height:30px!important;font-size:.95rem!important;color:rgba(0,0,0,.6);font-weight:600;word-wrap:break-word}.step .textBox[data-v-5dadff3c]{padding:10px!important;color:rgba(5,32,75,.6);font-weight:400!important;font-size:.85rem!important}[data-v-5dadff3c] .el-collapse-item__content{padding:0!important}.nav[data-v-5dadff3c]{z-index:1000;margin-right:8px}.nav-item[data-v-5dadff3c]{position:relative;display:flex;align-items:center;justify-content:center;cursor:pointer;padding:0 10px}.nav-item .itemImg[data-v-5dadff3c]{width:20px;margin-right:5px}.nav-item .arrow[data-v-5dadff3c]{margin-left:5px;border:solid rgba(0,0,0,.3);border-width:0 1px 1px 0;display:inline-block;padding:3px;transform:rotate(45deg);transition:transform .3s}.nav-item .arrow.up[data-v-5dadff3c]{transform:rotate(-135deg)}.dropdown[data-v-5dadff3c]{position:absolute;top:28px;left:0;width:362px;background:#fff;border:1px solid #eee;border-radius:4px;padding:3px;display:none;flex-wrap:wrap;gap:1px;box-shadow:0 2px 12px 0 rgba(0,0,0,.1);z-index:999999}.dropdown.show[data-v-5dadff3c]{display:flex}.dropdown .option[data-v-5dadff3c]{width:70px;height:70px;background:#f5f5f5;cursor:pointer;transition:all .3s;border-radius:4px;overflow:hidden;text-align:center;padding:5px;text-overflow:ellipsis}.dropdown .optionActive[data-v-5dadff3c],.dropdown .option[data-v-5dadff3c]:hover{background:#e8e8e8;color:#6e3edb;border:1px solid #9d8ac9}.dropdownCoin[data-v-5dadff3c]{width:23px;margin:0}.dropdownText[data-v-5dadff3c]{width:100%;font-size:.8rem;text-align:center;margin:0;word-break:break-word;margin-top:5px}}.AccessMiningPoolMain[data-v-5dadff3c],.openAPI[data-v-5dadff3c]{width:100%;height:100%}.AccessMiningPool[data-v-5dadff3c]{width:100%;background:#fff;background-image:url(/img/top.7f0acfc3.png);background-size:100% 65%;background-repeat:no-repeat;background-position:30% -15%;padding:0;margin:0;padding-top:60px;display:flex;justify-content:center}.AccessMiningPool a[data-v-5dadff3c]{color:#8a2be2}.tutorialContent[data-v-5dadff3c]{width:60%;box-shadow:0 0 10px 3px rgba(0,0,0,.1);border-radius:8px;overflow:hidden;background:#fff;padding-top:30px;height:100%;overflow-y:auto;padding:20px;padding-bottom:30px}.notOpen[data-v-5dadff3c]{display:flex;margin-top:10%;justify-content:center}.notOpen p[data-v-5dadff3c]{font-size:25px;width:25%;line-height:50px;color:#6a24ff}.menu[data-v-5dadff3c]{width:18%;margin-right:30px;background:#fff;padding:20px!important;border-radius:8px;box-shadow:0 0 10px 3px rgba(0,0,0,.1);min-height:300px}.menu ul[data-v-5dadff3c]{margin:0;padding:0}.menu ul li[data-v-5dadff3c]{list-style:none;min-height:40px;line-height:20px;text-align:left;margin-top:8px;cursor:pointer;align-items:start;padding:5px;transition:all .3s;display:flex;align-items:center;justify-content:left}.menu ul li img[data-v-5dadff3c]{width:25px;margin-right:5px}.menu ul li span[data-v-5dadff3c]{font-size:.9rem}.menu ul li[data-v-5dadff3c]:hover{text-decoration:underline}.active[data-v-5dadff3c]{color:#6924ff;background:#d2c3ea;border-radius:5px}.table[data-v-5dadff3c]{width:70%;box-shadow:0 0 10px 3px rgba(0,0,0,.1);background:#fff;border-radius:8px;padding:50px}.table .mainTitle[data-v-5dadff3c]{font-size:1.5em;width:100%;margin:0 auto;font-weight:600;color:rgba(0,0,0,.6);display:flex;align-items:center;justify-content:left}.table .mainTitle img[data-v-5dadff3c]{width:30px;margin-right:5px}.table .theServer[data-v-5dadff3c]{width:100%;margin:0 auto;box-shadow:0 0 3px 1px rgba(0,0,0,.1);padding:10px 10px;margin-top:20px}.table .theServer .title[data-v-5dadff3c]{width:100%;padding-left:3%;height:50px;line-height:50px;font-size:1.3em;color:rgba(0,0,0,.6);font-weight:600;border-bottom:1px solid rgba(0,0,0,.1)}.table .theServer ul[data-v-5dadff3c]{width:100%;height:90%;padding:0;margin:0;margin-top:1%}.table .theServer ul li[data-v-5dadff3c]{list-style:none;height:40px;line-height:40px;background:#efefef;display:flex;justify-content:space-between;font-size:.9rem}.table .theServer ul li span[data-v-5dadff3c]{display:inline-block;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:rgba(0,0,0,.7)}.table .theServer ul li .coin[data-v-5dadff3c]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul li .coin img[data-v-5dadff3c]{width:25px;margin-right:5px}.table .theServer ul li .coin span[data-v-5dadff3c]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul li .quota[data-v-5dadff3c]{color:#ca094a;font-weight:600}.table .theServer ul li .difficulty[data-v-5dadff3c]{width:10%}.table .theServer ul li .port[data-v-5dadff3c]{width:35%}.table .theServer ul li .port i[data-v-5dadff3c]{font-size:1em}.table .theServer ul li .port i[data-v-5dadff3c]:hover{color:#6924ff}.table .theServer ul li i[data-v-5dadff3c]{cursor:pointer}.table .theServer ul li[data-v-5dadff3c]:nth-child(2n){background-color:#fff}.table .theServer ul .liTitle[data-v-5dadff3c]{width:100%;height:50px;line-height:50px;background:#d2c3ea;color:#36246f;font-size:.95rem}.table .theServer ul .liTitle .coin[data-v-5dadff3c]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul .liTitle .coin img[data-v-5dadff3c]{width:25px}.table .theServer ul .liTitle .coin span[data-v-5dadff3c]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul .liTitle .port[data-v-5dadff3c]{width:35%}.table .careful[data-v-5dadff3c]{margin-top:8px;font-size:.9rem;color:rgba(0,0,0,.7)}.table .careful a[data-v-5dadff3c]{color:#6924ff}.step[data-v-5dadff3c]{width:100%;margin:0 auto;margin-top:3%;border:1px solid rgba(0,0,0,.1);box-sizing:border-box;padding:20px}.step p[data-v-5dadff3c]{line-height:30px}.step .stepTitle[data-v-5dadff3c]{height:40px;width:100%;border-bottom:1px solid rgba(0,0,0,.1);line-height:40px;font-size:1rem;color:rgba(0,0,0,.6);font-weight:600}.step .textBox[data-v-5dadff3c]{padding:20px;color:rgba(5,32,75,.6);font-weight:600;font-size:.95rem}.rightContent[data-v-5dadff3c]{flex:1;height:100%;margin-left:50px;overflow-y:auto;padding-right:20px;background:#fff}.rightContent .dynamic-content[data-v-5dadff3c]{width:100%;margin:0 auto;font-family:PingFang SC,Microsoft YaHei,Arial,sans-serif;font-size:16px;line-height:1.7;color:#222}.rightContent .dynamic-content[data-v-5dadff3c] table{border-collapse:collapse;width:100%;margin:16px 0;font-size:14px}.rightContent .dynamic-content[data-v-5dadff3c] td,.rightContent .dynamic-content[data-v-5dadff3c] th{border:1px solid #d1d5db;padding:8px 12px;text-align:left}.rightContent .dynamic-content[data-v-5dadff3c] th{background:#d2c3ea;font-weight:700}.rightContent .dynamic-content[data-v-5dadff3c] b,.rightContent .dynamic-content[data-v-5dadff3c] strong{font-weight:700!important;color:inherit!important;font-style:normal!important}.rightContent .dynamic-content[data-v-5dadff3c] em,.rightContent .dynamic-content[data-v-5dadff3c] i{font-style:italic!important;color:inherit!important}.rightContent .dynamic-content[data-v-5dadff3c] a{color:#661ffb!important;text-decoration:none!important}.rightContent .dynamic-content[data-v-5dadff3c] a:hover{text-decoration:underline!important}.rightContent .dynamic-content[data-v-5dadff3c] p{text-align:justify!important;text-justify:inter-ideograph!important;text-indent:0!important;line-height:2!important;margin:.8em 0!important;word-break:break-all}.rightContent .loading-container[data-v-5dadff3c]{text-align:center;padding:40px 0}.rightContent .loading-container .loading-text[data-v-5dadff3c]{font-size:16px;color:#666;vertical-align:middle}.rightContent .no-content[data-v-5dadff3c]{text-align:center;padding:40px 0}.rightContent .no-content p[data-v-5dadff3c]{font-size:16px;color:#999;margin:0}@media screen and (min-width:220px)and (max-width:1279px){.AccessMiningPoolMain[data-v-089a61bb]{width:100%;background:transparent!important;padding:0;margin:0;padding-top:30PX;display:flex;justify-content:center}.AccessMiningPoolMain .mail[data-v-089a61bb]{color:#5917c4}.notOpen[data-v-089a61bb]{width:100%;display:inline-block!important;margin:50px 0;justify-content:center;padding:0 30px}.notOpen p[data-v-089a61bb]{font-size:20px!important;width:100%!important;line-height:50px;color:#6a24ff;text-align:center}.notOpen .imgBox[data-v-089a61bb]{display:flex;justify-content:center;margin-top:30px}.notOpen img[data-v-089a61bb]{width:80%}.currencySelect[data-v-089a61bb]{display:flex;align-items:center;margin-bottom:10px;padding-left:8px;font-size:.85rem}.currencySelect .el-menu-demo[data-v-089a61bb]{width:100%}.currencySelect .el-menu[data-v-089a61bb]{background:transparent}.currencySelect .coinSelect img[data-v-089a61bb]{width:25px}.currencySelect .coinSelect span[data-v-089a61bb]{text-transform:capitalize;margin-left:5px}.moveCurrencyBox[data-v-089a61bb]{margin:0;padding:0;width:100%;display:flex;min-height:200px;flex-wrap:wrap;padding:10px 20px;margin:0 auto;background:#fff}.moveCurrencyBox li[data-v-089a61bb]{list-style:none;display:flex;flex-direction:column;align-items:center!important;margin-left:10px;padding:5px 5px;box-sizing:border-box}.moveCurrencyBox li img[data-v-089a61bb]{width:25px}.moveCurrencyBox li p[data-v-089a61bb]{min-width:50px;margin-top:8px;font-size:.85rem;word-wrap:break-word;word-break:break-all;text-align:center;text-transform:capitalize}.mainTitle[data-v-089a61bb]{padding:0 20px}.mainTitle span[data-v-089a61bb]{font-size:.95rem;color:rgba(0,0,0,.7);font-weight:600}.tableBox[data-v-089a61bb]{margin:0 auto;width:96%;min-height:300px;overflow:hidden;border-radius:8px;font-size:.9rem;margin-bottom:20px;box-shadow:0 0 5px 2px #ccc;margin-top:10px;background:#fff}.tableBox .table-title[data-v-089a61bb]{height:50px;background:#d2c4e8;display:flex;justify-content:space-around;align-items:center;font-weight:600;padding-left:0!important}.tableBox .table-title span[data-v-089a61bb]{text-align:center}.tableBox .table-title span[data-v-089a61bb]:first-of-type{width:50%!important}.tableBox .table-title span[data-v-089a61bb]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700;padding-right:5px}.tableBox .collapseTitle[data-v-089a61bb]{width:100%;display:flex;justify-content:space-around;align-items:center;padding-left:0!important;text-align:center}.tableBox .collapseTitle span[data-v-089a61bb]{text-align:center}.tableBox .collapseTitle span[data-v-089a61bb]:first-of-type{width:50%!important;display:flex;align-items:center;justify-content:center}.tableBox .collapseTitle span:first-of-type img[data-v-089a61bb]{margin-right:5px}.tableBox .collapseTitle span[data-v-089a61bb]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700}.tableBox .belowTable[data-v-089a61bb]{background:#f0e9f5;padding:10px 0}.tableBox .belowTable div[data-v-089a61bb]{width:100%;height:auto;text-align:left;padding-left:8%}.tableBox .belowTable div p[data-v-089a61bb]:first-of-type{font-weight:600}.tableBox .belowTable div p[data-v-089a61bb]{word-wrap:break-word}.tableBox .belowTable div p .copy[data-v-089a61bb]{padding:0 5px;display:inline-block;cursor:pointer;border:1px solid #d1c2e9;border-radius:5px;margin-left:10px;font-size:.8rem}.tableBox .paginationBox[data-v-089a61bb]{text-align:center}#careful[data-v-089a61bb]{padding:0 8px;font-size:.85rem;color:rgba(0,0,0,.7);line-height:25px}#careful .mail[data-v-089a61bb]{color:#5917c4}.step[data-v-089a61bb]{width:99%!important;margin:0 auto;margin-top:3%;border:1PX solid rgba(0,0,0,.1);box-sizing:border-box;padding:15PX!important}.step p[data-v-089a61bb]{line-height:25PX!important}.step .stepTitle[data-v-089a61bb]{height:auto!important;width:100%;border-bottom:1PX solid rgba(0,0,0,.1);line-height:30PX!important;font-size:.95rem!important;color:rgba(0,0,0,.6);font-weight:600;word-wrap:break-word}.step .textBox[data-v-089a61bb]{padding:10px!important;color:rgba(5,32,75,.6);font-weight:400!important;font-size:.85rem!important}[data-v-089a61bb] .el-collapse-item__content{padding:0!important}}.nexaAccess[data-v-089a61bb]{width:100%;font-size:.9rem}.AccessMiningPool2[data-v-089a61bb]{width:100%;padding:0;margin:0;display:flex;justify-content:center}.AccessMiningPool2 a[data-v-089a61bb]{color:#8a2be2}.notOpen[data-v-089a61bb]{display:flex;margin-top:10%;justify-content:center}.notOpen p[data-v-089a61bb]{font-size:25px;width:25%;line-height:50px;color:#6a24ff}.menu[data-v-089a61bb]{width:15%;margin-right:30px;background:#fff;padding:20px!important;border-radius:8px;box-shadow:0 0 10px 3px rgba(0,0,0,.1)}.menu ul[data-v-089a61bb]{margin:0;padding:0}.menu ul li[data-v-089a61bb]{list-style:none;min-height:40px;line-height:40px;font-size:1.1rem;text-align:center;margin-top:8px;cursor:pointer}.menu ul li[data-v-089a61bb]:hover{text-decoration:underline}.active[data-v-089a61bb]{color:#6924ff;background:#d2c3ea;border-radius:5px}.table[data-v-089a61bb]{width:100%;background:#fff;border-radius:8px;padding:50px}.table .mainTitle[data-v-089a61bb]{font-size:1.5em;width:100%;margin:0 auto;font-weight:600;color:rgba(0,0,0,.6);display:flex;align-items:center;justify-content:left}.table .mainTitle img[data-v-089a61bb]{width:30px;margin-right:5px}.table .theServer[data-v-089a61bb]{width:100%;margin:0 auto;box-shadow:0 0 3px 1px rgba(0,0,0,.1);padding:10px 10px;margin-top:20px}.table .theServer .title[data-v-089a61bb]{width:100%;padding-left:3%;height:50px;line-height:50px;font-size:1.3em;color:rgba(0,0,0,.6);font-weight:600;border-bottom:1px solid rgba(0,0,0,.1)}.table .theServer ul[data-v-089a61bb]{width:100%;height:90%;padding:0;margin:0;margin-top:1%}.table .theServer ul li[data-v-089a61bb]{list-style:none;height:40px;line-height:40px;background:#efefef;display:flex;justify-content:space-between;font-size:.9rem}.table .theServer ul li span[data-v-089a61bb]{display:inline-block;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:rgba(0,0,0,.7)}.table .theServer ul li .coin[data-v-089a61bb]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul li .coin img[data-v-089a61bb]{width:25px;margin-right:5px}.table .theServer ul li .coin span[data-v-089a61bb]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul li .quota[data-v-089a61bb]{color:#ca094a;font-weight:600}.table .theServer ul li .difficulty[data-v-089a61bb]{width:10%}.table .theServer ul li .port[data-v-089a61bb]{width:35%}.table .theServer ul li .port i[data-v-089a61bb]{font-size:1em}.table .theServer ul li .port i[data-v-089a61bb]:hover{color:#6924ff}.table .theServer ul li i[data-v-089a61bb]{cursor:pointer}.table .theServer ul li[data-v-089a61bb]:nth-child(2n){background-color:#fff}.table .theServer ul .liTitle[data-v-089a61bb]{width:100%;height:50px;line-height:50px;background:#d2c3ea;color:#36246f;font-size:.95rem}.table .theServer ul .liTitle .coin[data-v-089a61bb]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul .liTitle .coin img[data-v-089a61bb]{width:25px}.table .theServer ul .liTitle .coin span[data-v-089a61bb]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul .liTitle .port[data-v-089a61bb]{width:35%}.table .careful[data-v-089a61bb]{margin-top:8px;font-size:.9rem;color:rgba(0,0,0,.7)}.table .careful a[data-v-089a61bb]{color:#6924ff}.step[data-v-089a61bb]{width:100%;margin:0 auto;margin-top:3%;border:1px solid rgba(0,0,0,.1);box-sizing:border-box;padding:20px}.step p[data-v-089a61bb]{line-height:30px}.step .stepTitle[data-v-089a61bb]{height:40px;width:100%;border-bottom:1px solid rgba(0,0,0,.1);line-height:40px;font-size:1rem;color:rgba(0,0,0,.6);font-weight:600}.step .textBox[data-v-089a61bb]{padding:20px;color:rgba(5,32,75,.6);font-weight:600;font-size:.95rem}@media screen and (min-width:220px)and (max-width:1279px){.AccessMiningPoolMain[data-v-91fdfe0e]{width:100%;background:transparent!important;padding:0;margin:0;padding-top:30px;display:flex;justify-content:center}.AccessMiningPoolMain .mail[data-v-91fdfe0e]{color:#5917c4}.notOpen[data-v-91fdfe0e]{width:100%;display:inline-block!important;margin:50px 0;justify-content:center;padding:0 30px}.notOpen p[data-v-91fdfe0e]{font-size:20px!important;width:100%!important;line-height:50px;color:#6a24ff;text-align:center}.notOpen .imgBox[data-v-91fdfe0e]{display:flex;justify-content:center;margin-top:30px}.notOpen img[data-v-91fdfe0e]{width:80%}.currencySelect[data-v-91fdfe0e]{display:flex;align-items:center;margin-bottom:10px;padding-left:8px;font-size:.85rem}.currencySelect .el-menu-demo[data-v-91fdfe0e]{width:100%}.currencySelect .el-menu[data-v-91fdfe0e]{background:transparent}.currencySelect .coinSelect img[data-v-91fdfe0e]{width:25px}.currencySelect .coinSelect span[data-v-91fdfe0e]{text-transform:capitalize;margin-left:5px}.moveCurrencyBox[data-v-91fdfe0e]{margin:0;padding:0;width:100%;display:flex;min-height:200px;flex-wrap:wrap;padding:10px 20px;margin:0 auto;background:#fff}.moveCurrencyBox li[data-v-91fdfe0e]{list-style:none;display:flex;flex-direction:column;align-items:center!important;margin-left:10px;padding:5px 5px;box-sizing:border-box}.moveCurrencyBox li img[data-v-91fdfe0e]{width:25px}.moveCurrencyBox li p[data-v-91fdfe0e]{min-width:50px;margin-top:8px;font-size:.85rem;word-wrap:break-word;word-break:break-all;text-align:center;text-transform:capitalize}.mainTitle[data-v-91fdfe0e]{padding:0 20px}.mainTitle span[data-v-91fdfe0e]{font-size:.95rem;color:rgba(0,0,0,.7);font-weight:600}.tableBox[data-v-91fdfe0e]{margin:0 auto;width:96%;min-height:300px;overflow:hidden;border-radius:8px;font-size:.9rem;margin-bottom:20px;box-shadow:0 0 5px 2px #ccc;margin-top:10px;background:#fff}.tableBox .table-title[data-v-91fdfe0e]{height:50px;background:#d2c4e8;display:flex;justify-content:space-around;align-items:center;font-weight:600;padding-left:0!important}.tableBox .table-title span[data-v-91fdfe0e]{text-align:center}.tableBox .table-title span[data-v-91fdfe0e]:first-of-type{width:50%!important}.tableBox .table-title span[data-v-91fdfe0e]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700;padding-right:5px}.tableBox .collapseTitle[data-v-91fdfe0e]{width:100%;display:flex;justify-content:space-around;align-items:center;padding-left:0!important;text-align:center}.tableBox .collapseTitle span[data-v-91fdfe0e]{text-align:center}.tableBox .collapseTitle span[data-v-91fdfe0e]:first-of-type{width:50%!important;display:flex;align-items:center;justify-content:center}.tableBox .collapseTitle span:first-of-type img[data-v-91fdfe0e]{margin-right:5px}.tableBox .collapseTitle span[data-v-91fdfe0e]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700}.tableBox .belowTable[data-v-91fdfe0e]{background:#f0e9f5;padding:10px 0}.tableBox .belowTable div[data-v-91fdfe0e]{width:100%;height:auto;text-align:left;padding-left:8%}.tableBox .belowTable div p[data-v-91fdfe0e]:first-of-type{font-weight:600}.tableBox .belowTable div p[data-v-91fdfe0e]{word-wrap:break-word}.tableBox .belowTable div p .copy[data-v-91fdfe0e]{padding:0 5px;display:inline-block;cursor:pointer;border:1px solid #d1c2e9;border-radius:5px;margin-left:10px;font-size:.8rem}.tableBox .paginationBox[data-v-91fdfe0e]{text-align:center}#careful[data-v-91fdfe0e]{padding:0 8px;font-size:.85rem;color:rgba(0,0,0,.7);line-height:25px}#careful .mail[data-v-91fdfe0e]{color:#5917c4}.step[data-v-91fdfe0e]{width:99%!important;margin:0 auto;margin-top:3%;border:1px solid rgba(0,0,0,.1);box-sizing:border-box;padding:15px!important}.step p[data-v-91fdfe0e]{line-height:25px!important}.step .stepTitle[data-v-91fdfe0e]{height:auto!important;width:100%;border-bottom:1px solid rgba(0,0,0,.1);line-height:30px!important;font-size:.95rem!important;color:rgba(0,0,0,.6);font-weight:600;word-wrap:break-word}.step .textBox[data-v-91fdfe0e]{padding:10px!important;color:rgba(5,32,75,.6);font-weight:400!important;font-size:.85rem!important}[data-v-91fdfe0e] .el-collapse-item__content{padding:0!important}}.nexaAccess[data-v-91fdfe0e]{width:100%;font-size:.9rem}.AccessMiningPool2[data-v-91fdfe0e]{width:100%;padding:0;margin:0;display:flex;justify-content:center}.AccessMiningPool2 a[data-v-91fdfe0e]{color:#8a2be2}.notOpen[data-v-91fdfe0e]{display:flex;margin-top:10%;justify-content:center}.notOpen p[data-v-91fdfe0e]{font-size:25px;width:25%;line-height:50px;color:#6a24ff}.menu[data-v-91fdfe0e]{width:15%;margin-right:30px;background:#fff;padding:20px!important;border-radius:8px;box-shadow:0 0 10px 3px rgba(0,0,0,.1)}.menu ul[data-v-91fdfe0e]{margin:0;padding:0}.menu ul li[data-v-91fdfe0e]{list-style:none;min-height:40px;line-height:40px;font-size:1.1rem;text-align:center;margin-top:8px;cursor:pointer}.menu ul li[data-v-91fdfe0e]:hover{text-decoration:underline}.active[data-v-91fdfe0e]{color:#6924ff;background:#d2c3ea;border-radius:5px}.table[data-v-91fdfe0e]{width:100%;background:#fff;border-radius:8px;padding:50px}.table .mainTitle[data-v-91fdfe0e]{font-size:1.5em;width:100%;margin:0 auto;font-weight:600;color:rgba(0,0,0,.6);display:flex;align-items:center;justify-content:left}.table .mainTitle img[data-v-91fdfe0e]{width:30px;margin-right:5px}.table .theServer[data-v-91fdfe0e]{width:100%;margin:0 auto;box-shadow:0 0 3px 1px rgba(0,0,0,.1);padding:10px 10px;margin-top:20px}.table .theServer .title[data-v-91fdfe0e]{width:100%;padding-left:3%;height:50px;line-height:50px;font-size:1.3em;color:rgba(0,0,0,.6);font-weight:600;border-bottom:1px solid rgba(0,0,0,.1)}.table .theServer ul[data-v-91fdfe0e]{width:100%;height:90%;padding:0;margin:0;margin-top:1%}.table .theServer ul li[data-v-91fdfe0e]{list-style:none;height:40px;line-height:40px;background:#efefef;display:flex;justify-content:space-between;font-size:.9rem}.table .theServer ul li span[data-v-91fdfe0e]{display:inline-block;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:rgba(0,0,0,.7)}.table .theServer ul li .coin[data-v-91fdfe0e]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul li .coin img[data-v-91fdfe0e]{width:25px;margin-right:5px}.table .theServer ul li .coin span[data-v-91fdfe0e]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul li .quota[data-v-91fdfe0e]{color:#ca094a;font-weight:600}.table .theServer ul li .difficulty[data-v-91fdfe0e]{width:10%}.table .theServer ul li .port[data-v-91fdfe0e]{width:35%}.table .theServer ul li .port i[data-v-91fdfe0e]{font-size:1em}.table .theServer ul li .port i[data-v-91fdfe0e]:hover{color:#6924ff}.table .theServer ul li i[data-v-91fdfe0e]{cursor:pointer}.table .theServer ul li[data-v-91fdfe0e]:nth-child(2n){background-color:#fff}.table .theServer ul .liTitle[data-v-91fdfe0e]{width:100%;height:50px;line-height:50px;background:#d2c3ea;color:#36246f;font-size:.95rem}.table .theServer ul .liTitle .coin[data-v-91fdfe0e]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul .liTitle .coin img[data-v-91fdfe0e]{width:25px}.table .theServer ul .liTitle .coin span[data-v-91fdfe0e]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul .liTitle .port[data-v-91fdfe0e]{width:35%}.table .careful[data-v-91fdfe0e]{margin-top:8px;font-size:.9rem;color:rgba(0,0,0,.7)}.table .careful a[data-v-91fdfe0e]{color:#6924ff}.step[data-v-91fdfe0e]{width:100%;margin:0 auto;margin-top:3%;border:1px solid rgba(0,0,0,.1);box-sizing:border-box;padding:20px}.step p[data-v-91fdfe0e]{line-height:30px}.step .stepTitle[data-v-91fdfe0e]{height:40px;width:100%;border-bottom:1px solid rgba(0,0,0,.1);line-height:40px;font-size:1rem;color:rgba(0,0,0,.6);font-weight:600}.step .textBox[data-v-91fdfe0e]{padding:20px;color:rgba(5,32,75,.6);font-weight:600;font-size:.95rem}@media screen and (min-width:220px)and (max-width:1279px){.AccessMiningPoolMain[data-v-ea469a34]{width:100%;background:transparent!important;padding:0;margin:0;padding-top:30PX;display:flex;justify-content:center}.AccessMiningPoolMain .mail[data-v-ea469a34]{color:#5917c4}.notOpen[data-v-ea469a34]{width:100%;display:inline-block!important;margin:50px 0;justify-content:center;padding:0 30px}.notOpen p[data-v-ea469a34]{font-size:20px!important;width:100%!important;line-height:50px;color:#6a24ff;text-align:center}.notOpen .imgBox[data-v-ea469a34]{display:flex;justify-content:center;margin-top:30px}.notOpen img[data-v-ea469a34]{width:80%}.currencySelect[data-v-ea469a34]{display:flex;align-items:center;margin-bottom:10px;padding-left:8px;font-size:.85rem}.currencySelect .el-menu-demo[data-v-ea469a34]{width:100%}.currencySelect .el-menu[data-v-ea469a34]{background:transparent}.currencySelect .coinSelect img[data-v-ea469a34]{width:25px}.currencySelect .coinSelect span[data-v-ea469a34]{text-transform:capitalize;margin-left:5px}.moveCurrencyBox[data-v-ea469a34]{margin:0;padding:0;width:100%;display:flex;min-height:200px;flex-wrap:wrap;padding:10px 20px;margin:0 auto;background:#fff}.moveCurrencyBox li[data-v-ea469a34]{list-style:none;display:flex;flex-direction:column;align-items:center!important;margin-left:10px;padding:5px 5px;box-sizing:border-box}.moveCurrencyBox li img[data-v-ea469a34]{width:25px}.moveCurrencyBox li p[data-v-ea469a34]{min-width:50px;margin-top:8px;font-size:.85rem;word-wrap:break-word;word-break:break-all;text-align:center;text-transform:capitalize}.mainTitle[data-v-ea469a34]{padding:0 20px}.mainTitle span[data-v-ea469a34]{font-size:.95rem;color:rgba(0,0,0,.7);font-weight:600}.tableBox[data-v-ea469a34]{margin:0 auto;width:96%;min-height:230px;overflow:hidden;border-radius:8px;font-size:.9rem;margin-bottom:20px;box-shadow:0 0 5px 2px #ccc;margin-top:10px;background:#fff}.tableBox .table-title[data-v-ea469a34]{height:50px;background:#d2c4e8;display:flex;justify-content:space-around;align-items:center;font-weight:600;padding-left:0!important}.tableBox .table-title span[data-v-ea469a34]{text-align:center}.tableBox .table-title span[data-v-ea469a34]:first-of-type{width:50%!important}.tableBox .table-title span[data-v-ea469a34]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700;padding-right:5px}.tableBox .collapseTitle[data-v-ea469a34]{width:100%;display:flex;justify-content:space-around;align-items:center;padding-left:0!important;text-align:center}.tableBox .collapseTitle span[data-v-ea469a34]{text-align:center}.tableBox .collapseTitle span[data-v-ea469a34]:first-of-type{width:50%!important;display:flex;align-items:center;justify-content:center}.tableBox .collapseTitle span:first-of-type img[data-v-ea469a34]{margin-right:5px}.tableBox .collapseTitle span[data-v-ea469a34]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700}.tableBox .belowTable[data-v-ea469a34]{background:#f0e9f5;padding:10px 0}.tableBox .belowTable div[data-v-ea469a34]{width:100%;height:auto;text-align:left;padding-left:8%}.tableBox .belowTable div p[data-v-ea469a34]:first-of-type{font-weight:600}.tableBox .belowTable div p[data-v-ea469a34]{word-wrap:break-word}.tableBox .belowTable div p .copy[data-v-ea469a34]{padding:0 5px;display:inline-block;cursor:pointer;border:1px solid #d1c2e9;border-radius:5px;margin-left:10px;font-size:.8rem}.tableBox .paginationBox[data-v-ea469a34]{text-align:center}#careful[data-v-ea469a34]{padding:0 8px;font-size:.85rem;color:rgba(0,0,0,.7);line-height:25px}#careful .mail[data-v-ea469a34]{color:#5917c4}.step[data-v-ea469a34]{width:99%!important;margin:0 auto;margin-top:3%;border:1PX solid rgba(0,0,0,.1);box-sizing:border-box;padding:15PX!important}.step p[data-v-ea469a34]{line-height:25PX!important}.step .stepTitle[data-v-ea469a34]{height:auto!important;width:100%;border-bottom:1PX solid rgba(0,0,0,.1);line-height:30PX!important;font-size:.95rem!important;color:rgba(0,0,0,.6);font-weight:600;word-wrap:break-word}.step .textBox[data-v-ea469a34]{padding:10px!important;color:rgba(5,32,75,.6);font-weight:400!important;font-size:.85rem!important}[data-v-ea469a34] .el-collapse-item__content{padding:0!important}}.nexaAccess[data-v-ea469a34]{width:100%;font-size:.9rem}.AccessMiningPool2[data-v-ea469a34]{width:100%;padding:0;margin:0;display:flex;justify-content:center}.AccessMiningPool2 a[data-v-ea469a34]{color:#8a2be2}.notOpen[data-v-ea469a34]{display:flex;margin-top:10%;justify-content:center}.notOpen p[data-v-ea469a34]{font-size:25px;width:25%;line-height:50px;color:#6a24ff}.menu[data-v-ea469a34]{width:15%;margin-right:30px;background:#fff;padding:20px!important;border-radius:8px;box-shadow:0 0 10px 3px rgba(0,0,0,.1)}.menu ul[data-v-ea469a34]{margin:0;padding:0}.menu ul li[data-v-ea469a34]{list-style:none;min-height:40px;line-height:40px;font-size:1.1rem;text-align:center;margin-top:8px;cursor:pointer}.menu ul li[data-v-ea469a34]:hover{text-decoration:underline}.active[data-v-ea469a34]{color:#6924ff;background:#d2c3ea;border-radius:5px}.table[data-v-ea469a34]{width:100%;background:#fff;border-radius:8px;padding:50px}.table .mainTitle[data-v-ea469a34]{font-size:1.5em;width:100%;margin:0 auto;font-weight:600;color:rgba(0,0,0,.6);display:flex;align-items:center;justify-content:left}.table .mainTitle img[data-v-ea469a34]{width:30px;margin-right:5px}.table .theServer[data-v-ea469a34]{width:100%;margin:0 auto;box-shadow:0 0 3px 1px rgba(0,0,0,.1);padding:10px 10px;margin-top:20px}.table .theServer .title[data-v-ea469a34]{width:100%;padding-left:3%;height:50px;line-height:50px;font-size:1.3em;color:rgba(0,0,0,.6);font-weight:600;border-bottom:1px solid rgba(0,0,0,.1)}.table .theServer ul[data-v-ea469a34]{width:100%;height:90%;padding:0;margin:0;margin-top:1%}.table .theServer ul li[data-v-ea469a34]{list-style:none;height:40px;line-height:40px;background:#efefef;display:flex;justify-content:space-between;font-size:.9rem}.table .theServer ul li span[data-v-ea469a34]{display:inline-block;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:rgba(0,0,0,.7)}.table .theServer ul li .coin[data-v-ea469a34]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul li .coin img[data-v-ea469a34]{width:25px;margin-right:5px}.table .theServer ul li .coin span[data-v-ea469a34]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul li .quota[data-v-ea469a34]{color:#ca094a;font-weight:600}.table .theServer ul li .difficulty[data-v-ea469a34]{width:10%}.table .theServer ul li .port[data-v-ea469a34]{width:35%}.table .theServer ul li .port i[data-v-ea469a34]{font-size:1em}.table .theServer ul li .port i[data-v-ea469a34]:hover{color:#6924ff}.table .theServer ul li i[data-v-ea469a34]{cursor:pointer}.table .theServer ul li[data-v-ea469a34]:nth-child(2n){background-color:#fff}.table .theServer ul .liTitle[data-v-ea469a34]{width:100%;height:50px;line-height:50px;background:#d2c3ea;color:#36246f;font-size:.95rem}.table .theServer ul .liTitle .coin[data-v-ea469a34]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul .liTitle .coin img[data-v-ea469a34]{width:25px}.table .theServer ul .liTitle .coin span[data-v-ea469a34]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul .liTitle .port[data-v-ea469a34]{width:35%}.table .careful[data-v-ea469a34]{margin-top:8px;font-size:.9rem;color:rgba(0,0,0,.7)}.table .careful a[data-v-ea469a34]{color:#6924ff}.step[data-v-ea469a34]{width:100%;margin:0 auto;margin-top:3%;border:1px solid rgba(0,0,0,.1);box-sizing:border-box;padding:20px}.step p[data-v-ea469a34]{line-height:30px;text-align:left}.step .stepTitle[data-v-ea469a34]{height:40px;width:100%;border-bottom:1px solid rgba(0,0,0,.1);line-height:40px;font-size:1rem;color:rgba(0,0,0,.6);font-weight:600}.step .textBox[data-v-ea469a34]{padding:20px;color:rgba(5,32,75,.6);font-weight:600;font-size:.95rem}.step .wallet-text[data-v-ea469a34]{text-align:left;padding-left:10px}@media screen and (min-width:220px)and (max-width:1279px){.AccessMiningPoolMain[data-v-708f8544]{width:100%;background:transparent!important;padding:0;margin:0;padding-top:30PX;display:flex;justify-content:center}.AccessMiningPoolMain .mail[data-v-708f8544]{color:#5917c4}.notOpen[data-v-708f8544]{width:100%;display:inline-block!important;margin:50px 0;justify-content:center;padding:0 30px}.notOpen p[data-v-708f8544]{font-size:20px!important;width:100%!important;line-height:50px;color:#6a24ff;text-align:center}.notOpen .imgBox[data-v-708f8544]{display:flex;justify-content:center;margin-top:30px}.notOpen img[data-v-708f8544]{width:80%}.currencySelect[data-v-708f8544]{display:flex;align-items:center;margin-bottom:10px;padding-left:8px;font-size:.85rem}.currencySelect .el-menu-demo[data-v-708f8544]{width:100%}.currencySelect .el-menu[data-v-708f8544]{background:transparent}.currencySelect .coinSelect img[data-v-708f8544]{width:25px}.currencySelect .coinSelect span[data-v-708f8544]{text-transform:capitalize;margin-left:5px}.moveCurrencyBox[data-v-708f8544]{margin:0;padding:0;width:100%;display:flex;min-height:200px;flex-wrap:wrap;padding:10px 20px;margin:0 auto;background:#fff}.moveCurrencyBox li[data-v-708f8544]{list-style:none;display:flex;flex-direction:column;align-items:center!important;margin-left:10px;padding:5px 5px;box-sizing:border-box}.moveCurrencyBox li img[data-v-708f8544]{width:25px}.moveCurrencyBox li p[data-v-708f8544]{min-width:50px;margin-top:8px;font-size:.85rem;word-wrap:break-word;word-break:break-all;text-align:center;text-transform:capitalize}.mainTitle[data-v-708f8544]{padding:0 20px}.mainTitle span[data-v-708f8544]{font-size:.95rem;color:rgba(0,0,0,.7);font-weight:600}.tableBox[data-v-708f8544]{margin:0 auto;width:96%;min-height:230px;overflow:hidden;border-radius:8px;font-size:.9rem;margin-bottom:20px;box-shadow:0 0 5px 2px #ccc;margin-top:10px;background:#fff}.tableBox .table-title[data-v-708f8544]{height:50px;background:#d2c4e8;display:flex;justify-content:space-around;align-items:center;font-weight:600;padding-left:0!important}.tableBox .table-title span[data-v-708f8544]{text-align:center}.tableBox .table-title span[data-v-708f8544]:first-of-type{width:50%!important}.tableBox .table-title span[data-v-708f8544]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700;padding-right:5px}.tableBox .collapseTitle[data-v-708f8544]{width:100%;display:flex;justify-content:space-around;align-items:center;padding-left:0!important;text-align:center}.tableBox .collapseTitle span[data-v-708f8544]{text-align:center}.tableBox .collapseTitle span[data-v-708f8544]:first-of-type{width:50%!important;display:flex;align-items:center;justify-content:center}.tableBox .collapseTitle span:first-of-type img[data-v-708f8544]{margin-right:5px}.tableBox .collapseTitle span[data-v-708f8544]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700}.tableBox .belowTable[data-v-708f8544]{background:#f0e9f5;padding:10px 0}.tableBox .belowTable div[data-v-708f8544]{width:100%;height:auto;text-align:left;padding-left:8%}.tableBox .belowTable div p[data-v-708f8544]:first-of-type{font-weight:600}.tableBox .belowTable div p[data-v-708f8544]{word-wrap:break-word}.tableBox .belowTable div p .copy[data-v-708f8544]{padding:0 5px;display:inline-block;cursor:pointer;border:1px solid #d1c2e9;border-radius:5px;margin-left:10px;font-size:.8rem}.tableBox .paginationBox[data-v-708f8544]{text-align:center}#careful[data-v-708f8544]{padding:0 8px;font-size:.85rem;color:rgba(0,0,0,.7);line-height:25px}#careful .mail[data-v-708f8544]{color:#5917c4}.step[data-v-708f8544]{width:99%!important;margin:0 auto;margin-top:3%;border:1PX solid rgba(0,0,0,.1);box-sizing:border-box;padding:15PX!important}.step p[data-v-708f8544]{line-height:25PX!important}.step .stepTitle[data-v-708f8544]{height:auto!important;width:100%;border-bottom:1PX solid rgba(0,0,0,.1);line-height:30PX!important;font-size:.95rem!important;color:rgba(0,0,0,.6);font-weight:600;word-wrap:break-word}.step .textBox[data-v-708f8544]{padding:10px!important;color:rgba(5,32,75,.6);font-weight:400!important;font-size:.85rem!important}[data-v-708f8544] .el-collapse-item__content{padding:0!important}}.nexaAccess[data-v-708f8544]{width:100%;font-size:.9rem}.AccessMiningPool2[data-v-708f8544]{width:100%;padding:0;margin:0;display:flex;justify-content:center}.AccessMiningPool2 a[data-v-708f8544]{color:#8a2be2}.notOpen[data-v-708f8544]{display:flex;margin-top:10%;justify-content:center}.notOpen p[data-v-708f8544]{font-size:25px;width:25%;line-height:50px;color:#6a24ff}.menu[data-v-708f8544]{width:15%;margin-right:30px;background:#fff;padding:20px!important;border-radius:8px;box-shadow:0 0 10px 3px rgba(0,0,0,.1)}.menu ul[data-v-708f8544]{margin:0;padding:0}.menu ul li[data-v-708f8544]{list-style:none;min-height:40px;line-height:40px;font-size:1.1rem;text-align:center;margin-top:8px;cursor:pointer}.menu ul li[data-v-708f8544]:hover{text-decoration:underline}.active[data-v-708f8544]{color:#6924ff;background:#d2c3ea;border-radius:5px}.table[data-v-708f8544]{width:100%;background:#fff;border-radius:8px;padding:50px}.table .mainTitle[data-v-708f8544]{font-size:1.5em;width:100%;margin:0 auto;font-weight:600;color:rgba(0,0,0,.6);display:flex;align-items:center;justify-content:left}.table .mainTitle img[data-v-708f8544]{width:30px;margin-right:5px}.table .theServer[data-v-708f8544]{width:100%;margin:0 auto;box-shadow:0 0 3px 1px rgba(0,0,0,.1);padding:10px 10px;margin-top:20px}.table .theServer .title[data-v-708f8544]{width:100%;padding-left:3%;height:50px;line-height:50px;font-size:1.3em;color:rgba(0,0,0,.6);font-weight:600;border-bottom:1px solid rgba(0,0,0,.1)}.table .theServer ul[data-v-708f8544]{width:100%;height:90%;padding:0;margin:0;margin-top:1%}.table .theServer ul li[data-v-708f8544]{list-style:none;height:40px;line-height:40px;background:#efefef;display:flex;justify-content:space-between;font-size:.9rem}.table .theServer ul li span[data-v-708f8544]{display:inline-block;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:rgba(0,0,0,.7)}.table .theServer ul li .coin[data-v-708f8544]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul li .coin img[data-v-708f8544]{width:25px;margin-right:5px}.table .theServer ul li .coin span[data-v-708f8544]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul li .quota[data-v-708f8544]{color:#ca094a;font-weight:600}.table .theServer ul li .difficulty[data-v-708f8544]{width:10%}.table .theServer ul li .port[data-v-708f8544]{width:35%}.table .theServer ul li .port i[data-v-708f8544]{font-size:1em}.table .theServer ul li .port i[data-v-708f8544]:hover{color:#6924ff}.table .theServer ul li i[data-v-708f8544]{cursor:pointer}.table .theServer ul li[data-v-708f8544]:nth-child(2n){background-color:#fff}.table .theServer ul .liTitle[data-v-708f8544]{width:100%;height:50px;line-height:50px;background:#d2c3ea;color:#36246f;font-size:.95rem}.table .theServer ul .liTitle .coin[data-v-708f8544]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul .liTitle .coin img[data-v-708f8544]{width:25px}.table .theServer ul .liTitle .coin span[data-v-708f8544]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul .liTitle .port[data-v-708f8544]{width:35%}.table .careful[data-v-708f8544]{margin-top:8px;font-size:.9rem;color:rgba(0,0,0,.7)}.table .careful a[data-v-708f8544]{color:#6924ff}.step[data-v-708f8544]{width:100%;margin:0 auto;margin-top:3%;border:1px solid rgba(0,0,0,.1);box-sizing:border-box;padding:20px}.step p[data-v-708f8544]{line-height:30px;text-align:left}.step .stepTitle[data-v-708f8544]{height:40px;width:100%;border-bottom:1px solid rgba(0,0,0,.1);line-height:40px;font-size:1rem;color:rgba(0,0,0,.6);font-weight:600}.step .textBox[data-v-708f8544]{padding:20px;color:rgba(5,32,75,.6);font-weight:600;font-size:.95rem}.step .wallet-text[data-v-708f8544]{text-align:left;padding-left:10px}@media screen and (min-width:220px)and (max-width:1279px){.AccessMiningPoolMain[data-v-76355f4e]{width:100%;background:transparent!important;padding:0;margin:0;padding-top:30PX;display:flex;justify-content:center}.AccessMiningPoolMain .mail[data-v-76355f4e]{color:#5917c4}.notOpen[data-v-76355f4e]{width:100%;display:inline-block!important;margin:50px 0;justify-content:center;padding:0 30px}.notOpen p[data-v-76355f4e]{font-size:20px!important;width:100%!important;line-height:50px;color:#6a24ff;text-align:center}.notOpen .imgBox[data-v-76355f4e]{display:flex;justify-content:center;margin-top:30px}.notOpen img[data-v-76355f4e]{width:80%}.currencySelect[data-v-76355f4e]{display:flex;align-items:center;margin-bottom:10px;padding-left:8px;font-size:.85rem}.currencySelect .el-menu-demo[data-v-76355f4e]{width:100%}.currencySelect .el-menu[data-v-76355f4e]{background:transparent}.currencySelect .coinSelect img[data-v-76355f4e]{width:25px}.currencySelect .coinSelect span[data-v-76355f4e]{text-transform:capitalize;margin-left:5px}.moveCurrencyBox[data-v-76355f4e]{margin:0;padding:0;width:100%;display:flex;min-height:200px;flex-wrap:wrap;padding:10px 20px;margin:0 auto;background:#fff}.moveCurrencyBox li[data-v-76355f4e]{list-style:none;display:flex;flex-direction:column;align-items:center!important;margin-left:10px;padding:5px 5px;box-sizing:border-box}.moveCurrencyBox li img[data-v-76355f4e]{width:25px}.moveCurrencyBox li p[data-v-76355f4e]{min-width:50px;margin-top:8px;font-size:.85rem;word-wrap:break-word;word-break:break-all;text-align:center;text-transform:capitalize}.mainTitle[data-v-76355f4e]{padding:0 20px}.mainTitle span[data-v-76355f4e]{font-size:.95rem;color:rgba(0,0,0,.7);font-weight:600}.tableBox[data-v-76355f4e]{margin:0 auto;width:96%;min-height:230px;overflow:hidden;border-radius:8px;font-size:.9rem;margin-bottom:20px;box-shadow:0 0 5px 2px #ccc;margin-top:10px;background:#fff}.tableBox .table-title[data-v-76355f4e]{height:50px;background:#d2c4e8;display:flex;justify-content:space-around;align-items:center;font-weight:600;padding-left:0!important}.tableBox .table-title span[data-v-76355f4e]{text-align:center}.tableBox .table-title span[data-v-76355f4e]:first-of-type{width:50%!important}.tableBox .table-title span[data-v-76355f4e]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700;padding-right:5px}.tableBox .collapseTitle[data-v-76355f4e]{width:100%;display:flex;justify-content:space-around;align-items:center;padding-left:0!important;text-align:center}.tableBox .collapseTitle span[data-v-76355f4e]{text-align:center}.tableBox .collapseTitle span[data-v-76355f4e]:first-of-type{width:50%!important;display:flex;align-items:center;justify-content:center}.tableBox .collapseTitle span:first-of-type img[data-v-76355f4e]{margin-right:5px}.tableBox .collapseTitle span[data-v-76355f4e]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700}.tableBox .belowTable[data-v-76355f4e]{background:#f0e9f5;padding:10px 0}.tableBox .belowTable div[data-v-76355f4e]{width:100%;height:auto;text-align:left;padding-left:8%}.tableBox .belowTable div p[data-v-76355f4e]:first-of-type{font-weight:600}.tableBox .belowTable div p[data-v-76355f4e]{word-wrap:break-word}.tableBox .belowTable div p .copy[data-v-76355f4e]{padding:0 5px;display:inline-block;cursor:pointer;border:1px solid #d1c2e9;border-radius:5px;margin-left:10px;font-size:.8rem}.tableBox .paginationBox[data-v-76355f4e]{text-align:center}#careful[data-v-76355f4e]{padding:0 8px;font-size:.85rem;color:rgba(0,0,0,.7);line-height:25px}#careful .mail[data-v-76355f4e]{color:#5917c4}.step[data-v-76355f4e]{width:99%!important;margin:0 auto;margin-top:3%;border:1PX solid rgba(0,0,0,.1);box-sizing:border-box;padding:15PX!important}.step p[data-v-76355f4e]{line-height:25PX!important}.step .stepTitle[data-v-76355f4e]{height:auto!important;width:100%;border-bottom:1PX solid rgba(0,0,0,.1);line-height:30PX!important;font-size:.95rem!important;color:rgba(0,0,0,.6);font-weight:600;word-wrap:break-word}.step .textBox[data-v-76355f4e]{padding:10px!important;color:rgba(5,32,75,.6);font-weight:400!important;font-size:.85rem!important}[data-v-76355f4e] .el-collapse-item__content{padding:0!important}}.nexaAccess[data-v-76355f4e]{width:100%;font-size:.9rem}.AccessMiningPool2[data-v-76355f4e]{width:100%;padding:0;margin:0;display:flex;justify-content:center}.AccessMiningPool2 a[data-v-76355f4e]{color:#8a2be2}.notOpen[data-v-76355f4e]{display:flex;margin-top:10%;justify-content:center}.notOpen p[data-v-76355f4e]{font-size:25px;width:25%;line-height:50px;color:#6a24ff}.menu[data-v-76355f4e]{width:15%;margin-right:30px;background:#fff;padding:20px!important;border-radius:8px;box-shadow:0 0 10px 3px rgba(0,0,0,.1)}.menu ul[data-v-76355f4e]{margin:0;padding:0}.menu ul li[data-v-76355f4e]{list-style:none;min-height:40px;line-height:40px;font-size:1.1rem;text-align:center;margin-top:8px;cursor:pointer}.menu ul li[data-v-76355f4e]:hover{text-decoration:underline}.active[data-v-76355f4e]{color:#6924ff;background:#d2c3ea;border-radius:5px}.table[data-v-76355f4e]{width:100%;background:#fff;border-radius:8px;padding:50px}.table .mainTitle[data-v-76355f4e]{font-size:1.5em;width:100%;margin:0 auto;font-weight:600;color:rgba(0,0,0,.6);display:flex;align-items:center;justify-content:left}.table .mainTitle img[data-v-76355f4e]{width:30px;margin-right:5px}.table .theServer[data-v-76355f4e]{width:100%;margin:0 auto;box-shadow:0 0 3px 1px rgba(0,0,0,.1);padding:10px 10px;margin-top:20px}.table .theServer .title[data-v-76355f4e]{width:100%;padding-left:3%;height:50px;line-height:50px;font-size:1.3em;color:rgba(0,0,0,.6);font-weight:600;border-bottom:1px solid rgba(0,0,0,.1)}.table .theServer ul[data-v-76355f4e]{width:100%;height:90%;padding:0;margin:0;margin-top:1%}.table .theServer ul li[data-v-76355f4e]{list-style:none;height:40px;line-height:40px;background:#efefef;display:flex;justify-content:space-between;font-size:.9rem}.table .theServer ul li span[data-v-76355f4e]{display:inline-block;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:rgba(0,0,0,.7)}.table .theServer ul li .coin[data-v-76355f4e]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul li .coin img[data-v-76355f4e]{width:25px;margin-right:5px}.table .theServer ul li .coin span[data-v-76355f4e]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul li .quota[data-v-76355f4e]{color:#ca094a;font-weight:600}.table .theServer ul li .difficulty[data-v-76355f4e]{width:10%}.table .theServer ul li .port[data-v-76355f4e]{width:35%}.table .theServer ul li .port i[data-v-76355f4e]{font-size:1em}.table .theServer ul li .port i[data-v-76355f4e]:hover{color:#6924ff}.table .theServer ul li i[data-v-76355f4e]{cursor:pointer}.table .theServer ul li[data-v-76355f4e]:nth-child(2n){background-color:#fff}.table .theServer ul .liTitle[data-v-76355f4e]{width:100%;height:50px;line-height:50px;background:#d2c3ea;color:#36246f;font-size:.95rem}.table .theServer ul .liTitle .coin[data-v-76355f4e]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul .liTitle .coin img[data-v-76355f4e]{width:25px}.table .theServer ul .liTitle .coin span[data-v-76355f4e]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul .liTitle .port[data-v-76355f4e]{width:35%}.table .careful[data-v-76355f4e]{margin-top:8px;font-size:.9rem;color:rgba(0,0,0,.7)}.table .careful a[data-v-76355f4e]{color:#6924ff}.step[data-v-76355f4e]{width:100%;margin:0 auto;margin-top:3%;border:1px solid rgba(0,0,0,.1);box-sizing:border-box;padding:20px}.step p[data-v-76355f4e]{line-height:30px;text-align:left}.step .stepTitle[data-v-76355f4e]{height:40px;width:100%;border-bottom:1px solid rgba(0,0,0,.1);line-height:40px;font-size:1rem;color:rgba(0,0,0,.6);font-weight:600}.step .textBox[data-v-76355f4e]{padding:20px;color:rgba(5,32,75,.6);font-weight:600;font-size:.95rem}.step .wallet-text[data-v-76355f4e]{text-align:left;padding-left:10px}@media screen and (min-width:220px)and (max-width:1279px){.AccessMiningPoolMain[data-v-340a7930]{width:100%;background:transparent!important;padding:0;margin:0;padding-top:30PX;display:flex;justify-content:center}.AccessMiningPoolMain .mail[data-v-340a7930]{color:#5917c4}.notOpen[data-v-340a7930]{width:100%;display:inline-block!important;margin:50px 0;justify-content:center;padding:0 30px}.notOpen p[data-v-340a7930]{font-size:20px!important;width:100%!important;line-height:50px;color:#6a24ff;text-align:center}.notOpen .imgBox[data-v-340a7930]{display:flex;justify-content:center;margin-top:30px}.notOpen img[data-v-340a7930]{width:80%}.currencySelect[data-v-340a7930]{display:flex;align-items:center;margin-bottom:10px;padding-left:8px;font-size:.85rem}.currencySelect .el-menu-demo[data-v-340a7930]{width:100%}.currencySelect .el-menu[data-v-340a7930]{background:transparent}.currencySelect .coinSelect img[data-v-340a7930]{width:25px}.currencySelect .coinSelect span[data-v-340a7930]{text-transform:capitalize;margin-left:5px}.moveCurrencyBox[data-v-340a7930]{margin:0;padding:0;width:100%;display:flex;min-height:200px;flex-wrap:wrap;padding:10px 20px;margin:0 auto;background:#fff}.moveCurrencyBox li[data-v-340a7930]{list-style:none;display:flex;flex-direction:column;align-items:center!important;margin-left:10px;padding:5px 5px;box-sizing:border-box}.moveCurrencyBox li img[data-v-340a7930]{width:25px}.moveCurrencyBox li p[data-v-340a7930]{min-width:50px;margin-top:8px;font-size:.85rem;word-wrap:break-word;word-break:break-all;text-align:center;text-transform:capitalize}.mainTitle[data-v-340a7930]{padding:0 20px}.mainTitle span[data-v-340a7930]{font-size:.95rem;color:rgba(0,0,0,.7);font-weight:600}.tableBox[data-v-340a7930]{margin:0 auto;width:96%;min-height:230px;overflow:hidden;border-radius:8px;font-size:.9rem;margin-bottom:20px;box-shadow:0 0 5px 2px #ccc;margin-top:10px;background:#fff}.tableBox .table-title[data-v-340a7930]{height:50px;background:#d2c4e8;display:flex;justify-content:space-around;align-items:center;font-weight:600;padding-left:0!important}.tableBox .table-title span[data-v-340a7930]{text-align:center}.tableBox .table-title span[data-v-340a7930]:first-of-type{width:50%!important}.tableBox .table-title span[data-v-340a7930]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700;padding-right:5px}.tableBox .collapseTitle[data-v-340a7930]{width:100%;display:flex;justify-content:space-around;align-items:center;padding-left:0!important;text-align:center}.tableBox .collapseTitle span[data-v-340a7930]{text-align:center}.tableBox .collapseTitle span[data-v-340a7930]:first-of-type{width:50%!important;display:flex;align-items:center;justify-content:center}.tableBox .collapseTitle span:first-of-type img[data-v-340a7930]{margin-right:5px}.tableBox .collapseTitle span[data-v-340a7930]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700}.tableBox .belowTable[data-v-340a7930]{background:#f0e9f5;padding:10px 0}.tableBox .belowTable div[data-v-340a7930]{width:100%;height:auto;text-align:left;padding-left:8%}.tableBox .belowTable div p[data-v-340a7930]:first-of-type{font-weight:600}.tableBox .belowTable div p[data-v-340a7930]{word-wrap:break-word}.tableBox .belowTable div p .copy[data-v-340a7930]{padding:0 5px;display:inline-block;cursor:pointer;border:1px solid #d1c2e9;border-radius:5px;margin-left:10px;font-size:.8rem}.tableBox .paginationBox[data-v-340a7930]{text-align:center}#careful[data-v-340a7930]{padding:0 8px;font-size:.85rem;color:rgba(0,0,0,.7);line-height:25px}#careful .mail[data-v-340a7930]{color:#5917c4}.step[data-v-340a7930]{width:99%!important;margin:0 auto;margin-top:3%;border:1PX solid rgba(0,0,0,.1);box-sizing:border-box;padding:15PX!important}.step p[data-v-340a7930]{line-height:25PX!important}.step .stepTitle[data-v-340a7930]{height:auto!important;width:100%;border-bottom:1PX solid rgba(0,0,0,.1);line-height:30PX!important;font-size:.95rem!important;color:rgba(0,0,0,.6);font-weight:600;word-wrap:break-word}.step .textBox[data-v-340a7930]{padding:10px!important;color:rgba(5,32,75,.6);font-weight:400!important;font-size:.85rem!important}[data-v-340a7930] .el-collapse-item__content{padding:0!important}}.nexaAccess[data-v-340a7930]{width:100%;font-size:.9rem}.AccessMiningPool2[data-v-340a7930]{width:100%;padding:0;margin:0;display:flex;justify-content:center}.AccessMiningPool2 a[data-v-340a7930]{color:#8a2be2}.notOpen[data-v-340a7930]{display:flex;margin-top:10%;justify-content:center}.notOpen p[data-v-340a7930]{font-size:25px;width:25%;line-height:50px;color:#6a24ff}.menu[data-v-340a7930]{width:15%;margin-right:30px;background:#fff;padding:20px!important;border-radius:8px;box-shadow:0 0 10px 3px rgba(0,0,0,.1)}.menu ul[data-v-340a7930]{margin:0;padding:0}.menu ul li[data-v-340a7930]{list-style:none;min-height:40px;line-height:40px;font-size:1.1rem;text-align:center;margin-top:8px;cursor:pointer}.menu ul li[data-v-340a7930]:hover{text-decoration:underline}.active[data-v-340a7930]{color:#6924ff;background:#d2c3ea;border-radius:5px}.table[data-v-340a7930]{width:100%;background:#fff;border-radius:8px;padding:50px}.table .mainTitle[data-v-340a7930]{font-size:1.5em;width:100%;margin:0 auto;font-weight:600;color:rgba(0,0,0,.6);display:flex;align-items:center;justify-content:left}.table .mainTitle img[data-v-340a7930]{width:30px;margin-right:5px}.table .theServer[data-v-340a7930]{width:100%;margin:0 auto;box-shadow:0 0 3px 1px rgba(0,0,0,.1);padding:10px 10px;margin-top:20px}.table .theServer .title[data-v-340a7930]{width:100%;padding-left:3%;height:50px;line-height:50px;font-size:1.3em;color:rgba(0,0,0,.6);font-weight:600;border-bottom:1px solid rgba(0,0,0,.1)}.table .theServer ul[data-v-340a7930]{width:100%;height:90%;padding:0;margin:0;margin-top:1%}.table .theServer ul li[data-v-340a7930]{list-style:none;height:40px;line-height:40px;background:#efefef;display:flex;justify-content:space-between;font-size:.9rem}.table .theServer ul li span[data-v-340a7930]{display:inline-block;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:rgba(0,0,0,.7)}.table .theServer ul li .coin[data-v-340a7930]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul li .coin img[data-v-340a7930]{width:25px;margin-right:5px}.table .theServer ul li .coin span[data-v-340a7930]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul li .quota[data-v-340a7930]{color:#ca094a;font-weight:600}.table .theServer ul li .difficulty[data-v-340a7930]{width:10%}.table .theServer ul li .port[data-v-340a7930]{width:35%}.table .theServer ul li .port i[data-v-340a7930]{font-size:1em}.table .theServer ul li .port i[data-v-340a7930]:hover{color:#6924ff}.table .theServer ul li i[data-v-340a7930]{cursor:pointer}.table .theServer ul li[data-v-340a7930]:nth-child(2n){background-color:#fff}.table .theServer ul .liTitle[data-v-340a7930]{width:100%;height:50px;line-height:50px;background:#d2c3ea;color:#36246f;font-size:.95rem}.table .theServer ul .liTitle .coin[data-v-340a7930]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul .liTitle .coin img[data-v-340a7930]{width:25px}.table .theServer ul .liTitle .coin span[data-v-340a7930]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul .liTitle .port[data-v-340a7930]{width:35%}.table .careful[data-v-340a7930]{margin-top:8px;font-size:.9rem;color:rgba(0,0,0,.7)}.table .careful a[data-v-340a7930]{color:#6924ff}.step[data-v-340a7930]{width:100%;margin:0 auto;margin-top:3%;border:1px solid rgba(0,0,0,.1);box-sizing:border-box;padding:20px}.step p[data-v-340a7930]{line-height:30px;text-align:left}.step .stepTitle[data-v-340a7930]{height:40px;width:100%;border-bottom:1px solid rgba(0,0,0,.1);line-height:40px;font-size:1rem;color:rgba(0,0,0,.6);font-weight:600}.step .textBox[data-v-340a7930]{padding:20px;color:rgba(5,32,75,.6);font-weight:600;font-size:.95rem}.step .wallet-text[data-v-340a7930]{text-align:left;padding-left:10px}@media screen and (min-width:220px)and (max-width:1279px){.AccessMiningPoolMain[data-v-5b6cc974]{width:100%;background:transparent!important;padding:0;margin:0;padding-top:30PX;display:flex;justify-content:center}.AccessMiningPoolMain .mail[data-v-5b6cc974]{color:#5917c4}.notOpen[data-v-5b6cc974]{width:100%;display:inline-block!important;margin:50px 0;justify-content:center;padding:0 30px}.notOpen p[data-v-5b6cc974]{font-size:20px!important;width:100%!important;line-height:50px;color:#6a24ff;text-align:center}.notOpen .imgBox[data-v-5b6cc974]{display:flex;justify-content:center;margin-top:30px}.notOpen img[data-v-5b6cc974]{width:80%}.currencySelect[data-v-5b6cc974]{display:flex;align-items:center;margin-bottom:10px;padding-left:8px;font-size:.85rem}.currencySelect .el-menu-demo[data-v-5b6cc974]{width:100%}.currencySelect .el-menu[data-v-5b6cc974]{background:transparent}.currencySelect .coinSelect img[data-v-5b6cc974]{width:25px}.currencySelect .coinSelect span[data-v-5b6cc974]{text-transform:capitalize;margin-left:5px}.moveCurrencyBox[data-v-5b6cc974]{margin:0;padding:0;width:100%;display:flex;min-height:200px;flex-wrap:wrap;padding:10px 20px;margin:0 auto;background:#fff}.moveCurrencyBox li[data-v-5b6cc974]{list-style:none;display:flex;flex-direction:column;align-items:center!important;margin-left:10px;padding:5px 5px;box-sizing:border-box}.moveCurrencyBox li img[data-v-5b6cc974]{width:25px}.moveCurrencyBox li p[data-v-5b6cc974]{min-width:50px;margin-top:8px;font-size:.85rem;word-wrap:break-word;word-break:break-all;text-align:center;text-transform:capitalize}.mainTitle[data-v-5b6cc974]{padding:0 20px}.mainTitle span[data-v-5b6cc974]{font-size:.95rem;color:rgba(0,0,0,.7);font-weight:600}.tableBox[data-v-5b6cc974]{margin:0 auto;width:96%;min-height:230px;overflow:hidden;border-radius:8px;font-size:.9rem;margin-bottom:20px;box-shadow:0 0 5px 2px #ccc;margin-top:10px;background:#fff}.tableBox .table-title[data-v-5b6cc974]{height:50px;background:#d2c4e8;display:flex;justify-content:space-around;align-items:center;font-weight:600;padding-left:0!important}.tableBox .table-title span[data-v-5b6cc974]{text-align:center}.tableBox .table-title span[data-v-5b6cc974]:first-of-type{width:50%!important}.tableBox .table-title span[data-v-5b6cc974]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700;padding-right:5px}.tableBox .collapseTitle[data-v-5b6cc974]{width:100%;display:flex;justify-content:space-around;align-items:center;padding-left:0!important;text-align:center}.tableBox .collapseTitle span[data-v-5b6cc974]{text-align:center}.tableBox .collapseTitle span[data-v-5b6cc974]:first-of-type{width:50%!important;display:flex;align-items:center;justify-content:center}.tableBox .collapseTitle span:first-of-type img[data-v-5b6cc974]{margin-right:5px}.tableBox .collapseTitle span[data-v-5b6cc974]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700}.tableBox .belowTable[data-v-5b6cc974]{background:#f0e9f5;padding:10px 0}.tableBox .belowTable div[data-v-5b6cc974]{width:100%;height:auto;text-align:left;padding-left:8%}.tableBox .belowTable div p[data-v-5b6cc974]:first-of-type{font-weight:600}.tableBox .belowTable div p[data-v-5b6cc974]{word-wrap:break-word}.tableBox .belowTable div p .copy[data-v-5b6cc974]{padding:0 5px;display:inline-block;cursor:pointer;border:1px solid #d1c2e9;border-radius:5px;margin-left:10px;font-size:.8rem}.tableBox .paginationBox[data-v-5b6cc974]{text-align:center}#careful[data-v-5b6cc974]{padding:0 8px;font-size:.85rem;color:rgba(0,0,0,.7);line-height:25px}#careful .mail[data-v-5b6cc974]{color:#5917c4}.step[data-v-5b6cc974]{width:99%!important;margin:0 auto;margin-top:3%;border:1PX solid rgba(0,0,0,.1);box-sizing:border-box;padding:15PX!important}.step p[data-v-5b6cc974]{line-height:25PX!important}.step .stepTitle[data-v-5b6cc974]{height:auto!important;width:100%;border-bottom:1PX solid rgba(0,0,0,.1);line-height:30PX!important;font-size:.95rem!important;color:rgba(0,0,0,.6);font-weight:600;word-wrap:break-word}.step .textBox[data-v-5b6cc974]{padding:10px!important;color:rgba(5,32,75,.6);font-weight:400!important;font-size:.85rem!important}[data-v-5b6cc974] .el-collapse-item__content{padding:0!important}}.nexaAccess[data-v-5b6cc974]{width:100%;font-size:.9rem}.AccessMiningPool2[data-v-5b6cc974]{width:100%;padding:0;margin:0;display:flex;justify-content:center}.AccessMiningPool2 a[data-v-5b6cc974]{color:#8a2be2}.notOpen[data-v-5b6cc974]{display:flex;margin-top:10%;justify-content:center}.notOpen p[data-v-5b6cc974]{font-size:25px;width:25%;line-height:50px;color:#6a24ff}.menu[data-v-5b6cc974]{width:15%;margin-right:30px;background:#fff;padding:20px!important;border-radius:8px;box-shadow:0 0 10px 3px rgba(0,0,0,.1)}.menu ul[data-v-5b6cc974]{margin:0;padding:0}.menu ul li[data-v-5b6cc974]{list-style:none;min-height:40px;line-height:40px;font-size:1.1rem;text-align:center;margin-top:8px;cursor:pointer}.menu ul li[data-v-5b6cc974]:hover{text-decoration:underline}.active[data-v-5b6cc974]{color:#6924ff;background:#d2c3ea;border-radius:5px}.table[data-v-5b6cc974]{width:100%;background:#fff;border-radius:8px;padding:50px}.table .mainTitle[data-v-5b6cc974]{font-size:1.5em;width:100%;margin:0 auto;font-weight:600;color:rgba(0,0,0,.6);display:flex;align-items:center;justify-content:left}.table .mainTitle img[data-v-5b6cc974]{width:30px;margin-right:5px}.table .theServer[data-v-5b6cc974]{width:100%;margin:0 auto;box-shadow:0 0 3px 1px rgba(0,0,0,.1);padding:10px 10px;margin-top:20px}.table .theServer .title[data-v-5b6cc974]{width:100%;padding-left:3%;height:50px;line-height:50px;font-size:1.3em;color:rgba(0,0,0,.6);font-weight:600;border-bottom:1px solid rgba(0,0,0,.1)}.table .theServer ul[data-v-5b6cc974]{width:100%;height:90%;padding:0;margin:0;margin-top:1%}.table .theServer ul li[data-v-5b6cc974]{list-style:none;height:40px;line-height:40px;background:#efefef;display:flex;justify-content:space-between;font-size:.9rem}.table .theServer ul li span[data-v-5b6cc974]{display:inline-block;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:rgba(0,0,0,.7)}.table .theServer ul li .coin[data-v-5b6cc974]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul li .coin img[data-v-5b6cc974]{width:25px;margin-right:5px}.table .theServer ul li .coin span[data-v-5b6cc974]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul li .quota[data-v-5b6cc974]{color:#ca094a;font-weight:600}.table .theServer ul li .difficulty[data-v-5b6cc974]{width:10%}.table .theServer ul li .port[data-v-5b6cc974]{width:35%}.table .theServer ul li .port i[data-v-5b6cc974]{font-size:1em}.table .theServer ul li .port i[data-v-5b6cc974]:hover{color:#6924ff}.table .theServer ul li i[data-v-5b6cc974]{cursor:pointer}.table .theServer ul li[data-v-5b6cc974]:nth-child(2n){background-color:#fff}.table .theServer ul .liTitle[data-v-5b6cc974]{width:100%;height:50px;line-height:50px;background:#d2c3ea;color:#36246f;font-size:.95rem}.table .theServer ul .liTitle .coin[data-v-5b6cc974]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul .liTitle .coin img[data-v-5b6cc974]{width:25px}.table .theServer ul .liTitle .coin span[data-v-5b6cc974]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul .liTitle .port[data-v-5b6cc974]{width:35%}.table .careful[data-v-5b6cc974]{margin-top:8px;font-size:.9rem;color:rgba(0,0,0,.7)}.table .careful a[data-v-5b6cc974]{color:#6924ff}.step[data-v-5b6cc974]{width:100%;margin:0 auto;margin-top:3%;border:1px solid rgba(0,0,0,.1);box-sizing:border-box;padding:20px}.step p[data-v-5b6cc974]{line-height:30px;text-align:left}.step .stepTitle[data-v-5b6cc974]{height:40px;width:100%;border-bottom:1px solid rgba(0,0,0,.1);line-height:40px;font-size:1rem;color:rgba(0,0,0,.6);font-weight:600}.step .textBox[data-v-5b6cc974]{padding:20px;color:rgba(5,32,75,.6);font-weight:600;font-size:.95rem}.step .wallet-text[data-v-5b6cc974]{text-align:left;padding-left:10px}@media screen and (min-width:220px)and (max-width:1279px){.AccessMiningPoolMain[data-v-415158a6]{width:100%;background:transparent!important;padding:0;margin:0;padding-top:30PX;display:flex;justify-content:center}.AccessMiningPoolMain .mail[data-v-415158a6]{color:#5917c4}.notOpen[data-v-415158a6]{width:100%;display:inline-block!important;margin:50px 0;justify-content:center;padding:0 30px}.notOpen p[data-v-415158a6]{font-size:20px!important;width:100%!important;line-height:50px;color:#6a24ff;text-align:center}.notOpen .imgBox[data-v-415158a6]{display:flex;justify-content:center;margin-top:30px}.notOpen img[data-v-415158a6]{width:80%}.currencySelect[data-v-415158a6]{display:flex;align-items:center;margin-bottom:10px;padding-left:8px;font-size:.85rem}.currencySelect .el-menu-demo[data-v-415158a6]{width:100%}.currencySelect .el-menu[data-v-415158a6]{background:transparent}.currencySelect .coinSelect img[data-v-415158a6]{width:25px}.currencySelect .coinSelect span[data-v-415158a6]{text-transform:capitalize;margin-left:5px}.moveCurrencyBox[data-v-415158a6]{margin:0;padding:0;width:100%;display:flex;min-height:200px;flex-wrap:wrap;padding:10px 20px;margin:0 auto;background:#fff}.moveCurrencyBox li[data-v-415158a6]{list-style:none;display:flex;flex-direction:column;align-items:center!important;margin-left:10px;padding:5px 5px;box-sizing:border-box}.moveCurrencyBox li img[data-v-415158a6]{width:25px}.moveCurrencyBox li p[data-v-415158a6]{min-width:50px;margin-top:8px;font-size:.85rem;word-wrap:break-word;word-break:break-all;text-align:center;text-transform:capitalize}.mainTitle[data-v-415158a6]{padding:0 20px}.mainTitle span[data-v-415158a6]{font-size:.95rem;color:rgba(0,0,0,.7);font-weight:600}.tableBox[data-v-415158a6]{margin:0 auto;width:96%;min-height:230px;overflow:hidden;border-radius:8px;font-size:.9rem;margin-bottom:20px;box-shadow:0 0 5px 2px #ccc;margin-top:10px;background:#fff}.tableBox .table-title[data-v-415158a6]{height:50px;background:#d2c4e8;display:flex;justify-content:space-around;align-items:center;font-weight:600;padding-left:0!important}.tableBox .table-title span[data-v-415158a6]{text-align:center}.tableBox .table-title span[data-v-415158a6]:first-of-type{width:50%!important}.tableBox .table-title span[data-v-415158a6]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700;padding-right:5px}.tableBox .collapseTitle[data-v-415158a6]{width:100%;display:flex;justify-content:space-around;align-items:center;padding-left:0!important;text-align:center}.tableBox .collapseTitle span[data-v-415158a6]{text-align:center}.tableBox .collapseTitle span[data-v-415158a6]:first-of-type{width:50%!important;display:flex;align-items:center;justify-content:center}.tableBox .collapseTitle span:first-of-type img[data-v-415158a6]{margin-right:5px}.tableBox .collapseTitle span[data-v-415158a6]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700}.tableBox .belowTable[data-v-415158a6]{background:#f0e9f5;padding:10px 0}.tableBox .belowTable div[data-v-415158a6]{width:100%;height:auto;text-align:left;padding-left:8%}.tableBox .belowTable div p[data-v-415158a6]:first-of-type{font-weight:600}.tableBox .belowTable div p[data-v-415158a6]{word-wrap:break-word}.tableBox .belowTable div p .copy[data-v-415158a6]{padding:0 5px;display:inline-block;cursor:pointer;border:1px solid #d1c2e9;border-radius:5px;margin-left:10px;font-size:.8rem}.tableBox .paginationBox[data-v-415158a6]{text-align:center}#careful[data-v-415158a6]{padding:0 8px;font-size:.85rem;color:rgba(0,0,0,.7);line-height:25px}#careful .mail[data-v-415158a6]{color:#5917c4}.step[data-v-415158a6]{width:99%!important;margin:0 auto;margin-top:3%;border:1PX solid rgba(0,0,0,.1);box-sizing:border-box;padding:15PX!important}.step p[data-v-415158a6]{line-height:25PX!important}.step .stepTitle[data-v-415158a6]{height:auto!important;width:100%;border-bottom:1PX solid rgba(0,0,0,.1);line-height:30PX!important;font-size:.95rem!important;color:rgba(0,0,0,.6);font-weight:600;word-wrap:break-word}.step .textBox[data-v-415158a6]{padding:10px!important;color:rgba(5,32,75,.6);font-weight:400!important;font-size:.85rem!important}[data-v-415158a6] .el-collapse-item__content{padding:0!important}}.nexaAccess[data-v-415158a6]{width:100%;font-size:.9rem}.AccessMiningPool2[data-v-415158a6]{width:100%;padding:0;margin:0;display:flex;justify-content:center}.AccessMiningPool2 a[data-v-415158a6]{color:#8a2be2}.notOpen[data-v-415158a6]{display:flex;margin-top:10%;justify-content:center}.notOpen p[data-v-415158a6]{font-size:25px;width:25%;line-height:50px;color:#6a24ff}.menu[data-v-415158a6]{width:15%;margin-right:30px;background:#fff;padding:20px!important;border-radius:8px;box-shadow:0 0 10px 3px rgba(0,0,0,.1)}.menu ul[data-v-415158a6]{margin:0;padding:0}.menu ul li[data-v-415158a6]{list-style:none;min-height:40px;line-height:40px;font-size:1.1rem;text-align:center;margin-top:8px;cursor:pointer}.menu ul li[data-v-415158a6]:hover{text-decoration:underline}.active[data-v-415158a6]{color:#6924ff;background:#d2c3ea;border-radius:5px}.table[data-v-415158a6]{width:100%;background:#fff;border-radius:8px;padding:50px}.table .mainTitle[data-v-415158a6]{font-size:1.5em;width:100%;margin:0 auto;font-weight:600;color:rgba(0,0,0,.6);display:flex;align-items:center;justify-content:left}.table .mainTitle img[data-v-415158a6]{width:30px;margin-right:5px}.table .theServer[data-v-415158a6]{width:100%;margin:0 auto;box-shadow:0 0 3px 1px rgba(0,0,0,.1);padding:10px 10px;margin-top:20px}.table .theServer .title[data-v-415158a6]{width:100%;padding-left:3%;height:50px;line-height:50px;font-size:1.3em;color:rgba(0,0,0,.6);font-weight:600;border-bottom:1px solid rgba(0,0,0,.1)}.table .theServer ul[data-v-415158a6]{width:100%;height:90%;padding:0;margin:0;margin-top:1%}.table .theServer ul li[data-v-415158a6]{list-style:none;height:40px;line-height:40px;background:#efefef;display:flex;justify-content:space-between;font-size:.9rem}.table .theServer ul li span[data-v-415158a6]{display:inline-block;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:rgba(0,0,0,.7)}.table .theServer ul li .coin[data-v-415158a6]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul li .coin img[data-v-415158a6]{width:25px;margin-right:5px}.table .theServer ul li .coin span[data-v-415158a6]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul li .quota[data-v-415158a6]{color:#ca094a;font-weight:600}.table .theServer ul li .difficulty[data-v-415158a6]{width:10%}.table .theServer ul li .port[data-v-415158a6]{width:35%}.table .theServer ul li .port i[data-v-415158a6]{font-size:1em}.table .theServer ul li .port i[data-v-415158a6]:hover{color:#6924ff}.table .theServer ul li i[data-v-415158a6]{cursor:pointer}.table .theServer ul li[data-v-415158a6]:nth-child(2n){background-color:#fff}.table .theServer ul .liTitle[data-v-415158a6]{width:100%;height:50px;line-height:50px;background:#d2c3ea;color:#36246f;font-size:.95rem}.table .theServer ul .liTitle .coin[data-v-415158a6]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul .liTitle .coin img[data-v-415158a6]{width:25px}.table .theServer ul .liTitle .coin span[data-v-415158a6]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul .liTitle .port[data-v-415158a6]{width:35%}.table .careful[data-v-415158a6]{margin-top:8px;font-size:.9rem;color:rgba(0,0,0,.7)}.table .careful a[data-v-415158a6]{color:#6924ff}.step[data-v-415158a6]{width:100%;margin:0 auto;margin-top:3%;border:1px solid rgba(0,0,0,.1);box-sizing:border-box;padding:20px}.step p[data-v-415158a6]{line-height:30px;text-align:left}.step .stepTitle[data-v-415158a6]{height:40px;width:100%;border-bottom:1px solid rgba(0,0,0,.1);line-height:40px;font-size:1rem;color:rgba(0,0,0,.6);font-weight:600}.step .textBox[data-v-415158a6]{padding:20px;color:rgba(5,32,75,.6);font-weight:600;font-size:.95rem}.step .wallet-text[data-v-415158a6]{text-align:left;padding-left:10px}@media screen and (min-width:220px)and (max-width:1279px){.AccessMiningPoolMain[data-v-0779e610]{width:100%;background:transparent!important;padding:0;margin:0;padding-top:30PX;display:flex;justify-content:center}.AccessMiningPoolMain .mail[data-v-0779e610]{color:#5917c4}.notOpen[data-v-0779e610]{width:100%;display:inline-block!important;margin:50px 0;justify-content:center;padding:0 30px}.notOpen p[data-v-0779e610]{font-size:20px!important;width:100%!important;line-height:50px;color:#6a24ff;text-align:center}.notOpen .imgBox[data-v-0779e610]{display:flex;justify-content:center;margin-top:30px}.notOpen img[data-v-0779e610]{width:80%}.currencySelect[data-v-0779e610]{display:flex;align-items:center;margin-bottom:10px;padding-left:8px;font-size:.85rem}.currencySelect .el-menu-demo[data-v-0779e610]{width:100%}.currencySelect .el-menu[data-v-0779e610]{background:transparent}.currencySelect .coinSelect img[data-v-0779e610]{width:25px}.currencySelect .coinSelect span[data-v-0779e610]{text-transform:capitalize;margin-left:5px}.moveCurrencyBox[data-v-0779e610]{margin:0;padding:0;width:100%;display:flex;min-height:200px;flex-wrap:wrap;padding:10px 20px;margin:0 auto;background:#fff}.moveCurrencyBox li[data-v-0779e610]{list-style:none;display:flex;flex-direction:column;align-items:center!important;margin-left:10px;padding:5px 5px;box-sizing:border-box}.moveCurrencyBox li img[data-v-0779e610]{width:25px}.moveCurrencyBox li p[data-v-0779e610]{min-width:50px;margin-top:8px;font-size:.85rem;word-wrap:break-word;word-break:break-all;text-align:center;text-transform:capitalize}.mainTitle[data-v-0779e610]{padding:0 20px}.mainTitle span[data-v-0779e610]{font-size:.95rem;color:rgba(0,0,0,.7);font-weight:600}.tableBox[data-v-0779e610]{margin:0 auto;width:96%;min-height:230px;overflow:hidden;border-radius:8px;font-size:.9rem;margin-bottom:20px;box-shadow:0 0 5px 2px #ccc;margin-top:10px;background:#fff}.tableBox .table-title[data-v-0779e610]{height:50px;background:#d2c4e8;display:flex;justify-content:space-around;align-items:center;font-weight:600;padding-left:0!important}.tableBox .table-title span[data-v-0779e610]{text-align:center}.tableBox .table-title span[data-v-0779e610]:first-of-type{width:50%!important}.tableBox .table-title span[data-v-0779e610]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700;padding-right:5px}.tableBox .collapseTitle[data-v-0779e610]{width:100%;display:flex;justify-content:space-around;align-items:center;padding-left:0!important;text-align:center}.tableBox .collapseTitle span[data-v-0779e610]{text-align:center}.tableBox .collapseTitle span[data-v-0779e610]:first-of-type{width:50%!important;display:flex;align-items:center;justify-content:center}.tableBox .collapseTitle span:first-of-type img[data-v-0779e610]{margin-right:5px}.tableBox .collapseTitle span[data-v-0779e610]:nth-of-type(2){width:50%!important;color:#ca094a;font-weight:700}.tableBox .belowTable[data-v-0779e610]{background:#f0e9f5;padding:10px 0}.tableBox .belowTable div[data-v-0779e610]{width:100%;height:auto;text-align:left;padding-left:8%}.tableBox .belowTable div p[data-v-0779e610]:first-of-type{font-weight:600}.tableBox .belowTable div p[data-v-0779e610]{word-wrap:break-word}.tableBox .belowTable div p .copy[data-v-0779e610]{padding:0 5px;display:inline-block;cursor:pointer;border:1px solid #d1c2e9;border-radius:5px;margin-left:10px;font-size:.8rem}.tableBox .paginationBox[data-v-0779e610]{text-align:center}#careful[data-v-0779e610]{padding:0 8px;font-size:.85rem;color:rgba(0,0,0,.7);line-height:25px}#careful .mail[data-v-0779e610]{color:#5917c4}.step[data-v-0779e610]{width:99%!important;margin:0 auto;margin-top:3%;border:1PX solid rgba(0,0,0,.1);box-sizing:border-box;padding:15PX!important}.step p[data-v-0779e610]{line-height:25PX!important}.step .stepTitle[data-v-0779e610]{height:auto!important;width:100%;border-bottom:1PX solid rgba(0,0,0,.1);line-height:30PX!important;font-size:.95rem!important;color:rgba(0,0,0,.6);font-weight:600;word-wrap:break-word}.step .textBox[data-v-0779e610]{padding:10px!important;color:rgba(5,32,75,.6);font-weight:400!important;font-size:.85rem!important}[data-v-0779e610] .el-collapse-item__content{padding:0!important}}.nexaAccess[data-v-0779e610]{width:100%;font-size:.9rem}.AccessMiningPool2[data-v-0779e610]{width:100%;padding:0;margin:0;display:flex;justify-content:center}.AccessMiningPool2 a[data-v-0779e610]{color:#8a2be2}.notOpen[data-v-0779e610]{display:flex;margin-top:10%;justify-content:center}.notOpen p[data-v-0779e610]{font-size:25px;width:25%;line-height:50px;color:#6a24ff}.menu[data-v-0779e610]{width:15%;margin-right:30px;background:#fff;padding:20px!important;border-radius:8px;box-shadow:0 0 10px 3px rgba(0,0,0,.1)}.menu ul[data-v-0779e610]{margin:0;padding:0}.menu ul li[data-v-0779e610]{list-style:none;min-height:40px;line-height:40px;font-size:1.1rem;text-align:center;margin-top:8px;cursor:pointer}.menu ul li[data-v-0779e610]:hover{text-decoration:underline}.active[data-v-0779e610]{color:#6924ff;background:#d2c3ea;border-radius:5px}.table[data-v-0779e610]{width:100%;background:#fff;border-radius:8px;padding:50px}.table .mainTitle[data-v-0779e610]{font-size:1.5em;width:100%;margin:0 auto;font-weight:600;color:rgba(0,0,0,.6);display:flex;align-items:center;justify-content:left}.table .mainTitle img[data-v-0779e610]{width:30px;margin-right:5px}.table .theServer[data-v-0779e610]{width:100%;margin:0 auto;box-shadow:0 0 3px 1px rgba(0,0,0,.1);padding:10px 10px;margin-top:20px}.table .theServer .title[data-v-0779e610]{width:100%;padding-left:3%;height:50px;line-height:50px;font-size:1.3em;color:rgba(0,0,0,.6);font-weight:600;border-bottom:1px solid rgba(0,0,0,.1)}.table .theServer ul[data-v-0779e610]{width:100%;height:90%;padding:0;margin:0;margin-top:1%}.table .theServer ul li[data-v-0779e610]{list-style:none;height:40px;line-height:40px;background:#efefef;display:flex;justify-content:space-between;font-size:.9rem}.table .theServer ul li span[data-v-0779e610]{display:inline-block;text-align:center;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:rgba(0,0,0,.7)}.table .theServer ul li .coin[data-v-0779e610]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul li .coin img[data-v-0779e610]{width:25px;margin-right:5px}.table .theServer ul li .coin span[data-v-0779e610]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul li .quota[data-v-0779e610]{color:#ca094a;font-weight:600}.table .theServer ul li .difficulty[data-v-0779e610]{width:10%}.table .theServer ul li .port[data-v-0779e610]{width:35%}.table .theServer ul li .port i[data-v-0779e610]{font-size:1em}.table .theServer ul li .port i[data-v-0779e610]:hover{color:#6924ff}.table .theServer ul li i[data-v-0779e610]{cursor:pointer}.table .theServer ul li[data-v-0779e610]:nth-child(2n){background-color:#fff}.table .theServer ul .liTitle[data-v-0779e610]{width:100%;height:50px;line-height:50px;background:#d2c3ea;color:#36246f;font-size:.95rem}.table .theServer ul .liTitle .coin[data-v-0779e610]{width:18%;display:flex;align-items:center;justify-content:center}.table .theServer ul .liTitle .coin img[data-v-0779e610]{width:25px}.table .theServer ul .liTitle .coin span[data-v-0779e610]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.table .theServer ul .liTitle .port[data-v-0779e610]{width:35%}.table .careful[data-v-0779e610]{margin-top:8px;font-size:.9rem;color:rgba(0,0,0,.7)}.table .careful a[data-v-0779e610]{color:#6924ff}.step[data-v-0779e610]{width:100%;margin:0 auto;margin-top:3%;border:1px solid rgba(0,0,0,.1);box-sizing:border-box;padding:20px}.step p[data-v-0779e610]{line-height:30px;text-align:left}.step .stepTitle[data-v-0779e610]{height:40px;width:100%;border-bottom:1px solid rgba(0,0,0,.1);line-height:40px;font-size:1rem;color:rgba(0,0,0,.6);font-weight:600}.step .textBox[data-v-0779e610]{padding:20px;color:rgba(5,32,75,.6);font-weight:600;font-size:.95rem}.step .wallet-text[data-v-0779e610]{text-align:left;padding-left:10px}@media screen and (min-width:220px)and (max-width:1279px){.main[data-v-10e0c45a]{width:100%;padding:15px 18px!important;margin:0;padding-top:30PX!important;background:transparent!important;min-height:300px!important}.MobileMain[data-v-10e0c45a]{width:100%}.contentMobile p[data-v-10e0c45a]{height:40px;line-height:40px;padding:0 8px;margin-top:8px;border-radius:5px;border:1px solid rgba(0,0,0,.1);font-size:.9rem;margin-left:18px}.el-row[data-v-10e0c45a]{margin:0!important}.submitTitle[data-v-10e0c45a]{font-size:14px;width:600px}.submitTitle .userName[data-v-10e0c45a]{color:#661ffb}.submitTitle .time[data-v-10e0c45a]{margin-left:8px}#contentBox[data-v-10e0c45a]{border:1px solid rgba(0,0,0,.1);margin-top:5px;padding:8px;border-radius:5px;font-size:.9rem;word-wrap:break-word}[data-v-10e0c45a] .el-upload-dragger{width:332px!important}}.main[data-v-10e0c45a]{width:100%;background:#fff;padding:0;margin:0;display:flex;justify-content:center;height:100%;overflow-y:auto}.content[data-v-10e0c45a]{width:100%;margin:0 auto;padding:20px;box-sizing:border-box}.elBtn[data-v-10e0c45a]{background:#661ffb;color:#fff;border-radius:20px}.orderDetails p[data-v-10e0c45a]{width:80%;outline:1px solid rgba(0,0,0,.1);border-radius:4px;display:flex;font-weight:600;padding:10px 10px;font-size:14px}.orderDetails .orderTitle[data-v-10e0c45a]{display:inline-block;text-align:center}.orderDetails .orderContent[data-v-10e0c45a]{flex:1;display:inline-block;color:#661ffb;font-weight:400;border-radius:4px;text-align:left;padding-left:5px}.submitContent[data-v-10e0c45a]{max-height:300px;overflow:hidden;overflow-y:auto;margin-top:18px;display:flex;flex-direction:column;padding:20px;border:1px solid #ccc;background:rgba(255,0,0,.01);border-radius:5px}.submitContent .submitTitle[data-v-10e0c45a]{font-size:14px;width:600px;display:flex;justify-content:left}.submitContent .submitTitle span[data-v-10e0c45a]:nth-of-type(2){margin-left:50px}.submitContent .contentBox[data-v-10e0c45a]{width:50vw;padding:10px 10px;padding-left:5px;font-size:15px;max-height:80px;display:inline-block;overflow:scroll;overflow-x:auto;overflow-y:auto}.submitContent .downloadBox[data-v-10e0c45a]{font-size:15px;color:#661ffb;display:inline-block;cursor:pointer}.submitContent .replyBox[data-v-10e0c45a]{margin-top:20px}.download[data-v-10e0c45a]{display:inline-block;margin-top:10px;margin-left:20px;padding:8px 15px;border-radius:4px;font-size:14px;background:#f0f9eb;color:#67c23a;cursor:pointer}.download[data-v-10e0c45a]:hover{color:#000;outline:1px solid rgba(0,0,0,.1)}.reply[data-v-10e0c45a]{font-size:15px;margin-top:10px;padding:5px 0}.reply .replyTitle[data-v-10e0c45a]{font-weight:600}.reply .replyContent[data-v-10e0c45a]{color:#661ffb}[data-v-10e0c45a].replyInput .el-input.is-disabled .el-input__inner{color:#000}.edit[data-v-10e0c45a]{font-size:15px;color:#661ffb;cursor:pointer;margin-left:10px}.auditBox .submitTitle[data-v-10e0c45a]{font-size:14px;width:600px;display:flex;justify-content:left}.auditBox .submitTitle span[data-v-10e0c45a]:nth-of-type(2){margin-left:50px}.auditBox .contentBox[data-v-10e0c45a]{width:54vw;border:1px solid rgba(0,0,0,.1);padding:5px 5px;padding-left:5px;font-size:15px;max-height:80px;display:inline-block;overflow:scroll;overflow-x:auto;overflow-y:auto}.auditBox .downloadBox[data-v-10e0c45a]{font-size:15px;color:#661ffb;cursor:pointer;display:inline-block}.registeredForm .mandatory[data-v-10e0c45a]{color:red;margin-right:5px}.logistics[data-v-10e0c45a]{display:flex;margin-bottom:30px;width:26%;justify-content:space-between}.closingOrder[data-v-10e0c45a]{font-size:14px;margin:0}.closingOrder span[data-v-10e0c45a]{cursor:pointer;color:#661ffb}.closingOrder span[data-v-10e0c45a]:hover{color:#67c23a}.machineCoding[data-v-10e0c45a]{outline:1px solid rgba(0,0,0,.1);display:flex;max-height:300px;padding:10px!important;margin-top:8px;overflow-y:auto}.orderNum[data-v-10e0c45a]{width:800px!important;padding:0!important;outline:none!important;border:none!important}.el-row[data-v-10e0c45a]{margin:18px 0} \ No newline at end of file diff --git a/mining-pool/test/css/app-b4c4f6ec.d99a94fb.css.gz b/mining-pool/test/css/app-b4c4f6ec.d99a94fb.css.gz new file mode 100644 index 0000000..b0b32b8 Binary files /dev/null and b/mining-pool/test/css/app-b4c4f6ec.d99a94fb.css.gz differ diff --git a/mining-pool/test/css/app-ca0caf25.a1364666.css b/mining-pool/test/css/app-ca0caf25.a1364666.css new file mode 100644 index 0000000..cb617c3 --- /dev/null +++ b/mining-pool/test/css/app-ca0caf25.a1364666.css @@ -0,0 +1 @@ +@media screen and (min-width:220px)and (max-width:800px){.imgTop[data-v-0ee3c548]{width:100%;text-align:center}.imgTop img[data-v-0ee3c548]{width:100%}#chart[data-v-0ee3c548]{height:400px!important}.moveCurrencyBox[data-v-0ee3c548]{margin:0;padding:0;width:100%;display:flex;min-height:200px;flex-wrap:wrap;padding:10px 18px;margin:0 auto;background:#fff}.moveCurrencyBox li[data-v-0ee3c548]{list-style:none;display:flex;flex-direction:column;align-items:center!important;margin-left:10px;padding:5px 5px;box-sizing:border-box;cursor:pointer}.moveCurrencyBox li img[data-v-0ee3c548]{width:25px}.moveCurrencyBox li p[data-v-0ee3c548]{min-width:50px;margin-top:8px;font-size:.85rem;word-wrap:break-word;word-break:break-all;text-align:center;text-transform:capitalize}.moveCurrencyBox li[data-v-0ee3c548]:hover{transform:scale(1.05)}.currencySelect[data-v-0ee3c548]{display:flex;align-items:center;margin-bottom:10px;padding-left:8px;font-size:.85rem}.currencySelect .el-menu-demo[data-v-0ee3c548]{flex:1}.currencySelect .el-menu[data-v-0ee3c548]{background:transparent}.currencySelect .coinSelect img[data-v-0ee3c548]{width:25px}.currencySelect .coinSelect span[data-v-0ee3c548]{text-transform:capitalize;margin-left:5px}.miningPoolLeft[data-v-0ee3c548]{margin:0 auto;width:95%;min-height:300px;box-shadow:0 0 1px 1px #ccc;padding-top:18px;border-radius:10px;overflow:hidden;background:#fff}.miningPoolLeft .interval[data-v-0ee3c548]{padding:0 8px;font-size:.7rem;width:100%;display:block}.miningPoolLeft .interval .timeBox[data-v-0ee3c548]{padding:0 10px}.miningPoolLeft .interval .times[data-v-0ee3c548]{width:15%;text-align:center;border-radius:10px;line-height:30px}.miningPoolLeft .interval .timeActive[data-v-0ee3c548],.miningPoolLeft .interval .times[data-v-0ee3c548]:hover{color:#5721e4}.miningPoolLeft .interval .chartBth .slideBox[data-v-0ee3c548]{background-image:linear-gradient(90deg,#b6e6f1 0,#f8bbd0);padding:0 2px;border-radius:20px;display:flex;align-items:center;justify-content:left;height:30px;width:auto}.miningPoolLeft .interval .chartBth .slideBox span[data-v-0ee3c548]{text-align:center;border-radius:20px;height:80%;line-height:25px;margin:0;transition:all .3s linear;padding:0 5px}.miningPoolLeft .interval .chartBth .slideActive[data-v-0ee3c548]{background:#5721e4;color:#fff}.miningPoolLeft .timeBox[data-v-0ee3c548]{width:100%;text-align:right}.miningPoolRight[data-v-0ee3c548]{display:flex;justify-content:center;margin-top:10px;min-width:300px}.miningPoolRight ul[data-v-0ee3c548]{padding:0;padding:0 2%;margin:0;height:100%;display:flex;align-items:center;flex-wrap:wrap;justify-content:space-between}.miningPoolRight ul li[data-v-0ee3c548]{list-style:none;width:160px;height:80px;background:#fff;border-radius:5%;display:flex;align-items:center;justify-content:space-between;box-shadow:3px 3px 5px 2px #ccc;margin-top:18px;transition:all .2s linear}.miningPoolRight ul li .text[data-v-0ee3c548]{height:90%;width:70%;padding-left:5%;overflow:hidden}.miningPoolRight ul li .text p[data-v-0ee3c548]{overflow:hidden;text-overflow:ellipsis;font-size:.9rem}.miningPoolRight ul li .text .content[data-v-0ee3c548]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.8rem;margin-top:23%}.miningPoolRight ul li .imgIcon[data-v-0ee3c548]{height:90%;width:30%;padding-top:5%}.miningPoolRight ul li .imgIcon img[data-v-0ee3c548]{width:80%}.miningPoolRight ul li[data-v-0ee3c548]:hover{box-shadow:0 0 5px 2px #d2c3ea}.miningPoolRight ul .ConnectMiningPool[data-v-0ee3c548],.miningPoolRight ul .profitCalculation[data-v-0ee3c548]{cursor:pointer}.reportBlock[data-v-0ee3c548]{width:100%;display:flex;justify-content:center;max-height:700px;margin-top:3%;padding-bottom:2%;background:transparent!important}.reportBlock .reportBlockBox[data-v-0ee3c548]{width:96%!important;display:flex;justify-content:space-between;flex-direction:column;align-items:center;border-radius:10px;overflow:hidden;transition:all .2s linear;padding:0!important;height:auto!important;margin-top:20px}.reportBlock .reportBlockBox .belowTable[data-v-0ee3c548]{width:100%;display:flex;justify-content:center;flex-direction:column;align-items:center;margin-bottom:100px}.reportBlock .reportBlockBox .belowTable ul[data-v-0ee3c548]{width:100%;max-height:650px;min-height:200px;padding:0;margin:0;overflow:hidden;border-radius:10px!important;border:1px solid #ccc!important}.reportBlock .reportBlockBox .belowTable ul li[data-v-0ee3c548]{margin:0!important;border:none!important}.reportBlock .reportBlockBox .belowTable ul .table-title2[data-v-0ee3c548]{position:sticky;top:0;background:#d2c3ea!important;color:#433278;font-weight:600;height:40px;display:flex;justify-content:space-around;padding-right:10px!important}.reportBlock .reportBlockBox .belowTable ul .table-title2 span[data-v-0ee3c548]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.9rem;line-height:40px;text-align:center}.reportBlock .reportBlockBox .belowTable ul .table-title2 .block-Height[data-v-0ee3c548],.reportBlock .reportBlockBox .belowTable ul .table-title2 .block-Time[data-v-0ee3c548]{width:50%}.reportBlock .reportBlockBox .belowTable ul li[data-v-0ee3c548]:nth-child(2n){background-color:#fff;background:#f8f8fa!important}.reportBlock .reportBlockBox .belowTable ul .currency-list2[data-v-0ee3c548]{width:100%;list-style:none;display:flex;cursor:pointer;justify-content:space-around;align-items:center;height:40px;padding-right:20px!important}.reportBlock .reportBlockBox .belowTable ul .currency-list2 span[data-v-0ee3c548]{height:100%;width:50%;font-weight:600;text-align:center;font-size:.85rem;line-height:40px}.reportBlock .reportBlockBox .belowTable ul .currency-list2[data-v-0ee3c548]{background:#efefef;box-shadow:0 0 2px 1px rgba(0,0,0,.02);padding:0 10px;margin-top:10px;background:#f8f8fa;border:1px solid #efefef}.reportBlock .reportBlockBox .belowTable ul .currency-list2 span[data-v-0ee3c548]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.reportBlock .reportBlockBox[data-v-0ee3c548]:hover{box-shadow:3px 3px 10px 4px #d2c3e9}.Calculator[data-v-0ee3c548]{width:100%;min-height:400px;background:rgba(0,0,0,.5);position:fixed;padding:20px;top:10%;left:0;z-index:2001;display:flex;align-items:center;justify-content:center}.Calculator .prop[data-v-0ee3c548]{width:98%;height:98%;background:#fafbff;border-radius:10px;display:flex;flex-direction:column;padding:20px;padding-bottom:50px}.Calculator .prop .titleBox[data-v-0ee3c548]{display:flex;justify-content:space-between;align-items:center;width:100%;height:35px;position:relative}.Calculator .prop .titleBox span[data-v-0ee3c548]{width:100%;text-align:left;font-size:.95rem;color:rgba(0,0,0,.7);padding-left:3%}.Calculator .prop .titleBox .close[data-v-0ee3c548]{font-size:1.5rem;cursor:pointer;position:absolute;top:1px;right:10px}.Calculator .prop .titleBox .close[data-v-0ee3c548]:hover{color:#6e3edb}.Calculator .prop .selectCurrency[data-v-0ee3c548]{width:100%;display:flex;justify-content:center}.Calculator .prop .selectCurrency .Currency2[data-v-0ee3c548]{display:flex;justify-content:space-between;align-items:center;justify-content:center;padding:5px;margin-top:3%}.Calculator .prop .selectCurrency .Currency2 img[data-v-0ee3c548]{width:28px}.Calculator .prop .cautionBox[data-v-0ee3c548]{padding:10px 10px;margin-left:3%;font-size:.85rem;color:rgba(0,0,0,.7)}.Calculator .prop .cautionBox span[data-v-0ee3c548]{color:#8d72db;font-weight:600}.Calculator .prop .content2[data-v-0ee3c548]{display:flex;justify-content:space-around;align-items:center;flex-direction:column;width:100%}.Calculator .prop .content2 .item[data-v-0ee3c548]{width:100%;margin-top:10px}.Calculator .prop .content2 .item p[data-v-0ee3c548]{margin-bottom:8px;font-size:.9rem}.describeBox[data-v-0ee3c548]{width:100%;text-align:center;margin:0!important;font-size:.85rem;overflow:hidden;max-height:100px}.describeBox p[data-v-0ee3c548]{margin:0 auto;width:100%!important;text-align:left;padding:2px 5px!important;border-radius:0!important;display:flex;align-items:center!important}.describeBox p .describeTitle[data-v-0ee3c548]{font-weight:700;margin-right:8px;color:#5721e4;max-width:63px;min-width:41px!important}.describeBox p i[data-v-0ee3c548]{color:#6e3edb;margin-right:5px;line-height:18px}.describeBox p .view[data-v-0ee3c548]{cursor:pointer;margin-left:8px;color:#6e3edb}.describeBox p .view[data-v-0ee3c548]:hover{color:#000}.describe-row[data-v-0ee3c548]{width:100%!important;margin:0 auto;border-radius:0!important;display:flex;justify-content:left;padding:5px 0}.broadcast-scroll-item[data-v-0ee3c548]{width:100%;display:flex;align-items:center;height:30px;line-height:30px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.describeContent[data-v-0ee3c548]{display:inline-block;max-width:70%;min-width:100px!important;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:top}.broadcast-scroll-list[data-v-0ee3c548]{padding-left:5px!important}.view[data-v-0ee3c548]{color:#5721e4;cursor:pointer;padding:2px 2px;transition:all .3s ease;border:1px solid transparent;max-width:8vw!important;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.view[data-v-0ee3c548]:hover{background-color:#5721e4;color:#fff;transform:translateY(-1px);border-radius:8px}}@media screen and (min-width:800px)and (max-width:1279px){.imgTop[data-v-0ee3c548]{width:100%;padding-left:20%;text-align:left}.imgTop img[data-v-0ee3c548]{width:auto;height:300px}#chart[data-v-0ee3c548]{height:400px!important}.moveCurrencyBox[data-v-0ee3c548]{margin:0;padding:0;width:100%;display:flex;min-height:200px;flex-wrap:wrap;padding:10px 18px;margin:0 auto;background:#fff}.moveCurrencyBox li[data-v-0ee3c548]{list-style:none;display:flex;flex-direction:column;align-items:center!important;margin-left:10px;padding:5px 5px;box-sizing:border-box;cursor:pointer}.moveCurrencyBox li img[data-v-0ee3c548]{width:25px}.moveCurrencyBox li p[data-v-0ee3c548]{min-width:50px;margin-top:8px;font-size:.85rem;word-wrap:break-word;word-break:break-all;text-align:center;text-transform:capitalize}.moveCurrencyBox li[data-v-0ee3c548]:hover{transform:scale(1.05)}.currencySelect[data-v-0ee3c548]{display:flex;align-items:center;margin-bottom:10px;padding-left:8px;font-size:.85rem}.currencySelect .el-menu-demo[data-v-0ee3c548]{flex:1}.currencySelect .el-menu[data-v-0ee3c548]{background:transparent}.currencySelect .coinSelect img[data-v-0ee3c548]{width:25px}.currencySelect .coinSelect span[data-v-0ee3c548]{text-transform:capitalize;margin-left:5px}.miningPoolLeft[data-v-0ee3c548]{margin:0 auto;width:95%;min-height:300px;box-shadow:0 0 1px 1px #ccc;padding-top:18px;border-radius:10px;overflow:hidden;background:#fff}.miningPoolLeft .interval[data-v-0ee3c548]{padding:0 8px;font-size:.7rem;width:100%;display:block}.miningPoolLeft .interval .timeBox[data-v-0ee3c548]{padding:0 10px}.miningPoolLeft .interval .times[data-v-0ee3c548]{width:15%;text-align:center;border-radius:10px;line-height:30px}.miningPoolLeft .interval .timeActive[data-v-0ee3c548],.miningPoolLeft .interval .times[data-v-0ee3c548]:hover{color:#5721e4}.miningPoolLeft .interval .chartBth .slideBox[data-v-0ee3c548]{background-image:linear-gradient(90deg,#b6e6f1 0,#f8bbd0);padding:0 2px;border-radius:20px;display:flex;align-items:center;justify-content:left;height:30px;width:auto}.miningPoolLeft .interval .chartBth .slideBox span[data-v-0ee3c548]{text-align:center;border-radius:20px;height:80%;line-height:25px;margin:0;transition:all .3s linear;padding:0 5px}.miningPoolLeft .interval .chartBth .slideActive[data-v-0ee3c548]{background:#5721e4;color:#fff}.miningPoolLeft .timeBox[data-v-0ee3c548]{width:100%;text-align:right}.miningPoolRight[data-v-0ee3c548]{display:flex;justify-content:center;margin-top:10px;min-width:300px}.miningPoolRight ul[data-v-0ee3c548]{padding:0;padding:0 2%;margin:0;height:100%;display:flex;align-items:center;flex-wrap:wrap;justify-content:left}.miningPoolRight ul li[data-v-0ee3c548]{list-style:none;width:160px;height:80px;background:#fff;border-radius:5%;display:flex;align-items:center;justify-content:space-between;box-shadow:3px 3px 5px 2px #ccc;margin-top:18px;transition:all .2s linear;margin-left:2%}.miningPoolRight ul li .text[data-v-0ee3c548]{height:90%;width:70%;padding-left:5%;overflow:hidden}.miningPoolRight ul li .text p[data-v-0ee3c548]{overflow:hidden;text-overflow:ellipsis;font-size:.9rem}.miningPoolRight ul li .text .content[data-v-0ee3c548]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.8rem;margin-top:23%}.miningPoolRight ul li .imgIcon[data-v-0ee3c548]{height:90%;width:30%;padding-top:5%}.miningPoolRight ul li .imgIcon img[data-v-0ee3c548]{width:80%}.miningPoolRight ul li[data-v-0ee3c548]:hover{box-shadow:0 0 5px 2px #d2c3ea}.miningPoolRight ul .ConnectMiningPool[data-v-0ee3c548],.miningPoolRight ul .profitCalculation[data-v-0ee3c548]{cursor:pointer}.reportBlock[data-v-0ee3c548]{width:100%;display:flex;justify-content:center;max-height:700px;margin-top:3%;padding-bottom:2%;background:transparent!important}.reportBlock .reportBlockBox[data-v-0ee3c548]{width:96%!important;display:flex;justify-content:space-between;flex-direction:column;align-items:center;border-radius:10px;overflow:hidden;transition:all .2s linear;padding:0!important;height:auto!important;margin-top:20px}.reportBlock .reportBlockBox .belowTable[data-v-0ee3c548]{width:100%;display:flex;justify-content:center;flex-direction:column;align-items:center;margin-bottom:100px}.reportBlock .reportBlockBox .belowTable ul[data-v-0ee3c548]{width:100%;max-height:650px;min-height:200px;padding:0;margin:0;overflow:hidden;border-radius:10px!important;border:1px solid #ccc!important}.reportBlock .reportBlockBox .belowTable ul li[data-v-0ee3c548]{margin:0!important;border:none!important}.reportBlock .reportBlockBox .belowTable ul .table-title2[data-v-0ee3c548]{position:sticky;top:0;background:#d2c3ea!important;color:#433278;font-weight:600;height:40px;display:flex;justify-content:space-around;padding-right:10px!important}.reportBlock .reportBlockBox .belowTable ul .table-title2 span[data-v-0ee3c548]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.9rem;line-height:40px;text-align:center}.reportBlock .reportBlockBox .belowTable ul .table-title2 .block-Height[data-v-0ee3c548],.reportBlock .reportBlockBox .belowTable ul .table-title2 .block-Time[data-v-0ee3c548]{width:50%}.reportBlock .reportBlockBox .belowTable ul li[data-v-0ee3c548]:nth-child(2n){background-color:#fff;background:#f8f8fa!important}.reportBlock .reportBlockBox .belowTable ul .currency-list2[data-v-0ee3c548]{width:100%;list-style:none;display:flex;cursor:pointer;justify-content:space-around;align-items:center;height:40px;padding-right:20px!important}.reportBlock .reportBlockBox .belowTable ul .currency-list2 span[data-v-0ee3c548]{height:100%;width:50%;font-weight:600;text-align:center;font-size:.85rem;line-height:40px}.reportBlock .reportBlockBox .belowTable ul .currency-list2[data-v-0ee3c548]{background:#efefef;box-shadow:0 0 2px 1px rgba(0,0,0,.02);padding:0 10px;margin-top:10px;background:#f8f8fa;border:1px solid #efefef}.reportBlock .reportBlockBox .belowTable ul .currency-list2 span[data-v-0ee3c548]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.reportBlock .reportBlockBox[data-v-0ee3c548]:hover{box-shadow:3px 3px 10px 4px #d2c3e9}.Calculator[data-v-0ee3c548]{width:100%;min-height:400px;background:rgba(0,0,0,.5);position:fixed;padding:20px;top:10%;left:0;z-index:2001;display:flex;align-items:center;justify-content:center}.Calculator .prop[data-v-0ee3c548]{width:98%;height:98%;background:#fafbff;border-radius:10px;display:flex;flex-direction:column;padding:20px;padding-bottom:50px}.Calculator .prop .titleBox[data-v-0ee3c548]{display:flex;justify-content:space-between;align-items:center;width:100%;height:35px;position:relative}.Calculator .prop .titleBox span[data-v-0ee3c548]{width:100%;text-align:left;font-size:.95rem;color:rgba(0,0,0,.7);padding-left:3%}.Calculator .prop .titleBox .close[data-v-0ee3c548]{font-size:1.5rem;cursor:pointer;position:absolute;top:1px;right:10px}.Calculator .prop .titleBox .close[data-v-0ee3c548]:hover{color:#6e3edb}.Calculator .prop .selectCurrency[data-v-0ee3c548]{width:100%;display:flex;justify-content:center}.Calculator .prop .selectCurrency .Currency2[data-v-0ee3c548]{display:flex;justify-content:space-between;align-items:center;justify-content:center;padding:5px;margin-top:3%}.Calculator .prop .selectCurrency .Currency2 img[data-v-0ee3c548]{width:28px}.Calculator .prop .cautionBox[data-v-0ee3c548]{padding:10px 10px;margin-left:3%;font-size:.85rem;color:rgba(0,0,0,.7)}.Calculator .prop .cautionBox span[data-v-0ee3c548]{color:#8d72db;font-weight:600}.Calculator .prop .content2[data-v-0ee3c548]{display:flex;justify-content:space-around;align-items:center;flex-direction:column;width:100%}.Calculator .prop .content2 .item[data-v-0ee3c548]{width:100%;margin-top:10px}.Calculator .prop .content2 .item p[data-v-0ee3c548]{margin-bottom:8px;font-size:.9rem}.describeBox[data-v-0ee3c548]{width:100%;text-align:center;margin:0!important;font-size:.85rem;overflow:hidden;max-height:100px}.describeBox p[data-v-0ee3c548]{margin:0 auto;width:100%!important;text-align:left;padding:2px 5px!important;border-radius:0!important;display:flex;align-items:center!important}.describeBox p .describeTitle[data-v-0ee3c548]{font-weight:700;margin-right:8px;color:#5721e4;max-width:63px;min-width:41px!important}.describeBox p i[data-v-0ee3c548]{color:#6e3edb;margin-right:5px;line-height:18px}.describeBox p .view[data-v-0ee3c548]{cursor:pointer;margin-left:8px;color:#6e3edb}.describeBox p .view[data-v-0ee3c548]:hover{color:#000}.describe-row[data-v-0ee3c548]{width:100%!important;margin:0 auto;border-radius:0!important;display:flex;justify-content:left;padding:5px 0}.broadcast-scroll-item[data-v-0ee3c548]{width:100%;display:flex;align-items:center;height:30px;line-height:30px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.describeContent[data-v-0ee3c548]{display:inline-block;max-width:70%;min-width:100px!important;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:top}.broadcast-scroll-list[data-v-0ee3c548]{padding-left:5px!important}.view[data-v-0ee3c548]{color:#5721e4;cursor:pointer;padding:2px 2px;transition:all .3s ease;border:1px solid transparent;max-width:8vw!important;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.view[data-v-0ee3c548]:hover{background-color:#5721e4;color:#fff;transform:translateY(-1px);border-radius:8px}}@media screen and (min-width:500px)and (max-width:800px){.Calculator[data-v-0ee3c548]{width:100%;min-height:400px;padding:20px;background:rgba(0,0,0,.5);position:fixed;top:25%;left:0;z-index:2001;display:flex;align-items:center;justify-content:center}.Calculator .prop[data-v-0ee3c548]{width:80%;background:#fafbff;border-radius:10px;display:flex;flex-direction:column;padding:20px;padding-bottom:50px}.Calculator .prop .titleBox[data-v-0ee3c548]{display:flex;justify-content:space-between;align-items:center;width:100%;height:35px;position:relative}.Calculator .prop .titleBox span[data-v-0ee3c548]{width:100%;text-align:left;font-size:.95rem;color:rgba(0,0,0,.7);padding-left:3%}.Calculator .prop .titleBox .close[data-v-0ee3c548]{font-size:1.5rem;cursor:pointer;position:absolute;top:1px;right:10px}.Calculator .prop .titleBox .close[data-v-0ee3c548]:hover{color:#6e3edb}.Calculator .prop .selectCurrency[data-v-0ee3c548]{width:100%;display:flex;justify-content:center}.Calculator .prop .selectCurrency .Currency2[data-v-0ee3c548]{display:flex;justify-content:space-between;align-items:center;justify-content:center;padding:5px;margin-top:3%}.Calculator .prop .selectCurrency .Currency2 img[data-v-0ee3c548]{width:28px}.Calculator .prop .cautionBox[data-v-0ee3c548]{padding:10px 10px;margin-left:3%;font-size:.85rem;color:rgba(0,0,0,.7)}.Calculator .prop .cautionBox span[data-v-0ee3c548]{color:#8d72db;font-weight:600}.Calculator .prop .content2[data-v-0ee3c548]{display:flex;justify-content:space-around;align-items:center;flex-direction:column;width:100%}.Calculator .prop .content2 .item[data-v-0ee3c548]{width:100%;margin-top:10px}.Calculator .prop .content2 .item p[data-v-0ee3c548]{margin-bottom:8px;font-size:.9rem}}#boxTitle2[data-title][data-v-0ee3c548]{position:relative;display:inline-block}#boxTitle2[data-title][data-v-0ee3c548]:hover:after{opacity:1;transition:all .1s ease .5s;visibility:visible}#boxTitle2[data-title][data-v-0ee3c548]:after{min-width:180px;max-width:300px;content:attr(data-title);position:absolute;padding:5px 10px;right:28px;border-radius:4px;color:hsla(0,0%,100%,.8);background-color:rgba(80,79,79,.8);box-shadow:0 0 4px rgba(0,0,0,.16);font-size:.8em;visibility:hidden;opacity:0;text-align:center;overflow-wrap:break-word!important}.content[data-v-0ee3c548]{width:100%;overflow-y:auto}.content .Calculator[data-v-0ee3c548]{width:100%;height:100vh;background:rgba(0,0,0,.5);position:fixed;top:0;left:0;z-index:2001;display:flex;align-items:center;justify-content:center}.content .Calculator .prop[data-v-0ee3c548]{width:52%;height:45%;background:#fafbff;border-radius:10px;display:flex;flex-direction:column;padding:20px 5px}.content .Calculator .prop .titleBox[data-v-0ee3c548]{display:flex;justify-content:space-between;align-items:center;width:100%;height:35px;position:relative}.content .Calculator .prop .titleBox span[data-v-0ee3c548]{width:100%;text-align:left;font-size:1.8em;color:rgba(0,0,0,.7);padding-left:3%}.content .Calculator .prop .titleBox .close[data-v-0ee3c548]{font-size:2em;cursor:pointer;position:absolute;top:1px;right:10px}.content .Calculator .prop .titleBox .close[data-v-0ee3c548]:hover{color:#6e3edb}.content .Calculator .prop .selectCurrency[data-v-0ee3c548]{width:100%;display:flex;justify-content:center}.content .Calculator .prop .selectCurrency .Currency2[data-v-0ee3c548]{display:flex;justify-content:space-between;align-items:center;justify-content:center;padding:5px;margin-top:3%}.content .Calculator .prop .selectCurrency .Currency2 img[data-v-0ee3c548]{width:28px}.content .Calculator .prop .cautionBox[data-v-0ee3c548]{padding:10px 10px;margin-left:3%;font-size:1.2em;color:rgba(0,0,0,.7)}.content .Calculator .prop .cautionBox span[data-v-0ee3c548]{color:#8d72db;font-weight:600}.content .Calculator .prop .content2[data-v-0ee3c548]{display:flex;justify-content:space-around;align-items:center;flex-direction:column}.content .Calculator .prop .content2 .titleS[data-v-0ee3c548]{display:flex;justify-content:space-around;width:90%;margin-top:5%}.content .Calculator .prop .content2 .titleS span[data-v-0ee3c548]{text-align:left;font-size:1.2em;color:rgba(0,0,0,.7)}.content .Calculator .prop .content2 .titleS .power[data-v-0ee3c548]{width:40%}.content .Calculator .prop .content2 .titleS .time[data-v-0ee3c548]{width:15%}.content .Calculator .prop .content2 .titleS .profit[data-v-0ee3c548]{width:40%}.content .Calculator .prop .content2 .computingPower[data-v-0ee3c548]{display:flex;height:50px;justify-content:space-around;width:90%;margin-top:1%}.content .bgBox[data-v-0ee3c548]{width:100%;height:300px;box-sizing:border-box;position:relative;text-align:left}.content .bgBox .bgImg[data-v-0ee3c548]{height:100%;width:auto;position:absolute;left:25vw;top:0}.content .bgBox .bgBoxImg[data-v-0ee3c548]{height:100%;width:auto;position:absolute;left:23%;transition:all .3s linear}.content .bgBoxImg2Img[data-v-0ee3c548]{width:73vw;height:40vh;margin:0 auto;overflow:hidden}.content .bgBoxImg[data-v-0ee3c548]:hover{height:98%;position:absolute;left:23%}.content .container[data-v-0ee3c548]{width:100%;display:flex;justify-content:center;height:80px}.content .container .containerBox[data-v-0ee3c548]{width:80%;display:flex;background:#db7093;justify-content:center}.content .container .containerBox .image-list[data-v-0ee3c548]{display:flex;padding:0 20px}.content .container .containerBox .image-list .imageBOX[data-v-0ee3c548]{margin-left:10px;background:green;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:8px 10px}.content .container .containerBox .image-list img[data-v-0ee3c548]{width:30px}.content .container .containerBox .image-list span[data-v-0ee3c548]{text-align:center}.content .contentBox[data-v-0ee3c548]{width:100%}.Currency2 .el-select[data-v-0ee3c548]{width:80%!important}[data-v-0ee3c548] .el-input__inner{height:50px}@media screen and (min-width:220px)and (max-width:1279px){[data-v-0ee3c548] .el-input__inner{height:40px}}.contentBox[data-v-0ee3c548]{width:100%;display:flex;justify-content:start;align-items:center;flex-direction:column}.contentBox .currencyDescription2[data-v-0ee3c548]{width:100%;display:flex;justify-content:center;align-items:center}.contentBox .currencyDescription2 .miningPoolBox[data-v-0ee3c548]{width:75%;padding:0 20px;margin:0 auto;font-size:.9rem}.contentBox .currencyDescription2 .miningPoolBox .miningPoolLeft[data-v-0ee3c548]{width:100%;height:80%;box-shadow:0 0 10px 3px #ccc;padding:20px 10px;border-radius:10px;transition:all .3s linear;height:380px;display:flex;justify-content:center;flex-direction:column;margin-top:10px;min-width:300px}.contentBox .currencyDescription2 .miningPoolBox .miningPoolLeft .interval[data-v-0ee3c548]{display:flex;justify-content:space-between;padding:2px 10px}.contentBox .currencyDescription2 .miningPoolBox .miningPoolLeft .interval .chartBth .slideBox[data-v-0ee3c548]{background-image:linear-gradient(90deg,#b6e6f1 0,#f8bbd0);padding:0 2px;border-radius:20px;display:flex;align-items:center;justify-content:center;height:30px}.contentBox .currencyDescription2 .miningPoolBox .miningPoolLeft .interval .chartBth .slideBox span[data-v-0ee3c548]{text-align:center;border-radius:20px;height:80%;line-height:25px;margin:0;transition:all .3s linear;padding:0 5px;overflow:hidden;text-overflow:ellipsis}.contentBox .currencyDescription2 .miningPoolBox .miningPoolLeft .interval .chartBth .slideActive[data-v-0ee3c548]{background:#5721e4;color:#fff}.contentBox .currencyDescription2 .miningPoolBox .miningPoolLeft .timeBox[data-v-0ee3c548]{padding:0 10px}.contentBox .currencyDescription2 .miningPoolBox .miningPoolLeft .timeBox span[data-v-0ee3c548]{margin-left:8px;cursor:pointer}.contentBox .currencyDescription2 .miningPoolBox .miningPoolLeft .times[data-v-0ee3c548]{width:15%;text-align:center;border-radius:10px;font-size:.9rem;line-height:30px}.contentBox .currencyDescription2 .miningPoolBox .miningPoolLeft .timeActive[data-v-0ee3c548],.contentBox .currencyDescription2 .miningPoolBox .miningPoolLeft .times[data-v-0ee3c548]:hover{color:#5721e4}.contentBox .currencyDescription2 .miningPoolBox .miningPoolLeft[data-v-0ee3c548]:hover{box-shadow:3px 3px 10px 5px #d2c3e9}.contentBox .currencyDescription2 .miningPoolBox .miningPoolRight[data-v-0ee3c548]{width:100%;display:flex;justify-content:center;margin-top:10px;min-width:300px}.contentBox .currencyDescription2 .miningPoolBox .miningPoolRight ul[data-v-0ee3c548]{padding:0;padding:0 10px;margin:0;height:100%;display:flex;align-items:center;flex-wrap:wrap}.contentBox .currencyDescription2 .miningPoolBox .miningPoolRight ul .dataBlock[data-v-0ee3c548]{margin:0;margin-left:3%}.contentBox .currencyDescription2 .miningPoolBox .miningPoolRight ul li[data-v-0ee3c548]{list-style:none;width:30%;height:110px;background:#fff;border-radius:5%;display:flex;align-items:center;justify-content:space-between;box-shadow:3px 3px 5px 2px #ccc;margin-top:3%;transition:all .2s linear;margin-left:3%;overflow:hidden;text-overflow:ellipsis}.contentBox .currencyDescription2 .miningPoolBox .miningPoolRight ul li .text[data-v-0ee3c548]{height:90%;width:70%;padding-left:5%;overflow:hidden}.contentBox .currencyDescription2 .miningPoolBox .miningPoolRight ul li .text p[data-v-0ee3c548]{overflow:hidden;text-overflow:ellipsis;font-size:.85rem;margin-top:5px}.contentBox .currencyDescription2 .miningPoolBox .miningPoolRight ul li .text .content[data-v-0ee3c548]{overflow:hidden;word-wrap:break-word;text-overflow:ellipsis;margin-top:5px}.contentBox .currencyDescription2 .miningPoolBox .miningPoolRight ul li .imgIcon[data-v-0ee3c548]{height:90%;width:30%;padding-top:5%}.contentBox .currencyDescription2 .miningPoolBox .miningPoolRight ul li .imgIcon img[data-v-0ee3c548]{width:80%}.contentBox .currencyDescription2 .miningPoolBox .miningPoolRight ul li[data-v-0ee3c548]:hover{box-shadow:0 0 5px 2px #d2c3ea}.contentBox .currencyDescription2 .miningPoolBox .miningPoolRight ul .ConnectMiningPool[data-v-0ee3c548],.contentBox .currencyDescription2 .miningPoolBox .miningPoolRight ul .profitCalculation[data-v-0ee3c548]{cursor:pointer}.contentBox .currencyDescription2 .currencyDescriptionBox[data-v-0ee3c548]{width:90%;height:600px;box-shadow:0 0 3px 1px #ccc;margin-top:2%;display:flex;justify-content:start;flex-direction:column;align-items:center;position:relative}.contentBox .currencyDescription2 .currencyDescriptionBox .titleBOX[data-v-0ee3c548]{display:flex;justify-content:space-around;align-items:center;padding:20px 10px;width:100%;border-bottom:1px solid rgba(0,0,0,.1)}.contentBox .currencyDescription2 .currencyDescriptionBox .titleBOX h3[data-v-0ee3c548]{width:90%;font-size:1rem;text-align:center}.contentBox .currencyDescription2 .currencyDescriptionBox .titleBOX .titleCurrency[data-v-0ee3c548]:hover{background:rgba(223,83,52,.05);font-size:13px;box-shadow:0 0 5px 3px rgba(223,83,52,.05)}.contentBox .currencyDescription2 .currencyDescriptionBox .titleCurrency[data-v-0ee3c548]{display:flex;justify-content:space-around;align-items:center;flex-direction:column;padding:8px 10px;border-radius:22px;font-weight:600;margin-left:30px;font-size:1.1em;margin-right:1%;position:absolute;top:10px;right:60px;transition:all .2s linear}.contentBox .currencyDescription2 .currencyDescriptionBox .titleCurrency img[data-v-0ee3c548]{width:35px;margin-left:1%}.contentBox .currencyDescription2 .currencyDescriptionBox .titleCurrency span[data-v-0ee3c548]{margin-top:10px;text-transform:uppercase}.contentBox .currencyDescription2 .currencyDescriptionBox .computationalPower[data-v-0ee3c548]{height:15%;width:100%;display:flex;justify-content:space-around;align-items:center;font-size:1.3em;margin:10px 10px}.contentBox .currencyDescription2 .currencyDescriptionBox .computationalPower .PowerBox[data-v-0ee3c548]{display:flex;flex-direction:column;justify-content:center;align-content:center}.contentBox .currencyDescription2 .currencyDescriptionBox .computationalPower span[data-v-0ee3c548]{cursor:pointer;width:100%;text-align:center;transition:all .2s linear}.contentBox .currencyDescription2 .currencyDescriptionBox .computationalPower span[data-v-0ee3c548]:hover{color:#df5334;font-weight:600}.contentBox .currencyDescription2 .currencyDescriptionBox .computationalPower .Power[data-v-0ee3c548]{font-size:1.5em}.contentBox .currencyDescription2 .currencyDescriptionBox p[data-v-0ee3c548]{width:80%;margin:0;font-size:1em;margin-top:3px;margin-left:5%;text-align:left;height:8%;padding:0 10px;line-height:50px;box-shadow:0 0 2px 1px #ccc;margin-top:1%}.contentBox .reportBlock[data-v-0ee3c548]{width:100%;display:flex;justify-content:center;max-height:700px;margin-top:1%;padding-bottom:2%;background:#433278}.contentBox .reportBlock .reportBlockBox[data-v-0ee3c548]{width:75%;display:flex;justify-content:space-between;flex-direction:column;align-items:center;border-radius:10px;overflow:hidden;transition:all .2s linear}.contentBox .reportBlock .reportBlockBox[data-v-0ee3c548]:hover{box-shadow:3px 3px 10px 4px #d2c3e9}.contentBox .EchartsBox[data-v-0ee3c548]{width:80%;min-height:300px}.contentBox .EchartsBox .chart[data-v-0ee3c548]{height:300px;border:1px solid rgba(0,0,0,.1);margin-top:2%}.contentBox .formBox[data-v-0ee3c548]{width:80%;min-height:300px;border:1px solid rgba(0,0,0,.1);margin-top:2%}.reportBlock[data-v-0ee3c548]{width:100%;display:flex;justify-content:center;max-height:700px;margin-top:3%;padding-bottom:2%}.reportBlock .reportBlockBox[data-v-0ee3c548]{width:75%;display:flex;justify-content:space-between;flex-direction:column;align-items:center;border-radius:10px;overflow:hidden;transition:all .2s linear}.reportBlock .reportBlockBox .top[data-v-0ee3c548]{width:100%;height:28%;display:flex;align-items:center;justify-content:center;border-bottom:1px solid rgba(0,0,0,.1);padding:20px 0;color:#fff;font-weight:600;font-size:1.2em}.reportBlock .reportBlockBox .top .lucky[data-v-0ee3c548]{display:flex;align-items:center;flex-direction:column;justify-content:center}.reportBlock .reportBlockBox .top .lucky .luckyNum[data-v-0ee3c548]{font-size:1.8em}.reportBlock .reportBlockBox .top .lucky .luckyText[data-v-0ee3c548]{font-size:1em;margin-top:5%}.reportBlock .reportBlockBox .top div[data-v-0ee3c548]{width:20%;background:#2eaeff;height:100%;display:flex;align-items:center;justify-content:space-around;margin-left:3%;border-radius:15px;box-shadow:0 8px 20px 0 rgba(46,174,255,.5)}.reportBlock .reportBlockBox .belowTable[data-v-0ee3c548]{width:100%;display:flex;justify-content:center;flex-direction:column;align-items:center;margin-bottom:100px}.reportBlock .reportBlockBox .belowTable ul[data-v-0ee3c548]{width:100%;max-height:650px;min-height:200px;padding:0;margin:0;overflow:hidden}.reportBlock .reportBlockBox .belowTable ul .table-title[data-v-0ee3c548]{position:sticky;top:0;background:#d2c3ea;padding:0 10px;color:#433278;font-weight:600}.reportBlock .reportBlockBox .belowTable ul .table-title .hash[data-v-0ee3c548]{width:58%;text-align:left;margin-left:5%}.reportBlock .reportBlockBox .belowTable ul .table-title .blockRewards[data-v-0ee3c548]{width:18%;font-weight:600;font-size:.95em;text-align:left;margin-left:1%}.reportBlock .reportBlockBox .belowTable ul .table-title .transactionFee[data-v-0ee3c548]{width:18%;font-weight:600;font-size:.95em}.reportBlock .reportBlockBox .belowTable ul .table-title span[data-v-0ee3c548]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.95em}.reportBlock .reportBlockBox .belowTable ul li[data-v-0ee3c548]:nth-child(2n){background-color:#fff;background:#f8f8fa}.reportBlock .reportBlockBox .belowTable ul li[data-v-0ee3c548]{width:100%;list-style:none;display:flex;cursor:pointer;justify-content:space-around;align-items:center;height:60px}.reportBlock .reportBlockBox .belowTable ul li span[data-v-0ee3c548]{height:100%;width:20%;line-height:60px;font-weight:600;text-align:center;font-size:.95rem}.reportBlock .reportBlockBox .belowTable ul .currency-list[data-v-0ee3c548]{background:#efefef;box-shadow:0 0 2px 1px rgba(0,0,0,.02);padding:0 10px;margin-top:10px;background:#f8f8fa;border:1px solid #efefef}.reportBlock .reportBlockBox .belowTable ul .currency-list span[data-v-0ee3c548]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.reportBlock .reportBlockBox .belowTable ul .currency-list .hash[data-v-0ee3c548]{width:58%;margin-left:5%;text-align:left}.reportBlock .reportBlockBox .belowTable ul .currency-list .reward[data-v-0ee3c548]{width:18%;text-align:left;margin-left:1%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.reportBlock .reportBlockBox[data-v-0ee3c548]:hover{box-shadow:3px 3px 10px 4px #d2c3e9}.interval span[data-v-0ee3c548]{margin-left:10px;cursor:pointer;transition:all .2s linear}.interval span[data-v-0ee3c548]:hover{color:#2eaeff}.footerBox[data-v-0ee3c548]{justify-content:space-around;width:100%;height:300px;display:flex;justify-content:center;align-items:center;background:hsla(0,0%,80%,.1)}.footerSon[data-v-0ee3c548]{width:33.3333333333%;height:80%;border-right:1px solid rgba(0,0,0,.1)}.active[data-v-0ee3c548]{background:#6e3edb;color:#fff}.el-card[data-v-0ee3c548]{background:transparent;padding-left:12%;box-shadow:none;border:none}.monitor-list[data-v-0ee3c548]{display:flex;justify-content:space-between;height:9vh;width:86%;box-shadow:0 0 10px 3px #ccc;border-radius:5px;background:#fff}.monitor-list i[data-v-0ee3c548]{font-size:.8em}.monitor-list .btn[data-v-0ee3c548]{width:50px;height:100%;line-height:9vh;text-align:center;cursor:pointer;background-color:#ecf5ff;font-size:24px;color:#000;background:#d2c3e9;transition:all .3s linear}.monitor-list .btn[data-v-0ee3c548]:hover{background-color:#e0dfff}.monitor-list .left[data-v-0ee3c548]{border-radius:5px 0 0 5px;box-shadow:0 0 5px 1px #ccc}.monitor-list .right[data-v-0ee3c548]{border-radius:0 5px 5px 0;box-shadow:0 0 5px 1px #ccc}.monitor-list .list-box[data-v-0ee3c548]{width:calc(100vw - 100px);overflow:hidden;display:flex;align-items:center;justify-items:center}.monitor-list .list-box .list[data-v-0ee3c548]{width:100%;transform:all 2s;display:flex;align-items:center;justify-items:center;padding-left:2%;height:90%;position:relative;left:0;transition:left 1s}.monitor-list .list-box .list .list-item[data-v-0ee3c548]{width:120px;height:95%;text-align:center;cursor:pointer;margin-left:18px;display:flex;flex-direction:column;align-items:center;justify-content:space-around;border-radius:10px;transition:all .3s linear;padding:5px}.monitor-list .list-box .list .list-item span[data-v-0ee3c548]{width:100%;height:25%;border-radius:5px;padding:0 2px;text-transform:capitalize;font-size:.8rem;display:flex;align-items:center;justify-content:center}.monitor-list .list-box .list .list-item img[data-v-0ee3c548]{width:2.3vw}.monitor-list .list-box .list .list-item[data-v-0ee3c548]:hover{font-size:1rem;box-shadow:0 0 3px 1px rgba(210,195,234,.8)}.monitor-list .list-box .list .list-item:hover span[data-v-0ee3c548]{background:#6e3edb;color:#fff}.monitor-list .list-box .list .list-item:hover img[data-v-0ee3c548]{width:38px}.timeActive[data-v-0ee3c548]{color:#5721e4}.describeBox[data-v-0ee3c548]{width:100%;text-align:center;margin-top:30px;font-size:.85rem;overflow:hidden;max-height:100px}.describeBox p[data-v-0ee3c548]{margin:0 auto;width:72%;text-align:left;padding:0 20px;background:#e7dff3;border-radius:8px;padding:10px 20px;display:flex;align-items:start}.describeBox p .describeTitle[data-v-0ee3c548]{font-weight:600;color:#6e3edb}.describeBox p i[data-v-0ee3c548]{color:#6e3edb;margin-right:5px;line-height:18px}.describeBox p .view[data-v-0ee3c548]{cursor:pointer;margin-left:8px;color:#6e3edb}.describeBox p .view[data-v-0ee3c548]:hover{color:#000}.describe-row[data-v-0ee3c548]{width:73%;margin:0 auto;background:#e7dff3;border-radius:8px;display:flex;justify-content:left;padding:5px 0}.describeTitle[data-v-0ee3c548]{font-weight:700;margin-right:8px;color:#5721e4}.broadcast-scroll-wrap[data-v-0ee3c548]{display:inline-block;min-width:0;height:30px;position:relative}.broadcast-scroll-list[data-v-0ee3c548]{display:flex;flex-direction:column;text-align:left;padding:0;padding-left:18px}.broadcast-scroll-item[data-v-0ee3c548]{width:100%;display:flex;align-items:center;height:30px;line-height:30px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.describeContent[data-v-0ee3c548]{display:inline-block;max-width:70%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;vertical-align:top}.describeTitle[data-v-0ee3c548]{font-weight:600;color:#6e3edb}i[data-v-0ee3c548]{color:#6e3edb;margin-right:5px;line-height:18px}.view[data-v-0ee3c548]{margin-left:8px;color:#6e3edb}.view[data-v-0ee3c548]:hover{color:#000}.button-group[data-v-0ee3c548]{display:inline-flex;align-items:center;gap:0}.horizontal-item-separator[data-v-0ee3c548]{color:#ccc;margin:0 15px;font-size:12px}.view[data-v-0ee3c548]{color:#5721e4;cursor:pointer;padding:2px 2px;transition:all .3s ease;border:1px solid transparent;max-width:80px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.view[data-v-0ee3c548]:hover{background-color:#5721e4;color:#fff;transform:translateY(-1px);border-radius:8px}.el-input.is-disabled .el-input__inner{color:rgba(0,0,0,.8)}@media screen and (min-width:220px) and (max-width:1279px){.el-menu--horizontal{width:100%}}.help-center[data-v-df37eeb8]{min-height:100vh;background-color:#f5f5f5}.top-section[data-v-df37eeb8]{position:relative;height:200px;background:linear-gradient(135deg,#5721e4,#5721e4 50%,#f4bdd1);display:flex;align-items:center;justify-content:center;padding:20px}.filter-icon[data-v-df37eeb8]{position:absolute;top:20px;right:20px;color:#fff;cursor:pointer;padding:8px;border-radius:50%;background:hsla(0,0%,100%,.1);transition:background .3s ease}.filter-icon[data-v-df37eeb8]:hover{background:hsla(0,0%,100%,.2)}.search-container[data-v-df37eeb8]{width:100%;max-width:400px}.search-input[data-v-df37eeb8]{width:100%;padding:12px 20px;border:none;border-radius:25px;background:hsla(0,0%,100%,.9);font-size:16px;outline:none;transition:background .3s ease}.search-input[data-v-df37eeb8]:focus{background:#fff}.search-input[data-v-df37eeb8]::placeholder{color:#999}.main-content[data-v-df37eeb8]{max-width:1200px;margin:0 auto;padding:40px 20px}.category-grid[data-v-df37eeb8]{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;margin-bottom:60px}.category-btn[data-v-df37eeb8]{padding:20px;border:2px solid #e0e0e0;border-radius:8px;background:#fff;color:#333;font-size:16px;font-weight:500;cursor:pointer;transition:all .3s ease;text-align:center;min-height:60px;display:flex;align-items:center;justify-content:center}.category-btn[data-v-df37eeb8]:hover{border-color:#5721e4;background:#f8f9ff;transform:translateY(-2px);box-shadow:0 4px 12px rgba(42,82,152,.1)}.category-btn[data-v-df37eeb8]:focus{outline:none;border-color:#2a5298;box-shadow:0 0 0 3px rgba(42,82,152,.1)}.section-title[data-v-df37eeb8]{font-size:20px;font-weight:600;color:#333;margin-bottom:20px}.recommended-section[data-v-df37eeb8]{margin-bottom:60px}.recommended-items[data-v-df37eeb8]{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:20px}.recommended-item[data-v-df37eeb8]{background:#fff;padding:20px;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,.1);transition:transform .3s ease;cursor:pointer}.recommended-item[data-v-df37eeb8]:hover{transform:translateY(-2px);box-shadow:0 4px 12px rgba(0,0,0,.15)}.item-description[data-v-df37eeb8]{color:#666;line-height:1.6;margin:0}.recent-activities[data-v-df37eeb8]{margin-bottom:40px}.activities-list[data-v-df37eeb8]{display:flex;flex-direction:column;gap:20px}.activity-item[data-v-df37eeb8]{background:#fff;padding:20px;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,.1);transition:transform .3s ease}.activity-item[data-v-df37eeb8]:hover{transform:translateY(-2px);box-shadow:0 4px 12px rgba(0,0,0,.15)}.activity-header[data-v-df37eeb8]{margin-bottom:10px}.activity-badge[data-v-df37eeb8]{display:inline-block;padding:4px 12px;background:#e3f2fd;color:#1976d2;border-radius:12px;font-size:12px;font-weight:500}.activity-title[data-v-df37eeb8]{font-size:16px;font-weight:500;color:#333;margin:0 0 10px 0;line-height:1.4}.activity-meta[data-v-df37eeb8]{display:flex;justify-content:space-between;align-items:center;font-size:14px;color:#666}.activity-comments[data-v-df37eeb8]{color:#999}.view-more[data-v-df37eeb8]{text-align:center;margin-top:40px}.view-more-link[data-v-df37eeb8]{color:#2a5298;text-decoration:none;font-weight:500;transition:color .3s ease}.view-more-link[data-v-df37eeb8]:hover{color:#1e3c72;text-decoration:underline}.bottom-section[data-v-df37eeb8]{background:#f8f9fa;padding:20px;border-top:1px solid #e0e0e0}.help-center-link[data-v-df37eeb8]{max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;color:#666}.language-select[data-v-df37eeb8]{padding:5px 10px;border:1px solid #ddd;border-radius:4px;background:#fff;color:#333;font-size:14px}@media (max-width:768px){.category-grid[data-v-df37eeb8],.recommended-items[data-v-df37eeb8]{grid-template-columns:1fr}.main-content[data-v-df37eeb8]{padding:20px 15px}.search-container[data-v-df37eeb8]{max-width:300px}.help-center-link[data-v-df37eeb8]{flex-direction:column;gap:10px}.activity-meta[data-v-df37eeb8]{flex-direction:column;align-items:flex-start;gap:5px}}.editor-page[data-v-4ff46502]{max-width:1200px;margin:0 auto;padding:20px;background:#f8f9fa;min-height:100vh}.page-header[data-v-4ff46502]{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;padding:30px;border-radius:12px;margin-bottom:24px;display:flex;justify-content:space-between;align-items:flex-start;box-shadow:0 8px 32px rgba(102,126,234,.3)}.header-left[data-v-4ff46502]{flex:1}.title-section[data-v-4ff46502]{display:flex;align-items:center;margin-bottom:12px}.title-icon[data-v-4ff46502]{font-size:28px;margin-right:12px;color:gold}.page-title[data-v-4ff46502]{font-size:28px;font-weight:700;margin:0;text-shadow:0 2px 4px rgba(0,0,0,.1)}.page-description[data-v-4ff46502]{font-size:16px;opacity:.9;margin:0;line-height:1.6}.header-actions[data-v-4ff46502]{display:flex;gap:12px;flex-wrap:wrap}.header-actions .el-button[data-v-4ff46502]{border-radius:8px;font-weight:500;padding:12px 20px;box-shadow:0 4px 12px rgba(0,0,0,.15);transition:all .3s ease}.header-actions .el-button[data-v-4ff46502]:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.2)}.config-section[data-v-4ff46502]{background:#fff;border-radius:12px;padding:24px;margin-bottom:24px;box-shadow:0 4px 20px rgba(0,0,0,.08);border:1px solid #e9ecef}.section-header[data-v-4ff46502]{display:flex;align-items:center;margin-bottom:24px;padding-bottom:16px;border-bottom:2px solid #f8f9fa;color:#2c3e50;font-weight:600;font-size:18px}.section-header i[data-v-4ff46502]{margin-right:10px;color:#667eea;font-size:20px}.config-content[data-v-4ff46502]{display:flex;flex-direction:column;gap:20px}.config-row[data-v-4ff46502]{display:grid;grid-template-columns:1fr 1fr;gap:24px}.config-item[data-v-4ff46502]{display:flex;flex-direction:column}.config-item label[data-v-4ff46502]{margin-bottom:8px;font-weight:600;color:#495057;font-size:14px}.required[data-v-4ff46502]:after{content:"*";color:#e74c3c;margin-left:4px;font-weight:700}.editor-section[data-v-4ff46502]{background:#fff;border-radius:12px;padding:24px;box-shadow:0 4px 20px rgba(0,0,0,.08);border:1px solid #e9ecef}.editor-container[data-v-4ff46502]{border:1px solid #dcdfe6;border-radius:8px;overflow:hidden;background:#fff;min-height:650px}.editor-container .w-e-text-container[data-v-4ff46502],.editor-container .w-e-text[data-v-4ff46502]{height:600px!important;min-height:600px!important}.save-status[data-v-4ff46502]{position:fixed;bottom:20px;right:20px;background:#67c23a;color:#fff;padding:12px 20px;border-radius:8px;box-shadow:0 4px 12px rgba(103,194,58,.3);display:flex;align-items:center;gap:8px;font-size:14px;z-index:1000;animation:slideIn-4ff46502 .3s ease}@keyframes slideIn-4ff46502{0%{transform:translateX(100%);opacity:0}to{transform:translateX(0);opacity:1}}.preview-dialog .el-dialog__body[data-v-4ff46502]{padding:20px;max-height:70vh;overflow-y:auto}.preview-dialog .el-dialog__header[data-v-4ff46502]{background-color:#f8f9fa;border-bottom:1px solid #ebeef5}.preview-dialog .el-dialog__header .el-dialog__title[data-v-4ff46502]{color:#333;font-weight:600}.preview-dialog .el-dialog__footer[data-v-4ff46502]{background-color:#f8f9fa;border-top:1px solid #ebeef5;padding:15px 20px}.preview-dialog .el-dialog__footer .dialog-footer[data-v-4ff46502]{text-align:right}.preview-dialog .el-dialog__footer .dialog-footer .el-button[data-v-4ff46502]{border-radius:6px;padding:8px 15px;font-weight:500}.preview-dialog .el-dialog__footer .dialog-footer .el-button[data-v-4ff46502]:first-child{margin-right:10px}.preview-dialog .el-dialog__footer .dialog-footer .el-button[data-v-4ff46502]:last-child{background-color:#667eea;border-color:#667eea}.preview-dialog .el-dialog__footer .dialog-footer .el-button[data-v-4ff46502]:last-child:hover{background-color:#5a67d8;border-color:#5a67d8}.preview-content[data-v-4ff46502]{background:#fff;padding:20px}.preview-empty[data-v-4ff46502]{text-align:center;padding:50px 20px;color:#95a5a6}.preview-empty i[data-v-4ff46502]{font-size:48px;margin-bottom:15px;display:block}.preview-empty p[data-v-4ff46502]{margin:0;font-size:16px}@media (max-width:768px){.editor-page[data-v-4ff46502]{padding:10px}.page-header[data-v-4ff46502]{flex-direction:column;gap:20px;padding:20px}.header-actions[data-v-4ff46502]{width:100%;justify-content:center}.config-row[data-v-4ff46502]{grid-template-columns:1fr;gap:16px}.page-title[data-v-4ff46502]{font-size:24px}.save-status[data-v-4ff46502]{bottom:10px;right:10px;left:10px;text-align:center;justify-content:center}}.el-input[data-v-4ff46502],.el-select[data-v-4ff46502]{border-radius:8px}.el-input__inner[data-v-4ff46502],.el-select .el-input__inner[data-v-4ff46502]{border-radius:8px;border:1px solid #dcdfe6;transition:all .3s ease}.el-input__inner[data-v-4ff46502]:focus,.el-select .el-input__inner[data-v-4ff46502]:focus{border-color:#667eea;box-shadow:0 0 0 2px rgba(102,126,234,.2)}.el-tag[data-v-4ff46502]{border-radius:6px;font-weight:500}.main-title-box[data-v-0e9d673d]{display:flex;align-items:center;margin-bottom:20px}.main-title-box .add-btn[data-v-0e9d673d]{background:#661ffb;color:#fff;border:none;margin-left:28px;border-radius:20px;padding:10px 20px;transition:all .3s ease}.main-title-box .add-btn .arrow[data-v-0e9d673d]{margin-left:10px}.main-title-box .add-btn[data-v-0e9d673d]:hover{transform:scale(1.05)}.main-title[data-v-0e9d673d]{font-size:24px;font-weight:700;color:#333;margin-bottom:18px}.elBtn[data-v-0e9d673d]{background:#e60751;color:#fff;border:none;margin-left:18px}.editor-page[data-v-adda61ec]{width:100%;margin:0 auto;padding:20px;background:#f8f9fa;min-height:60vh;overflow-y:auto}.page-header[data-v-adda61ec]{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;padding:30px;border-radius:12px;margin-bottom:24px;display:flex;justify-content:space-between;align-items:flex-start;box-shadow:0 8px 32px rgba(102,126,234,.3)}.header-left[data-v-adda61ec]{flex:1}.title-section[data-v-adda61ec]{display:flex;align-items:center;margin-bottom:12px}.title-icon[data-v-adda61ec]{font-size:28px;margin-right:12px;color:gold}.page-title[data-v-adda61ec]{font-size:28px;font-weight:700;margin:0;text-shadow:0 2px 4px rgba(0,0,0,.1)}.page-description[data-v-adda61ec]{font-size:16px;opacity:.9;margin:0;line-height:1.6}.header-actions[data-v-adda61ec]{display:flex;gap:12px;flex-wrap:wrap}.header-actions .el-button[data-v-adda61ec]{border-radius:8px;font-weight:500;padding:12px 20px;box-shadow:0 4px 12px rgba(0,0,0,.15);transition:all .3s ease}.header-actions .el-button[data-v-adda61ec]:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.2)}.config-section[data-v-adda61ec]{background:#fff;border-radius:12px;padding:24px;margin-bottom:24px;box-shadow:0 4px 20px rgba(0,0,0,.08);border:1px solid #e9ecef}.section-header[data-v-adda61ec]{display:flex;align-items:center;margin-bottom:24px;padding-bottom:16px;border-bottom:2px solid #f8f9fa;color:#2c3e50;font-weight:600;font-size:18px}.section-header i[data-v-adda61ec]{margin-right:10px;color:#667eea;font-size:20px}.config-content[data-v-adda61ec]{display:flex;flex-direction:column;gap:20px;margin-top:18px}.config-row[data-v-adda61ec]{display:grid;grid-template-columns:1fr 1fr;gap:24px}.config-item[data-v-adda61ec]{display:flex;flex-direction:column}.config-item label[data-v-adda61ec]{margin-bottom:8px;font-weight:600;color:#495057;font-size:14px}.required[data-v-adda61ec]:after{content:"*";color:#e74c3c;margin-left:4px;font-weight:700}.editor-section[data-v-adda61ec]{background:#fff;border-radius:12px;padding:24px;box-shadow:0 4px 20px rgba(0,0,0,.08);border:1px solid #e9ecef}.editor-container[data-v-adda61ec]{border:1px solid #dcdfe6;border-radius:8px;overflow:hidden;background:#fff;min-height:650px;position:relative;z-index:1}[data-v-adda61ec] .editor-container .w-e-text-container{min-height:600px!important;z-index:1!important;position:relative}[data-v-adda61ec] .w-e-toolbar{z-index:10!important;position:relative}.editor-container .w-e-text[data-v-adda61ec]{height:600px!important;min-height:600px!important}.save-status[data-v-adda61ec]{position:fixed;bottom:20px;right:20px;background:#67c23a;color:#fff;padding:12px 20px;border-radius:8px;box-shadow:0 4px 12px rgba(103,194,58,.3);display:flex;align-items:center;gap:8px;font-size:14px;z-index:1000;animation:slideIn-adda61ec .3s ease}@keyframes slideIn-adda61ec{0%{transform:translateX(100%);opacity:0}to{transform:translateX(0);opacity:1}}.preview-dialog .el-dialog__body[data-v-adda61ec]{padding:20px;max-height:70vh;overflow-y:auto;z-index:9999}.preview-dialog .el-dialog__header[data-v-adda61ec]{background-color:#f8f9fa;border-bottom:1px solid #ebeef5}.preview-dialog .el-dialog__header .el-dialog__title[data-v-adda61ec]{color:#333;font-weight:600}.preview-dialog .el-dialog__footer[data-v-adda61ec]{background-color:#f8f9fa;border-top:1px solid #ebeef5;padding:15px 20px}.preview-dialog .el-dialog__footer .dialog-footer[data-v-adda61ec]{text-align:right}.preview-dialog .el-dialog__footer .dialog-footer .el-button[data-v-adda61ec]{border-radius:6px;padding:8px 15px;font-weight:500}.preview-dialog .el-dialog__footer .dialog-footer .el-button[data-v-adda61ec]:first-child{margin-right:10px}.preview-dialog .el-dialog__footer .dialog-footer .el-button[data-v-adda61ec]:last-child{background-color:#667eea;border-color:#667eea}.preview-dialog .el-dialog__footer .dialog-footer .el-button[data-v-adda61ec]:last-child:hover{background-color:#5a67d8;border-color:#5a67d8}.preview-content[data-v-adda61ec]{background:#fff;padding:20px}.preview-empty[data-v-adda61ec]{text-align:center;padding:50px 20px;color:#95a5a6}.preview-empty i[data-v-adda61ec]{font-size:48px;margin-bottom:15px;display:block}.preview-empty p[data-v-adda61ec]{margin:0;font-size:16px}@media(max-width:768px){.editor-page[data-v-adda61ec]{padding:10px}.page-header[data-v-adda61ec]{flex-direction:column;gap:20px;padding:20px}.header-actions[data-v-adda61ec]{width:100%;justify-content:center}.config-row[data-v-adda61ec]{grid-template-columns:1fr;gap:16px}.page-title[data-v-adda61ec]{font-size:24px}.save-status[data-v-adda61ec]{bottom:10px;right:10px;left:10px;text-align:center;justify-content:center}}.el-input[data-v-adda61ec],.el-select[data-v-adda61ec]{border-radius:8px}.el-input__inner[data-v-adda61ec],.el-select .el-input__inner[data-v-adda61ec]{border-radius:8px;border:1px solid #dcdfe6;transition:all .3s ease}.el-input__inner[data-v-adda61ec]:focus,.el-select .el-input__inner[data-v-adda61ec]:focus{border-color:#667eea;box-shadow:0 0 0 2px rgba(102,126,234,.2)}.el-tag[data-v-adda61ec]{border-radius:6px;font-weight:500}.dynamic-content[data-v-adda61ec]{width:100%;margin:0 auto}.dynamic-content[data-v-adda61ec] table{border-collapse:collapse;width:100%;margin:16px 0}.dynamic-content[data-v-adda61ec] td,.dynamic-content[data-v-adda61ec] th{border:1px solid #d1d5db;padding:8px 12px;text-align:left}.dynamic-content[data-v-adda61ec] th{background:#f3f4f6;font-weight:700}.dynamic-content[data-v-adda61ec] b,.dynamic-content[data-v-adda61ec] strong{font-weight:700!important;color:inherit!important;font-style:normal!important}.dynamic-content[data-v-adda61ec] em,.dynamic-content[data-v-adda61ec] i{font-style:italic!important;color:inherit!important}.dynamic-content[data-v-adda61ec] a{color:#007bff!important;text-decoration:none!important}.dynamic-content[data-v-adda61ec] a:hover{text-decoration:underline!important}.no-scroll[data-v-adda61ec]{overflow:hidden!important}.editor-page[data-v-1104899b]{width:100%;margin:0 auto;padding:10px;background:#f8f9fa;min-height:60vh}.page-header[data-v-1104899b]{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;padding:30px;border-radius:12px;margin-bottom:24px;display:flex;justify-content:space-between;align-items:flex-start;box-shadow:0 8px 32px rgba(102,126,234,.3)}.header-left[data-v-1104899b]{flex:1}.title-section[data-v-1104899b]{display:flex;align-items:center;margin-bottom:12px}.title-icon[data-v-1104899b]{font-size:28px;margin-right:12px;color:gold}.page-title[data-v-1104899b]{font-size:28px;font-weight:700;margin:0;text-shadow:0 2px 4px rgba(0,0,0,.1)}.page-description[data-v-1104899b]{font-size:16px;opacity:.9;margin:0;line-height:1.6}.header-actions[data-v-1104899b]{display:flex;gap:12px;flex-wrap:wrap}.header-actions .el-button[data-v-1104899b]{border-radius:8px;font-weight:500;padding:12px 20px;box-shadow:0 4px 12px rgba(0,0,0,.15);transition:all .3s ease}.header-actions .el-button[data-v-1104899b]:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.2)}.content-section[data-v-1104899b]{width:100%;height:80%;overflow-y:auto;padding:10px}.config-section[data-v-1104899b]{background:#fff;border-radius:12px;padding:24px;margin-bottom:24px;box-shadow:0 4px 20px rgba(0,0,0,.08);border:1px solid #e9ecef}.section-header[data-v-1104899b]{display:flex;align-items:center;margin-bottom:24px;padding-bottom:16px;border-bottom:2px solid #f8f9fa;color:#2c3e50;font-weight:600;font-size:18px}.section-header i[data-v-1104899b]{margin-right:10px;color:#667eea;font-size:20px}.config-content[data-v-1104899b]{display:flex;flex-direction:column;gap:20px;margin-top:18px}.config-row[data-v-1104899b]{display:grid;grid-template-columns:1fr 1fr;gap:24px}.config-item[data-v-1104899b]{display:flex;flex-direction:column}.config-item label[data-v-1104899b]{margin-bottom:8px;font-weight:600;color:#495057;font-size:14px}.required[data-v-1104899b]:after{content:"*";color:#e74c3c;margin-left:4px;font-weight:700}.editor-section[data-v-1104899b]{background:#fff;border-radius:12px;padding:24px;box-shadow:0 4px 20px rgba(0,0,0,.08);border:1px solid #e9ecef}.editor-container[data-v-1104899b]{border:1px solid #dcdfe6;border-radius:8px;overflow:hidden;background:#fff;min-height:650px;position:relative;z-index:1}[data-v-1104899b] .editor-container .w-e-text-container{min-height:600px!important;z-index:1!important;position:relative}[data-v-1104899b] .w-e-toolbar{z-index:10!important;position:relative}.editor-container .w-e-text[data-v-1104899b]{height:600px!important;min-height:600px!important}.save-status[data-v-1104899b]{position:fixed;bottom:20px;right:20px;background:#67c23a;color:#fff;padding:12px 20px;border-radius:8px;box-shadow:0 4px 12px rgba(103,194,58,.3);display:flex;align-items:center;gap:8px;font-size:14px;z-index:1000;animation:slideIn-1104899b .3s ease}@keyframes slideIn-1104899b{0%{transform:translateX(100%);opacity:0}to{transform:translateX(0);opacity:1}}.preview-dialog .el-dialog__body[data-v-1104899b]{padding:20px;max-height:70vh;overflow-y:auto;z-index:9999}.preview-dialog .el-dialog__header[data-v-1104899b]{background-color:#f8f9fa;border-bottom:1px solid #ebeef5}.preview-dialog .el-dialog__header .el-dialog__title[data-v-1104899b]{color:#333;font-weight:600}.preview-dialog .el-dialog__footer[data-v-1104899b]{background-color:#f8f9fa;border-top:1px solid #ebeef5;padding:15px 20px}.preview-dialog .el-dialog__footer .dialog-footer[data-v-1104899b]{text-align:right}.preview-dialog .el-dialog__footer .dialog-footer .el-button[data-v-1104899b]{border-radius:6px;padding:8px 15px;font-weight:500}.preview-dialog .el-dialog__footer .dialog-footer .el-button[data-v-1104899b]:first-child{margin-right:10px}.preview-dialog .el-dialog__footer .dialog-footer .el-button[data-v-1104899b]:last-child{background-color:#667eea;border-color:#667eea}.preview-dialog .el-dialog__footer .dialog-footer .el-button[data-v-1104899b]:last-child:hover{background-color:#5a67d8;border-color:#5a67d8}.preview-content[data-v-1104899b]{background:#fff;padding:20px}.preview-empty[data-v-1104899b]{text-align:center;padding:50px 20px;color:#95a5a6}.preview-empty i[data-v-1104899b]{font-size:48px;margin-bottom:15px;display:block}.preview-empty p[data-v-1104899b]{margin:0;font-size:16px}@media(max-width:768px){.editor-page[data-v-1104899b]{padding:10px}.page-header[data-v-1104899b]{flex-direction:column;gap:20px;padding:20px}.header-actions[data-v-1104899b]{width:100%;justify-content:center}.config-row[data-v-1104899b]{grid-template-columns:1fr;gap:16px}.page-title[data-v-1104899b]{font-size:24px}.save-status[data-v-1104899b]{bottom:10px;right:10px;left:10px;text-align:center;justify-content:center}}.el-input[data-v-1104899b],.el-select[data-v-1104899b]{border-radius:8px}.el-input__inner[data-v-1104899b],.el-select .el-input__inner[data-v-1104899b]{border-radius:8px;border:1px solid #dcdfe6;transition:all .3s ease}.el-input__inner[data-v-1104899b]:focus,.el-select .el-input__inner[data-v-1104899b]:focus{border-color:#667eea;box-shadow:0 0 0 2px rgba(102,126,234,.2)}.el-tag[data-v-1104899b]{border-radius:6px;font-weight:500}.dynamic-content[data-v-1104899b]{width:100%;margin:0 auto}.dynamic-content[data-v-1104899b] table{border-collapse:collapse;width:100%;margin:16px 0}.dynamic-content[data-v-1104899b] td,.dynamic-content[data-v-1104899b] th{border:1px solid #d1d5db;padding:8px 12px;text-align:left}.dynamic-content[data-v-1104899b] th{background:#f3f4f6;font-weight:700}.dynamic-content[data-v-1104899b] b,.dynamic-content[data-v-1104899b] strong{font-weight:700!important;color:inherit!important;font-style:normal!important}.dynamic-content[data-v-1104899b] em,.dynamic-content[data-v-1104899b] i{font-style:italic!important;color:inherit!important}.dynamic-content[data-v-1104899b] a{color:#007bff!important;text-decoration:none!important}.dynamic-content[data-v-1104899b] a:hover{text-decoration:underline!important}.no-scroll[data-v-1104899b]{overflow:hidden!important}.dataMain[data-v-81190992]{width:100%;background:#fff;background-image:url(/img/top.7f0acfc3.png);background-size:100% 30%;background-repeat:no-repeat;background-position:10% -15%;padding:0;margin:0;padding-top:60PX}.dataMain .content[data-v-81190992]{width:85%;min-height:300px;margin:0 auto;padding:20px;border-radius:5px}.dataMain .content .title[data-v-81190992]{font-size:30px;color:#651fff;font-weight:600}.dataMain .content .title span[data-v-81190992]{color:rgba(0,0,0,.7)}.dataMain .content .title2[data-v-81190992]{font-size:28px;color:rgba(0,0,0,.7);width:100%;text-align:center;letter-spacing:3px;color:#651fff;font-weight:600}.dataMain .content .topBox[data-v-81190992]{width:100%;min-height:230px;margin-top:50px;display:flex;justify-content:space-around;align-items:center}.dataMain .content .topBox .top[data-v-81190992]{width:360px;height:440px;border-radius:18px;box-shadow:0 0 5px 2px rgba(0,0,0,.1);transition:all .2s linear;padding:18px;box-shadow:0 0 5px 2px #d2c3ea;padding-top:30px}.dataMain .content .topBox .top h4[data-v-81190992]{color:#651fff;margin-top:18px}.dataMain .content .topBox .top p[data-v-81190992]{margin-top:10px;font-size:.9rem;line-height:25px}.dataMain .content .topBox .top .icon[data-v-81190992]{width:100%;text-align:center}.dataMain .content .topBox .top .icon img[data-v-81190992]{width:50px}.dataMain .content .currencyDisplay[data-v-81190992]{width:100%;min-height:300px;border-radius:5px;border:1px solid #ccc;margin-top:30px;padding:18PX 28px}.dataMain .content .currencyDisplay .currency[data-v-81190992]{width:100%;min-height:200px;padding:10px 0;margin-top:20px}.dataMain .content .currencyDisplay .currency h3[data-v-81190992]{margin-bottom:8px;color:rgba(0,0,0,.8);display:flex;align-items:center;text-transform:uppercase}.dataMain .content .currencyDisplay .currency h3 img[data-v-81190992]{width:25px;margin-right:8px}.dataMain .content .currencyDisplay .currency .describe[data-v-81190992]{width:100%;margin:10px 0;font-size:.9rem;padding-left:8px}.dataMain .content .currencyDisplay .currency .currencyTitle[data-v-81190992]{width:100%;height:60px;background:#d2c3ea;display:flex;justify-content:space-between;align-items:center;padding:0 18px;font-size:.95rem;border-radius:5px;overflow:hidden}.dataMain .content .currencyDisplay .currency .currencyTitle span[data-v-81190992]{width:15%}.dataMain .content .currencyDisplay .currency .currencyContent[data-v-81190992]{width:100%;min-height:60px;display:flex;justify-content:space-between;align-items:center;padding:0 18px;font-size:.9rem;border-bottom:1px solid #ccc}.dataMain .content .currencyDisplay .currency .currencyContent span[data-v-81190992]{width:15%}.dataMain .content .currencyDisplay .currency .charts[data-v-81190992]{width:100%;min-height:300px;padding:0 18px;text-align:center} \ No newline at end of file diff --git a/mining-pool/test/css/app-ca0caf25.a1364666.css.gz b/mining-pool/test/css/app-ca0caf25.a1364666.css.gz new file mode 100644 index 0000000..e2330db Binary files /dev/null and b/mining-pool/test/css/app-ca0caf25.a1364666.css.gz differ diff --git a/mining-pool/test/css/app-cfd820c8.2f7622f2.css b/mining-pool/test/css/app-cfd820c8.2f7622f2.css new file mode 100644 index 0000000..7b712ba --- /dev/null +++ b/mining-pool/test/css/app-cfd820c8.2f7622f2.css @@ -0,0 +1 @@ +@media screen and (min-width:220px)and (max-width:1279px){[data-v-0a0e912e]::-webkit-scrollbar{width:0!important;height:0}[data-v-0a0e912e]::-webkit-scrollbar-thumb{background-color:#d2c3e9;border-radius:20PX}[data-v-0a0e912e]::-webkit-scrollbar-track{background-color:#f0f0f0}.accountInformation[data-v-0a0e912e]{width:100%;height:33px!important;background:rgba(0,0,0,.5);position:fixed;top:61px!important;left:0;display:flex;align-items:center;padding:1% 5%;z-index:2001;line-height:33px!important}.accountInformation img[data-v-0a0e912e]{width:18px!important}.accountInformation i[data-v-0a0e912e]{color:#fff;font-size:.95rem!important;margin-left:10px}.accountInformation .coin[data-v-0a0e912e]{margin-left:5px;font-weight:600;color:#fff;text-transform:capitalize;font-size:.8rem!important}.accountInformation .ma[data-v-0a0e912e]{font-weight:400!important;color:#fff;margin-left:10px;font-size:.9rem!important}.profitTop[data-v-0a0e912e]{width:100%;height:auto;display:flex;flex-wrap:wrap;justify-content:space-around;padding-top:40px}.profitTop .box[data-v-0a0e912e]{width:45%;height:80px;background:#fff;margin-top:10px;display:flex;flex-direction:column;align-items:left;justify-content:space-around;padding:8px;font-size:.9rem;border-radius:5px;box-shadow:0 0 3px 1px #ccc}.profitTop .accountBalance[data-v-0a0e912e]{width:95%;display:flex;justify-content:space-between;padding:15px 15px;background:#fff;margin:0 auto;margin-top:18px;border-radius:5px;box-shadow:0 0 3px 1px #ccc}.profitTop .accountBalance .box2[data-v-0a0e912e]{display:flex;flex-direction:column;align-items:left;font-size:.9rem}.profitTop .accountBalance .el-button[data-v-0a0e912e]{background:#661fff;color:#fff}.profitBtm2[data-v-0a0e912e]{width:95%;height:400px;margin:0 auto;margin-top:18px;border-radius:5px;box-shadow:0 0 3px 1px #ccc;padding:8px;font-size:.95rem;background:#fff}.profitBtm2 .right[data-v-0a0e912e]{width:100%;height:95%;background:#fff;transition:all .2s linear}.profitBtm2 .right .intervalBox[data-v-0a0e912e]{display:flex;align-items:center;justify-content:space-between;padding:5px 10px}.profitBtm2 .right .intervalBox .title[data-v-0a0e912e]{text-align:center;font-size:.95rem;color:rgba(0,0,0,.8)}.profitBtm2 .right .intervalBox .times[data-v-0a0e912e]{display:flex;align-items:center;justify-content:space-between;border-radius:20px;padding:1px 1px;border:1px solid #5721e4;cursor:pointer;font-size:.8rem;margin-top:5px}.profitBtm2 .right .intervalBox .times span[data-v-0a0e912e]{min-width:55px;text-align:center;border-radius:20px;margin:0}.profitBtm2 .right .intervalBox .timeActive[data-v-0a0e912e]{background:#7245e8;color:#fff}.barBox[data-v-0a0e912e]{width:95%;height:400px;margin:0 auto;margin-top:18px;border-radius:5px;box-shadow:0 0 3px 1px #ccc;font-size:.95rem;background:#fff}.barBox .lineBOX[data-v-0a0e912e]{width:100%;height:98%;padding:10px 20px;transition:all .2s linear}.barBox .lineBOX .intervalBox[data-v-0a0e912e]{font-size:.9rem}.barBox .lineBOX .intervalBox .title[data-v-0a0e912e]{text-align:left;font-size:.95rem;color:rgba(0,0,0,.8)}.barBox .lineBOX .intervalBox .timesBox[data-v-0a0e912e]{width:100%;text-align:right;display:flex;justify-content:right}.barBox .lineBOX .intervalBox .timesBox .times2[data-v-0a0e912e]{max-width:47%;display:flex;align-items:center;justify-content:space-between;border-radius:20px;padding:1px 1px;border:1px solid #5721e4;font-size:.8rem;margin-top:5px}.barBox .lineBOX .intervalBox .timesBox .times2 span[data-v-0a0e912e]{text-align:center;padding:0 15px;border-radius:20px;margin:0}.barBox .lineBOX .intervalBox .timeActive[data-v-0a0e912e]{background:#7245e8;color:#fff}.searchBox[data-v-0a0e912e]{width:92%;border:2px solid #641fff;height:30px;display:flex;align-items:center;justify-content:space-between;border-radius:25px;overflow:hidden;margin:0 auto;margin-top:25px}.searchBox .inout[data-v-0a0e912e]{border:none;outline:none;padding:0 10px;background:transparent}.searchBox i[data-v-0a0e912e]{width:15%;height:101%;background:#641fff;color:#fff;font-size:1.2em;line-height:25px;text-align:center}.top3Box[data-v-0a0e912e]{margin-top:8px!important;width:100%;display:flex;justify-content:center;flex-direction:column;align-items:center;padding:0 1%;padding-bottom:5%;font-size:.95rem}.top3Box .tabPageBox[data-v-0a0e912e]{width:98%!important;display:flex;justify-content:center;flex-direction:column;margin-bottom:10px}.top3Box .tabPageBox .activeHeadlines[data-v-0a0e912e]{background:#651efe!important;color:#fff}.top3Box .tabPageBox .tabPageTitle[data-v-0a0e912e]{width:100%!important;height:60px;display:flex;align-items:end;position:relative;padding:0!important;font-weight:600}.top3Box .tabPageBox .tabPageTitle .TitleS[data-v-0a0e912e]{position:relative;display:inline-block;filter:drop-shadow(0 -5px 10px rgba(0,0,0,.3));cursor:pointer;margin:0;background:transparent}.top3Box .tabPageBox .tabPageTitle .TitleS .trapezoid[data-v-0a0e912e]{display:inline-block;width:130px!important;height:40px;background:#f9bbd0;clip-path:polygon(22% 0,79% 0,94% 100%,10% 100%);display:flex;justify-content:center;align-items:center}.top3Box .tabPageBox .tabPageTitle .TitleS[data-v-0a0e912e]:hover{font-weight:700}.top3Box .tabPageBox .tabPageTitle .ces[data-v-0a0e912e]{width:10%;height:60px;position:absolute;left:50%;clip-path:polygon(22% 0,79% 0,94% 100%,10% 100%);filter:drop-shadow(20px 20px 10px 10px rgba(0,0,0,.6))!important}.top3Box .tabPageBox .tabPageTitle .minerTitle[data-v-0a0e912e]{z-index:99}.top3Box .tabPageBox .tabPageTitle .profitTitle[data-v-0a0e912e]{position:absolute;left:94px!important;z-index:98}.top3Box .tabPageBox .tabPageTitle .paymentTitle[data-v-0a0e912e]{position:absolute;left:188px!important;z-index:97}.top3Box .tabPageBox .page[data-v-0a0e912e]{width:100%;min-height:380px!important;box-shadow:5px 4px 8px 5px rgba(0,0,0,.1);z-index:999;margin-top:-3px;border-radius:20px;overflow:hidden;background:#fff;display:flex;flex-direction:column}.top3Box .tabPageBox .page .publicBox[data-v-0a0e912e]{min-height:300px!important}.top3Box .tabPageBox .page .minerPagination[data-v-0a0e912e]{margin:0 auto;margin-top:30px;margin-bottom:30px}.top3Box .tabPageBox .page .minerTitleBox[data-v-0a0e912e]{width:100%;height:40px;background:#efefef;padding:0!important}.top3Box .tabPageBox .page .minerTitleBox .TitleOnLine[data-v-0a0e912e]{width:100%!important;font-weight:600;display:flex;justify-content:left}.top3Box .tabPageBox .page .minerTitleBox .TitleOnLine span[data-v-0a0e912e]{display:inline-block;cursor:pointer;margin-left:18!important;padding:0!important;font-size:.9rem}.top3Box .tabPageBox .page .TitleAll[data-v-0a0e912e]{background:#d2c3ea;height:60px!important;display:flex;justify-content:left;align-items:center;padding:0!important;padding-left:5px!important}.top3Box .tabPageBox .page .TitleAll span[data-v-0a0e912e]:first-of-type{width:25%!important}.top3Box .tabPageBox .page .TitleAll span[data-v-0a0e912e]:nth-of-type(2){width:35%!important}.top3Box .tabPageBox .page .TitleAll span[data-v-0a0e912e]:nth-of-type(3){width:40%!important;padding-left:0!important}.top3Box .tabPageBox .page .TitleAll span[data-v-0a0e912e]{font-size:.9rem;text-align:left;padding-left:5px!important;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.top3Box .elTabs3[data-v-0a0e912e]{width:70%;position:relative}.top3Box .elTabs3 .searchBox[data-v-0a0e912e]{width:25%;position:absolute;right:0;top:-5px;z-index:99999;border:2px solid #641fff;height:30px;display:flex;align-items:center;justify-content:space-between;border-radius:25px;overflow:hidden}.top3Box .elTabs3 .searchBox .ipt[data-v-0a0e912e]{border:none;outline:none;padding:0 10px}.top3Box .elTabs3 .searchBox i[data-v-0a0e912e]{width:15%;height:101%;background:#641fff;color:#fff;font-size:1.2em;line-height:25px;text-align:center}.top3Box .elTabs3 .minerTabs[data-v-0a0e912e]{width:98%;margin-left:2%;margin-top:1%;min-height:600px}.top3Box .accordionTitle[data-v-0a0e912e]{width:100%;display:flex;justify-content:left;align-items:center;padding:0 20px}.top3Box .accordionTitle span[data-v-0a0e912e]{width:25%;text-align:left}.top3Box .accordionTitleAll[data-v-0a0e912e]{width:100%;display:flex;justify-content:left;align-items:center;padding:0!important;padding-left:5px!important}.top3Box .accordionTitleAll span[data-v-0a0e912e]:first-of-type{width:25%!important}.top3Box .accordionTitleAll span[data-v-0a0e912e]:nth-of-type(2){width:35%!important}.top3Box .accordionTitleAll span[data-v-0a0e912e]:nth-of-type(3){width:40%!important}.top3Box .accordionTitleAll span[data-v-0a0e912e]{font-size:.8rem;text-align:center;padding-left:5px!important;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.top3Box .Title[data-v-0a0e912e]{height:60px;background:#d2c3ea;border-radius:5px;display:flex;justify-content:left;align-items:center;padding:0 30px}.top3Box .Title span[data-v-0a0e912e]{width:24.5%;color:#433278;text-align:left}.top3Box .totalTitleAll[data-v-0a0e912e]{height:40px!important;display:flex;justify-content:left;align-items:center;padding:0!important;background:#efefef;padding-left:5px!important}.top3Box .totalTitleAll span[data-v-0a0e912e]:first-of-type{width:25%!important}.top3Box .totalTitleAll span[data-v-0a0e912e]:nth-of-type(2){width:35%!important}.top3Box .totalTitleAll span[data-v-0a0e912e]:nth-of-type(3){width:40%!important}.top3Box .totalTitleAll span[data-v-0a0e912e]{font-size:.8rem;text-align:center;padding-left:5px!important;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.top3Box .totalTitle[data-v-0a0e912e]{height:60px;display:flex;justify-content:left;align-items:center;padding:0 20px;background:#efefef}.top3Box .totalTitle span[data-v-0a0e912e]{width:24.25%;text-align:left}.top3Box .miningMachine[data-v-0a0e912e]{background:#fff;box-shadow:0 0 3px 1px #ccc;overflow:hidden;border-radius:5px}.top3Box .miningMachine .belowTable[data-v-0a0e912e]{border-radius:5px!important;width:100%!important;margin-bottom:20px!important}.top3Box .payment .belowTable[data-v-0a0e912e]{box-shadow:0 0 3px 1px #ccc}.top3Box .payment .belowTable .table-title[data-v-0a0e912e]{height:50px;display:flex;align-items:center;background:#d2c3ea;color:#433278;font-weight:600;width:100%;font-size:.8rem!important;overflow:hidden}.top3Box .payment .belowTable .table-title span[data-v-0a0e912e]{display:inline-block;text-align:left}.top3Box .payment .belowTable .table-title span[data-v-0a0e912e]:first-of-type{width:200px;padding-left:10px}.top3Box .payment .belowTable .table-title span[data-v-0a0e912e]:nth-of-type(2){width:300px;text-align:left}.top3Box .payment .belowTable .table-title span[data-v-0a0e912e]:nth-of-type(3){width:300px}.top3Box .payment .belowTable .el-collapse[data-v-0a0e912e]{width:100%;max-height:500px;overflow-y:auto;min-height:200px}.top3Box .payment .belowTable .paymentCollapseTitle[data-v-0a0e912e]{display:flex;justify-content:left;align-items:center;width:100%;overflow:hidden}.top3Box .payment .belowTable .paymentCollapseTitle span[data-v-0a0e912e]{display:inline-block;text-align:left}.top3Box .payment .belowTable .paymentCollapseTitle span[data-v-0a0e912e]:first-of-type{width:200px;padding-left:10px}.top3Box .payment .belowTable .paymentCollapseTitle span[data-v-0a0e912e]:nth-of-type(2){width:300px}.top3Box .payment .belowTable .paymentCollapseTitle span[data-v-0a0e912e]:nth-of-type(3){width:260px}.top3Box .payment .belowTable .dropDownContent[data-v-0a0e912e]{width:100%;padding:0 10px;word-wrap:break-word}.top3Box .payment .belowTable .dropDownContent div[data-v-0a0e912e]{margin-top:8px}.top3Box .payment .belowTable .copy[data-v-0a0e912e]{padding:0 5px;display:inline-block;cursor:pointer;border:1px solid #d1c2e9;border-radius:5px;margin-left:10px;font-size:.8rem}.el-collapse[data-v-0a0e912e]{max-height:500px!important;overflow-y:auto}.table-item[data-v-0a0e912e]{display:flex;height:59px;width:100%;align-items:center;justify-content:space-around;padding:8px}.table-item div[data-v-0a0e912e]{width:50%;display:flex;align-items:center;flex-direction:column;justify-content:space-around;height:100%}.table-item div p[data-v-0a0e912e]{text-align:left}.table-itemOn[data-v-0a0e912e]{display:flex;height:59px;width:100%;align-items:center;justify-content:left;padding:8px}.table-itemOn div[data-v-0a0e912e]{width:50%;display:flex;align-items:left;flex-direction:column;justify-content:space-around;height:100%}.table-itemOn div p[data-v-0a0e912e]{text-align:left}.chartTitle[data-v-0a0e912e]{padding-left:3%;font-weight:600;color:#7245e8;color:rgba(0,0,0,.6);font-size:.9rem!important}[data-v-0a0e912e] .el-collapse-item__header{height:45px!important}.belowTable[data-v-0a0e912e]{width:99%;display:flex;flex-direction:column;align-items:center;border-radius:10px;overflow:hidden;margin:0 auto;padding:0;margin-top:-1px;margin-bottom:50px}.belowTable ul[data-v-0a0e912e]{width:100%;min-height:200px;max-height:690px;padding:0;overflow:hidden;overflow-y:auto;margin:0;margin-bottom:50px}.belowTable ul .table-title[data-v-0a0e912e]{position:sticky;top:0;background:#d2c3ea;padding:0 5px!important;color:#433278;font-weight:600;height:50px!important}.belowTable ul li[data-v-0a0e912e]{width:100%;list-style:none;display:flex;justify-content:space-around;align-items:center;height:40px!important;background:#f8f8fa}.belowTable ul li span[data-v-0a0e912e]{width:33.3333333333%!important;font-size:.8rem!important;text-align:center;word-wrap:break-word;overflow-wrap:break-word;white-space:normal}.belowTable ul li[data-v-0a0e912e]:nth-child(2n){background-color:#fff;background:#f8f8fa}.belowTable ul .currency-list[data-v-0a0e912e]{background:#efefef;padding:0!important;background:#f8f8fa;margin-top:5px!important;border:1px solid #efefef;color:rgba(0,0,0,.9)}.belowTable ul .currency-list .txidBox[data-v-0a0e912e]{display:flex;justify-content:left;box-sizing:border-box}.belowTable ul .currency-list .txidBox span[data-v-0a0e912e]:first-of-type{width:50%;text-align:right;display:inline-block;box-sizing:border-box;margin-right:10px}.belowTable ul .currency-list .txid[data-v-0a0e912e]{border-left:2px solid rgba(0,0,0,.1);margin-left:5px}.belowTable ul .currency-list .txid[data-v-0a0e912e]:hover{cursor:pointer;color:#2889fc;font-weight:600}[data-v-0a0e912e] .el-pager li{min-width:19px}[data-v-0a0e912e] .el-pagination .el-select .el-input{margin:0}[data-v-0a0e912e] .el-pagination .btn-next{padding:0!important;min-width:auto}}.activeState[data-v-0a0e912e]{color:red!important}.sort[data-v-0a0e912e]{font-size:.95rem;cursor:pointer;color:#1e52e8}.sort[data-v-0a0e912e]:hover{color:#433299}.boxTitle[data-title][data-v-0a0e912e]{position:relative;display:inline-block}.boxTitle[data-title][data-v-0a0e912e]:hover:after{opacity:1;transition:all .1s ease .5s;visibility:visible}.boxTitle[data-title][data-v-0a0e912e]:after{min-width:180px;max-width:300px;content:attr(data-title);position:absolute;padding:5px 10px;right:28px;border-radius:4px;color:hsla(0,0%,100%,.8);background-color:rgba(80,79,79,.8);box-shadow:0 0 4px rgba(0,0,0,.16);font-size:.8rem;visibility:hidden;opacity:0;text-align:center;z-index:999}[data-v-0a0e912e] .el-collapse-item__header{background:transparent;height:60px}.item-even[data-v-0a0e912e]{background-color:#fff}.item-odd[data-v-0a0e912e]{background-color:#efefef}.miningAccount[data-v-0a0e912e]{width:100%;margin:0 auto;display:flex;flex-direction:column;justify-content:center;align-items:center;background:#fff;background-image:url(/img/top.7f0acfc3.png);background-size:100% 30%;background-repeat:no-repeat;background-position:0 -8%;padding-top:60px}.accountInformation[data-v-0a0e912e]{width:100%;height:30px;background:rgba(0,0,0,.5);position:fixed;top:8%;left:0;display:flex;align-items:center;padding:1% 5%;z-index:2001}.accountInformation img[data-v-0a0e912e]{width:23px}.accountInformation i[data-v-0a0e912e]{color:#fff;font-size:1.5em;margin-left:10px}.accountInformation .coin[data-v-0a0e912e]{margin-left:5px;font-weight:600;color:#fff;text-transform:capitalize}.accountInformation .ma[data-v-0a0e912e]{font-weight:600;color:#fff;margin-left:10px}.DropDownChart[data-v-0a0e912e]{width:100%;height:500px}.circularDots2[data-v-0a0e912e],.circularDots3.circularDots3[data-v-0a0e912e]{width:11px!important;height:11px!important;border-radius:50%;display:inline-block;border:2px solid #ccc}.circularDots3.circularDots3[data-v-0a0e912e]{margin:0;padding:0!important}.activeCircular[data-v-0a0e912e]{width:11px!important;height:11px!important;border-radius:50%;border:none!important;background:radial-gradient(circle at center,#ebace3,#9754f1)}.chartTitle[data-v-0a0e912e]{padding-left:3%;font-size:1.3em;font-weight:600;color:#7245e8;color:rgba(0,0,0,.6)}.circularDots[data-v-0a0e912e]{display:inline-block;width:10px;height:10px;border-radius:50%;background:radial-gradient(circle at center,#ebace3,#9754f1)}.circularDotsOnLine[data-v-0a0e912e]{display:inline-block;width:8px;background:#17cac7;height:8px;border-radius:50%}.circularDotsOffLine[data-v-0a0e912e]{display:inline-block;width:8px;background:#ff6565;height:8px;border-radius:50%}.profitBox[data-v-0a0e912e]{width:70%;min-height:650px;padding:20px 1%}.profitBox .paymentSettingBth[data-v-0a0e912e]{width:100%;text-align:right;margin-top:18px}.profitBox .paymentSettingBth .el-button[data-v-0a0e912e]{background:#7245e8;color:#fff;padding:13px 40px;border-radius:8px}.profitBox .profitTop[data-v-0a0e912e]{display:flex;min-height:20%;align-items:center;justify-content:space-between;margin:0 auto;font-size:.95rem}.profitBox .profitTop .box[data-v-0a0e912e]{width:230px;height:100px;background:#fff;box-shadow:0 0 10px 1px #ccc;border-radius:3%;transition:all .2s linear;padding:0;margin-left:8px}.profitBox .profitTop .box .paymentSettings[data-v-0a0e912e]{display:flex}.profitBox .profitTop .box .paymentSettings span[data-v-0a0e912e]{width:45%;background:#661fff;color:#fff;border-radius:5px;cursor:pointer;text-align:center;padding:0;display:inline-block;line-height:25px}.profitBox .profitTop .box .paymentSettings span[data-v-0a0e912e]:hover{background:#7a50e7;color:#fff}.profitBox .profitTop .box span[data-v-0a0e912e]{display:inline-block;width:100%;height:50%;display:flex;align-items:center;padding:0 20px}.profitBox .profitTop .box span span[data-v-0a0e912e]{width:8%}.profitBox .profitTop .box span img[data-v-0a0e912e]{width:18px;margin-left:5px}.profitBox .profitTop .box .text[data-v-0a0e912e]{justify-content:right;font-weight:600}.profitBox .profitTop .box[data-v-0a0e912e]:hover{box-shadow:10px 5px 10px 3px #e4dbf3}.profitBox .profitBtm[data-v-0a0e912e]{height:600px;width:100%;display:flex;align-items:center;justify-content:space-between}.profitBox .profitBtm .left[data-v-0a0e912e]{width:23%;height:90%;background:#fff;box-shadow:0 0 5px 2px #ccc;border-radius:3%;display:flex;flex-direction:column}.profitBox .profitBtm .left .box[data-v-0a0e912e]{width:100%;height:80%;background:#fff;border-radius:3%}.profitBox .profitBtm .left .box span[data-v-0a0e912e]{display:inline-block;width:100%;height:50%;display:flex;align-items:center;padding:0 25px}.profitBox .profitBtm .left .box .text[data-v-0a0e912e]{justify-content:right;font-weight:600}.profitBox .profitBtm .left .bth[data-v-0a0e912e]{width:100%;text-align:center}.profitBox .profitBtm .left .bth .el-button[data-v-0a0e912e]{width:60%;background:#661fff;color:#fff}.profitBox .profitBtm .right[data-v-0a0e912e]{width:100%;height:90%;background:#fff;box-shadow:0 0 10px 3px #ccc;border-radius:15px;padding:10px 10px;transition:all .2s linear}.profitBox .profitBtm .right .intervalBox[data-v-0a0e912e]{display:flex;align-items:center;justify-content:space-between;padding:10px 20px;font-size:.9rem}.profitBox .profitBtm .right .intervalBox .title[data-v-0a0e912e]{text-align:center;font-size:1.1em}.profitBox .profitBtm .right .intervalBox .times[data-v-0a0e912e]{display:flex;align-items:center;justify-content:space-between;border-radius:20px;padding:1px 1px;border:1px solid #5721e4;cursor:pointer}.profitBox .profitBtm .right .intervalBox .times span[data-v-0a0e912e]{min-width:55px;text-align:center;border-radius:20px;margin:0}.profitBox .profitBtm .right .intervalBox .timeActive[data-v-0a0e912e]{background:#7245e8;color:#fff}.profitBox .profitBtm .right[data-v-0a0e912e]:hover{box-shadow:0 0 20px 3px #e4dbf3}.top1Box[data-v-0a0e912e]{width:90%;height:400px;background-image:linear-gradient(90deg,#1e52e8 0,#1e52e8 80%,#0bb7bf);border-radius:10px;color:#fff;font-size:1.3em;display:flex;flex-direction:column}.top1Box .top1BoxOne[data-v-0a0e912e]{height:12%;background:rgba(0,0,0,.3);border-radius:28px 1px 100px 1px;width:800px;padding:5px 20px;line-height:40px}.top1Box .top1BoxTwo[data-v-0a0e912e]{flex:1;width:100%;display:flex;flex-wrap:wrap;justify-content:left;align-items:center;padding:0 100px}.top1Box .top1BoxTwo div[data-v-0a0e912e]{display:flex;flex-direction:column}.top1Box .top1BoxTwo div .income[data-v-0a0e912e]{margin-top:20px;font-size:1.5em}.top1Box .top1BoxTwo .content[data-v-0a0e912e]{position:relative;padding:0 50px;width:25%}.top1Box .top1BoxTwo .iconLine[data-v-0a0e912e]{width:1px;background:hsla(0,0%,100%,.6);height:50%;position:absolute;right:0;top:25%}.top1Box .top1BoxThree[data-v-0a0e912e]{height:13%;background:rgba(0,0,0,.4);display:flex;justify-content:center;align-items:center}.top1Box .top1BoxThree .onlineSituation[data-v-0a0e912e]{width:50%;display:flex;justify-content:center;align-items:center;font-size:.8em}.top1Box .top1BoxThree .onlineSituation div[data-v-0a0e912e]{width:33.3333333333%;text-align:center}.top1Box .top1BoxThree .onlineSituation .whole[data-v-0a0e912e]{color:#fff}.top1Box .top1BoxThree .onlineSituation .onLine[data-v-0a0e912e]{color:#04c904}.top1Box .top1BoxThree .onlineSituation .off-line[data-v-0a0e912e]{color:#ef6565}.top2Box[data-v-0a0e912e]{margin-top:1%;width:70%;height:500px;display:flex;justify-content:center;margin-bottom:2%;padding:0 1%}.top2Box .lineBOX[data-v-0a0e912e]{width:100%;padding:10px 20px;border-radius:15px;box-shadow:0 0 10px 3px #ccc;transition:all .2s linear;background:#fff}.top2Box .lineBOX .intervalBox[data-v-0a0e912e]{display:flex;align-items:center;justify-content:space-between;padding:10px 20px;font-size:.9rem}.top2Box .lineBOX .intervalBox .title[data-v-0a0e912e]{text-align:center;font-size:1.1em}.top2Box .lineBOX .intervalBox .times[data-v-0a0e912e]{display:flex;align-items:center;justify-content:space-between;border-radius:20px;padding:1px 1px;border:1px solid #5721e4}.top2Box .lineBOX .intervalBox .times span[data-v-0a0e912e]{text-align:center;padding:0 15px;border-radius:20px;margin:0}.top2Box .lineBOX .intervalBox .timeActive[data-v-0a0e912e]{background:#7245e8;color:#fff}.top2Box .lineBOX[data-v-0a0e912e]:hover{box-shadow:0 0 20px 3px #e4dbf3}.top2Box .elTabs[data-v-0a0e912e]{width:100%;font-size:1em}.top2Box .intervalBox[data-v-0a0e912e]{display:flex;width:100%;justify-content:right}.top2Box .intervalBox span[data-v-0a0e912e]{margin-left:1%;cursor:pointer}.top2Box .intervalBox span[data-v-0a0e912e]:hover{color:#7245e8}.top3Box[data-v-0a0e912e]{margin-top:1%;width:100%;display:flex;justify-content:center;flex-direction:column;align-items:center;padding:0 1%;padding-bottom:5%;font-size:.95rem}.top3Box .tabPageBox[data-v-0a0e912e]{width:70%;display:flex;justify-content:center;flex-direction:column;margin-bottom:10px}.top3Box .tabPageBox .activeHeadlines[data-v-0a0e912e]{background:#651efe!important;color:#fff}.top3Box .tabPageBox .tabPageTitle[data-v-0a0e912e]{width:70%;height:60px;display:flex;align-items:end;position:relative;padding:0;padding-left:1%;font-weight:600}.top3Box .tabPageBox .tabPageTitle .TitleS[data-v-0a0e912e]{position:relative;display:inline-block;filter:drop-shadow(0 -5px 10px rgba(0,0,0,.3));cursor:pointer;margin:0;background:transparent}.top3Box .tabPageBox .tabPageTitle .TitleS .trapezoid[data-v-0a0e912e]{display:inline-block;width:150px;height:40px;background:#f9bbd0;clip-path:polygon(22% 0,79% 0,94% 100%,10% 100%);display:flex;justify-content:center;align-items:center}.top3Box .tabPageBox .tabPageTitle .TitleS[data-v-0a0e912e]:hover{font-weight:700}.top3Box .tabPageBox .tabPageTitle .ces[data-v-0a0e912e]{width:10%;height:60px;position:absolute;left:50%;clip-path:polygon(22% 0,79% 0,94% 100%,10% 100%);filter:drop-shadow(20px 20px 10px 10px rgba(0,0,0,.6))!important}.top3Box .tabPageBox .tabPageTitle .minerTitle[data-v-0a0e912e]{z-index:99}.top3Box .tabPageBox .tabPageTitle .profitTitle[data-v-0a0e912e]{position:absolute;left:120px;z-index:98}.top3Box .tabPageBox .tabPageTitle .paymentTitle[data-v-0a0e912e]{position:absolute;left:230px;z-index:97}.top3Box .tabPageBox .page[data-v-0a0e912e]{width:100%;min-height:730px;box-shadow:5px 4px 8px 5px rgba(0,0,0,.1);z-index:999;margin-top:-3px;border-radius:20px;overflow:hidden;background:#fff;display:flex;flex-direction:column}.top3Box .tabPageBox .page .publicBox[data-v-0a0e912e]{min-height:600px}.top3Box .tabPageBox .page .minerPagination[data-v-0a0e912e]{margin:0 auto;margin-top:30px;margin-bottom:30px}.top3Box .tabPageBox .page .minerTitleBox[data-v-0a0e912e]{width:100%;height:40px;background:#efefef;padding:0 30px;display:flex;align-items:center;justify-content:space-between}.top3Box .tabPageBox .page .minerTitleBox .TitleOnLine[data-v-0a0e912e]{width:60%;font-weight:600}.top3Box .tabPageBox .page .minerTitleBox .TitleOnLine span[data-v-0a0e912e]{display:inline-block;cursor:pointer;margin-left:20px;padding:0 5px;font-size:.9rem}.top3Box .tabPageBox .page .minerTitleBox .searchBox[data-v-0a0e912e]{width:260px;border:2px solid #641fff;height:30px;display:flex;align-items:center;justify-content:space-between;border-radius:25px;overflow:hidden;margin:0;margin-right:10px}.top3Box .tabPageBox .page .minerTitleBox .searchBox .inout[data-v-0a0e912e]{border:none;outline:none;padding:0 10px;background:transparent}.top3Box .tabPageBox .page .minerTitleBox .searchBox i[data-v-0a0e912e]{width:35px;height:29px;background:#641fff;color:#fff;font-size:1.2em;line-height:29px;text-align:center}.top3Box .elTabs3[data-v-0a0e912e]{width:70%;position:relative}.top3Box .elTabs3 .searchBox[data-v-0a0e912e]{width:25%;position:absolute;right:0;top:-5px;z-index:99999;border:2px solid #641fff;height:30px;display:flex;align-items:center;justify-content:space-between;border-radius:25px;overflow:hidden}.top3Box .elTabs3 .searchBox .ipt[data-v-0a0e912e]{border:none;outline:none;padding:0 10px}.top3Box .elTabs3 .searchBox i[data-v-0a0e912e]{width:15%;height:101%;background:#641fff;color:#fff;font-size:1.2em;line-height:25px;text-align:center}.top3Box .elTabs3 .minerTabs[data-v-0a0e912e]{width:98%;margin-left:2%;margin-top:1%;min-height:600px}.top3Box .accordionTitle[data-v-0a0e912e]{width:100%;display:flex;justify-content:left;align-items:center;padding:0 20px}.top3Box .accordionTitle span[data-v-0a0e912e]{width:25%;text-align:left}.top3Box .accordionTitleAll[data-v-0a0e912e]{width:100%;display:flex;justify-content:left;align-items:center;padding:0 20px}.top3Box .accordionTitleAll span[data-v-0a0e912e]{width:24%;text-align:left;padding-left:1.5%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.top3Box .Title[data-v-0a0e912e]{height:60px;background:#d2c3ea;border-radius:5px;display:flex;justify-content:left;align-items:center;padding:0 30px}.top3Box .Title span[data-v-0a0e912e]{width:24.5%;color:#433278;text-align:left}.top3Box .TitleAll[data-v-0a0e912e]{height:60px;background:#d2c3ea;border-radius:5px;display:flex;justify-content:left;align-items:center;padding:0 35px}.top3Box .TitleAll span[data-v-0a0e912e]{width:20%;color:#433278;text-align:left}.top3Box .totalTitleAll[data-v-0a0e912e]{height:60px;display:flex;justify-content:left;align-items:center;padding:0 35px;background:#efefef}.top3Box .totalTitleAll span[data-v-0a0e912e]{width:20%;text-align:left}.top3Box .totalTitle[data-v-0a0e912e]{height:60px;display:flex;justify-content:left;align-items:center;padding:0 20px;background:#efefef}.top3Box .totalTitle span[data-v-0a0e912e]{width:24.25%;text-align:left}.belowTable[data-v-0a0e912e]{width:99%;display:flex;flex-direction:column;align-items:center;border-radius:10px;overflow:hidden;margin:0 auto;padding:0;margin-top:-1px;margin-bottom:50px}.belowTable ul[data-v-0a0e912e]{width:100%;min-height:200px;max-height:690px;padding:0;overflow:hidden;overflow-y:auto;margin:0;margin-bottom:50px}.belowTable ul .table-title[data-v-0a0e912e]{position:sticky;top:0;background:#d2c3ea;padding:0 10px;color:#433278;font-weight:600;font-size:.95rem}.belowTable ul li[data-v-0a0e912e]{width:100%;list-style:none;display:flex;justify-content:space-around;align-items:center;height:60px;background:#f8f8fa}.belowTable ul li span[data-v-0a0e912e]{width:25%;font-size:.95rem;text-align:center;word-wrap:break-word;overflow-wrap:break-word;white-space:normal}.belowTable ul li span[data-v-0a0e912e]:nth-of-type(4){width:28%}.belowTable ul li[data-v-0a0e912e]:nth-child(2n){background-color:#fff;background:#f8f8fa}.belowTable ul .currency-list[data-v-0a0e912e]{background:#efefef;padding:10px 10px;background:#f8f8fa;margin-top:10px;border:1px solid #efefef;color:rgba(0,0,0,.9)}.belowTable ul .currency-list .txidBox[data-v-0a0e912e]{display:flex;justify-content:left;box-sizing:border-box}.belowTable ul .currency-list .txidBox span[data-v-0a0e912e]:first-of-type{width:50%;text-align:right;display:inline-block;box-sizing:border-box;margin-right:10px}.belowTable ul .currency-list .txid[data-v-0a0e912e]{border-left:2px solid rgba(0,0,0,.1);margin-left:5px}.belowTable ul .currency-list .txid[data-v-0a0e912e]:hover{cursor:pointer;color:#2889fc;font-weight:600}.currency-list2.currency-list2.currency-list2[data-v-0a0e912e]{background:#efefef;padding:10px 10px}.el-input-group__append button.el-button[data-v-0a0e912e],.el-input-group__append div.el-select .el-input__inner[data-v-0a0e912e],.el-input-group__append div.el-select:hover .el-input__inner[data-v-0a0e912e],.el-input-group__prepend button.el-button[data-v-0a0e912e],.el-input-group__prepend div.el-select .el-input__inner[data-v-0a0e912e],.el-input-group__prepend div.el-select:hover .el-input__inner[data-v-0a0e912e]{background:#631ffc;color:#fff}.offlineTime[data-v-0a0e912e]{display:flex;flex-direction:column;justify-content:center}.offlineTime span[data-v-0a0e912e]{width:100%!important;display:inline-block;line-height:15px!important}.loginPage[data-v-e3add720]{width:100%;height:100%;background-color:#fff;display:flex;justify-content:center;align-items:center;padding:100px 0;background-image:url(/img/logBg.3050d0aa.png);background-size:cover;background-repeat:no-repeat}.loginPage .loginModular[data-v-e3add720]{width:50%;height:85%;display:flex;border-radius:10px;overflow:hidden;box-shadow:0 0 20px 18px #d6d2ea}.loginPage .leftBox[data-v-e3add720]{width:47%;height:100%;background-image:linear-gradient(150deg,#18b7e6 -20%,#651fff 60%);position:relative}.loginPage .leftBox .logo[data-v-e3add720]{position:absolute;left:30px;top:18px;width:22%}.loginPage .leftBox img[data-v-e3add720]{width:100%;position:absolute;right:-16%;bottom:0;z-index:99}.el-form[data-v-e3add720]{width:90%;padding:0 20px 50px 20px}.el-form-item[data-v-e3add720]{width:100%}.loginBox[data-v-e3add720]{width:53%;height:100%;display:flex;justify-content:center;align-items:center;border-radius:10px;flex-direction:column;overflow:hidden;background:#fff;position:relative;padding:0 35px}.loginBox .demo-ruleForm[data-v-e3add720]{height:100%;padding-top:5%}.loginBox img[data-v-e3add720]{width:18%;position:absolute;top:20px;left:30px;cursor:pointer}.loginBox .closeBox[data-v-e3add720]{position:absolute;top:18px;right:30px;cursor:pointer}.loginBox .closeBox .close[data-v-e3add720]{font-size:1.3em}.loginBox .closeBox[data-v-e3add720]:hover{color:#661fff}.loginTitle[data-v-e3add720]{font-size:20px;font-weight:600;margin-bottom:30px;text-align:center}.loginColor[data-v-e3add720]{width:100%;height:15px;background:#661fff}.langBox[data-v-e3add720]{display:flex;justify-content:space-between;align-content:center}.registerBox[data-v-e3add720]{display:flex;justify-content:start;margin:0;font-size:12px;height:20px}.registerBox span[data-v-e3add720]{padding:5px 0;display:inline-block;height:100%;z-index:99}.registerBox span[data-v-e3add720]:hover{color:#661fff}.registerBox .noAccount[data-v-e3add720]:hover{color:#000}.registerBox .forget[data-v-e3add720]{margin-left:8px;cursor:pointer}.forget[data-v-e3add720]{margin-left:10px}.forgotPassword[data-v-e3add720]{display:inline-block;width:20%}.verificationCode[data-v-e3add720]{display:flex}.verificationCode .codeBtn[data-v-e3add720]{font-size:13px;margin-left:2px}@media screen and (min-width:220px)and (max-width:1279px){.mobileMain[data-v-e3add720]{width:100vw;min-height:100vh;background:#fff;background-image:url(/img/bgtop.d1ac5a03.svg);background-repeat:no-repeat;background-size:115%;background-position:49% 47%}.headerBox[data-v-e3add720]{width:100%;height:60px;display:flex;align-items:center;justify-content:space-between;padding:0 20px;box-shadow:0 0 2px 1px #ccc}.headerBox img[data-v-e3add720]{width:30px}.headerBox .title[data-v-e3add720]{font-weight:600}.imgTop[data-v-e3add720]{width:100%;display:flex;justify-content:center;margin-top:2%}.imgTop img[data-v-e3add720]{height:159px}.formInput[data-v-e3add720]{width:100%;display:flex;justify-content:center}.footer[data-v-e3add720]{width:100%;height:100px;background:#651fff}}.wscn-http404-container[data-v-a5129446]{display:flex;justify-content:center;align-items:center;height:100vh;width:100vw}.wscn-http404[data-v-a5129446]{position:relative;width:1200PX;padding:0 50PX;overflow:hidden}.wscn-http404 .pic-404[data-v-a5129446]{position:relative;float:left;width:600PX;overflow:hidden}.wscn-http404 .pic-404__parent[data-v-a5129446]{width:100%}.wscn-http404 .pic-404__child[data-v-a5129446]{position:absolute}.wscn-http404 .pic-404__child.left[data-v-a5129446]{width:80PX;top:17PX;left:220PX;opacity:0;animation-name:cloudLeft-a5129446;animation-duration:2s;animation-timing-function:linear;animation-fill-mode:forwards;animation-delay:1s}.wscn-http404 .pic-404__child.mid[data-v-a5129446]{width:46PX;top:10PX;left:420PX;opacity:0;animation-name:cloudMid-a5129446;animation-duration:2s;animation-timing-function:linear;animation-fill-mode:forwards;animation-delay:1.2s}.wscn-http404 .pic-404__child.right[data-v-a5129446]{width:62PX;top:100PX;left:500PX;opacity:0;animation-name:cloudRight-a5129446;animation-duration:2s;animation-timing-function:linear;animation-fill-mode:forwards;animation-delay:1s}@keyframes cloudLeft-a5129446{0%{top:17PX;left:220PX;opacity:0}20%{top:33PX;left:188PX;opacity:1}80%{top:81PX;left:92PX;opacity:1}to{top:97PX;left:60PX;opacity:0}}@keyframes cloudMid-a5129446{0%{top:10PX;left:420PX;opacity:0}20%{top:40PX;left:360PX;opacity:1}70%{top:130PX;left:180PX;opacity:1}to{top:160PX;left:120PX;opacity:0}}@keyframes cloudRight-a5129446{0%{top:100PX;left:500PX;opacity:0}20%{top:120PX;left:460PX;opacity:1}80%{top:180PX;left:340PX;opacity:1}to{top:200PX;left:300PX;opacity:0}}.wscn-http404 .bullshit[data-v-a5129446]{position:relative;float:left;width:300PX;padding:30PX 0;overflow:hidden}.wscn-http404 .bullshit__oops[data-v-a5129446]{font-size:32PX;font-weight:700;line-height:40PX;color:#1482f0;opacity:0;margin-bottom:20PX;animation-name:slideUp-a5129446;animation-duration:.5s;animation-fill-mode:forwards}.wscn-http404 .bullshit__headline[data-v-a5129446]{font-size:20PX;line-height:24PX;color:#222;font-weight:700;opacity:0;margin-bottom:10PX;animation-name:slideUp-a5129446;animation-duration:.5s;animation-delay:.1s;animation-fill-mode:forwards}.wscn-http404 .bullshit__info[data-v-a5129446]{font-size:13PX;line-height:21PX;color:gray;opacity:0;margin-bottom:30PX;animation-name:slideUp-a5129446;animation-duration:.5s;animation-delay:.2s;animation-fill-mode:forwards}.wscn-http404 .bullshit__return-home[data-v-a5129446]{display:block;float:left;width:110PX;height:36PX;background:#1482f0;border-radius:100PX;text-align:center;color:#fff;opacity:0;font-size:14PX;line-height:36PX;cursor:pointer;animation-name:slideUp-a5129446;animation-duration:.5s;animation-delay:.3s;animation-fill-mode:forwards}@keyframes slideUp-a5129446{0%{transform:translateY(60PX);opacity:0}to{transform:translateY(0);opacity:1}} \ No newline at end of file diff --git a/mining-pool/test/css/app-cfd820c8.2f7622f2.css.gz b/mining-pool/test/css/app-cfd820c8.2f7622f2.css.gz new file mode 100644 index 0000000..f2e9163 Binary files /dev/null and b/mining-pool/test/css/app-cfd820c8.2f7622f2.css.gz differ diff --git a/mining-pool/test/css/app-d87c119a.8d130cfb.css b/mining-pool/test/css/app-d87c119a.8d130cfb.css new file mode 100644 index 0000000..18cc2d3 --- /dev/null +++ b/mining-pool/test/css/app-d87c119a.8d130cfb.css @@ -0,0 +1 @@ +[data-v-2329c878]{margin:0;padding:0;box-sizing:border-box}.nav[data-v-2329c878]{z-index:1000;margin-right:8px;font-size:.9rem}.nav-item[data-v-2329c878]{position:relative;display:flex;align-items:center;justify-content:center;cursor:pointer;padding:0 10px}.nav-item .itemImg[data-v-2329c878]{width:20px;margin-right:5px}.nav-item .arrow[data-v-2329c878]{margin-left:5px;border:solid rgba(0,0,0,.3);border-width:0 1px 1px 0;display:inline-block;padding:3px;transform:rotate(45deg);transition:transform .3s}.nav-item .arrow.up[data-v-2329c878]{transform:rotate(-135deg)}.dropdown[data-v-2329c878]{position:absolute;top:47px;left:0;width:392px;background:#fff;border:1px solid #eee;border-radius:4px;padding:3px;display:none;flex-wrap:wrap;gap:1px;box-shadow:0 2px 12px 0 rgba(0,0,0,.1);z-index:999999}.dropdown.show[data-v-2329c878]{display:flex}.dropdown .option[data-v-2329c878]{width:76px;height:80px;background:#f5f5f5;cursor:pointer;transition:all .3s;border-radius:4px;overflow:hidden;text-align:center;padding:5px}.dropdown .optionActive[data-v-2329c878],.dropdown .option[data-v-2329c878]:hover{background:#e8e8e8;color:#6e3edb;border:1px solid #9d8ac9}.dropdownCoin[data-v-2329c878]{width:32px;margin:0}.dropdownText[data-v-2329c878]{width:100%;font-size:.8rem;text-align:center;margin:0;word-break:break-word;margin-top:5px}.headerBox[data-v-2329c878]{width:100%;font-size:.95rem;display:flex;justify-content:center}.miningAccountTitle[data-v-2329c878]:hover{color:#6e3edb!important}.hidden[data-v-2329c878]{display:block;opacity:1!important}.el-menu--horizontal>.el-submenu .el-submenu__title[data-v-2329c878]{color:#000}.el-menu--horizontal[data-v-2329c878]{background:transparent}.el-submenu[data-v-2329c878]:hover{background-color:transparent!important}.el-submenu.is-active[data-v-2329c878]:after{border-bottom:none!important;border-bottom-color:transparent!important;border:none!important;outline:none!important}.is-order[data-v-2329c878]{background:#21a0ff}.dropdownItem[data-v-2329c878]{display:flex;align-items:center}.dropdownItem img[data-v-2329c878]{margin-right:5px}.active[data-v-2329c878]{color:#6e3edb!important;font-weight:600}.whiteBg[data-v-2329c878]{background:hsla(0,0%,100%,.5)}.header[data-v-2329c878]{display:flex;justify-content:space-between;align-items:center;height:100%;width:95%}.logo[data-v-2329c878]{width:18%;height:100%;display:flex;justify-content:right;align-items:center;font-size:.9rem}.logo img[data-v-2329c878]{width:100px}.topMenu[data-v-2329c878]{width:80%;height:100%;display:flex;justify-content:end;align-items:center}.topMenu .afterLoggingIn[data-v-2329c878]{min-width:50%;display:flex;justify-content:right;align-items:center}.topMenu .afterLoggingIn .langBox[data-v-2329c878]{display:flex;justify-content:space-around;align-items:center;width:70px}.topMenu .afterLoggingIn .LangLine[data-v-2329c878]{width:1px;height:60%;background:#ccc;margin-right:8px}.topMenu .afterLoggingIn li[data-v-2329c878]{position:relative}.topMenu .afterLoggingIn .horizontalLine[data-v-2329c878]{width:100%;position:absolute;bottom:-10px;display:flex;justify-content:center;align-items:center;opacity:0;transition:all .3s linear}.topMenu .afterLoggingIn .horizontalLine .circular[data-v-2329c878]{width:5px;height:5px;background:#6e3edb;border-radius:50%}.topMenu .afterLoggingIn .horizontalLine .line[data-v-2329c878]{width:20px;height:5px;background:#6e3edb;margin-left:2px;border-radius:22px}.topMenu .notLoggedIn[data-v-2329c878]{width:40%}.topMenu .notLoggedIn li[data-v-2329c878]{margin-left:1%}.topMenu .notLoggedIn .langBox[data-v-2329c878]{display:flex;justify-content:space-around;align-items:center;width:20%}.topMenu .notLoggedIn .register.register[data-v-2329c878]{padding:1px 30px}.topMenu .notLoggedIn .LangLine[data-v-2329c878]{width:1px;height:60%;background:#ccc;margin-right:2%}.menuBox[data-v-2329c878]{min-width:42%!important;height:100%;display:flex;justify-content:end;align-items:center;margin:0}.menuBox li[data-v-2329c878]{list-style:none;height:45%;display:flex;justify-content:center;align-items:center;cursor:pointer;margin-left:3%;font-size:.9rem;position:relative;text-align:center;min-width:61px}.menuBox li[data-v-2329c878]:hover{color:#6e3edb;font-weight:600}.menuBox .login[data-v-2329c878]{padding:2px 18px}.menuBox .login[data-v-2329c878]:hover{color:#21a0ff;border:1px solid #21a0ff;border-radius:10px}.menuBox .register[data-v-2329c878]{background:#d2c3ea;border-radius:25px;padding:0 25px}.menuBox .register[data-v-2329c878]:hover{color:#000;color:#fe4886}.el-submenu__title[data-v-2329c878]:hover{background-color:transparent!important;background:transparent!important;color:#6e3edb!important}.el-menu-item.is-active[data-v-2329c878]:not(.is-index){border-bottom:none!important}.el-submenu__title[data-v-2329c878]{margin-right:10px}.el-submenu.is-active[data-v-2329c878],.el-submenu__title[data-v-2329c878]{border:none!important;border-bottom:none!important;border-bottom-color:transparent!important}.el-menu--horizontal>.el-submenu.is-active .el-submenu__title[data-v-2329c878]{border-bottom:0!important}.el-submenu.is-active .el-submenu__title[data-v-2329c878]{border-bottom-color:transparent!important}.el-menu.el-menu--horizontal[data-v-2329c878]{border-bottom:0!important}@media screen and (min-width:220px)and (max-width:1279px){.contentMain[data-v-2e905810]{background-image:none!important}.contentPage[data-v-2e905810]{min-height:200px!important}.moveFooterBox[data-v-2e905810]{width:100%;background-image:url(/img/homebgbtm.8b659935.png);background-repeat:no-repeat;background-size:100% 90%}.footerBox[data-v-2e905810]{align-items:flex-start!important;margin:0!important;display:flex;flex-direction:column;height:auto!important;padding-left:0!important}.footerBox .logoBox[data-v-2e905810]{width:100%;height:100px;display:flex;flex-direction:column;justify-content:center;padding:18px 18px;border-bottom:1px solid #ccc}.footerBox .logoBox .logoImg[data-v-2e905810]{width:140px}.footerBox .logoBox .copyright[data-v-2e905810]{margin-top:15px;font-size:.8rem;color:rgba(0,0,0,.7)}.footerBox .missionBox[data-v-2e905810]{width:100%;min-height:130px;border-bottom:1px solid #ccc;padding:10px 18px}.footerBox .missionBox .mission[data-v-2e905810]{font-size:.9rem;font-weight:600}.footerBox .missionBox .missionText[data-v-2e905810]{margin-top:18px;font-size:.85rem;color:rgba(0,0,0,.7);padding-left:18px;cursor:pointer}.footerBox .missionBox .FMenu[data-v-2e905810]{width:100%;padding-left:18px;font-size:.85rem;color:rgba(0,0,0,.8);margin-top:18px}.footerBox .missionBox .FMenu p[data-v-2e905810]{line-height:30px;width:50%}.footerBox .missionBox .FMenu p a[data-v-2e905810]:nth-of-type(2){margin-left:28%}.footerBox .missionBox .FMenu p span[data-v-2e905810]{cursor:pointer}}.contentPage[data-v-2e905810]{min-height:630px}.contentMain[data-v-2e905810]{width:100%;min-height:100vh;background-image:url(/img/bktop.91a777f0.png);background-size:100% 28%;background-repeat:no-repeat;background-position:0 -6%;position:relative;overflow-x:hidden;overflow-y:auto}.header[data-v-2e905810]{display:flex;justify-content:space-between;align-items:center;height:100%;width:95%;padding:0 5%}.logo[data-v-2e905810]{width:18%;height:100%;display:flex;justify-content:center;align-items:center;font-size:1.8em}.logo img[data-v-2e905810]{width:38%}.topMenu[data-v-2e905810]{width:80%;height:100%;display:flex;justify-content:end;align-items:center}.topMenu .afterLoggingIn[data-v-2e905810]{width:35%}.topMenu .afterLoggingIn .langBox[data-v-2e905810]{display:flex;justify-content:space-around;align-items:center;width:20%}.topMenu .afterLoggingIn .LangLine[data-v-2e905810]{width:1px;height:60%;background:#ccc;margin-right:2%}.topMenu .notLoggedIn[data-v-2e905810]{width:35%}.topMenu .notLoggedIn .langBox[data-v-2e905810]{display:flex;justify-content:space-around;align-items:center;width:20%}.topMenu .notLoggedIn .LangLine[data-v-2e905810]{width:1px;height:60%;background:#ccc;margin-right:2%}.menuBox[data-v-2e905810]{width:50%;height:100%;display:flex;justify-content:end;align-items:center;margin:0}.menuBox li[data-v-2e905810]{list-style:none;height:45%;display:flex;justify-content:center;align-items:center;cursor:pointer;margin-left:8%}.menuBox li[data-v-2e905810]:hover{color:#000}.menuBox .login[data-v-2e905810]{padding:2px 18px}.menuBox .login[data-v-2e905810]:hover{color:#21a0ff;border:1px solid #21a0ff;border-radius:10px}.menuBox .register[data-v-2e905810]{background:#d2c3ea;border-radius:25px;padding:0 25px}.menuBox .register[data-v-2e905810]:hover{color:#000;color:#fe4886}.whiteBg[data-v-2e905810]{background:hsla(0,0%,100%,.2)}.head[data-v-2e905810]{position:fixed;top:0;left:0}.contentBox[data-v-2e905810]{width:100%;display:flex;justify-content:start;align-items:center;flex-direction:column;padding-top:5%}.contentBox .currencyBox[data-v-2e905810]{width:85%;display:flex;justify-content:center;align-items:center}.contentBox .currencyBox .sunCurrency[data-v-2e905810]{display:flex;justify-content:space-around;align-items:center;flex-direction:column;padding:8px 10px;border-radius:22px;cursor:pointer;font-weight:600;margin-left:10px;font-size:1em}.contentBox .currencyBox .sunCurrency img[data-v-2e905810]{width:35px;margin-left:5%}.contentBox .currencyBox .sunCurrency span[data-v-2e905810]{text-transform:uppercase;margin-top:10px}.contentBox .currencyBox .sunCurrency[data-v-2e905810]:hover{background:rgba(223,83,52,.05);font-size:12px;box-shadow:0 0 5px 3px rgba(223,83,52,.05)}.contentBox .currencyDescription[data-v-2e905810]{width:85%;display:flex;justify-content:center}.contentBox .currencyDescription .currencyDescriptionBox[data-v-2e905810]{width:90%;height:600px;box-shadow:0 0 3px 1px #ccc;margin-top:2%;display:flex;justify-content:start;flex-direction:column;align-items:center;position:relative}.contentBox .currencyDescription .currencyDescriptionBox .titleBOX[data-v-2e905810]{display:flex;justify-content:space-around;align-items:center;padding:20px 10px;width:100%;border-bottom:1px solid rgba(0,0,0,.1)}.contentBox .currencyDescription .currencyDescriptionBox .titleBOX h3[data-v-2e905810]{width:90%;font-size:1.5em;text-align:center}.contentBox .currencyDescription .currencyDescriptionBox .titleBOX .titleCurrency[data-v-2e905810]:hover{background:rgba(223,83,52,.05);font-size:13px;box-shadow:0 0 5px 3px rgba(223,83,52,.05)}.contentBox .currencyDescription .currencyDescriptionBox .titleCurrency[data-v-2e905810]{display:flex;justify-content:space-around;align-items:center;flex-direction:column;padding:8px 10px;border-radius:22px;font-weight:600;margin-left:30px;font-size:1.1em;margin-right:1%;position:absolute;top:10px;right:60px}.contentBox .currencyDescription .currencyDescriptionBox .titleCurrency img[data-v-2e905810]{width:35px;margin-left:1%}.contentBox .currencyDescription .currencyDescriptionBox .titleCurrency span[data-v-2e905810]{margin-top:10px;text-transform:uppercase}.contentBox .currencyDescription .currencyDescriptionBox .computationalPower[data-v-2e905810]{height:15%;width:100%;display:flex;justify-content:space-around;align-items:center;font-size:1.3em;margin:10px 10px}.contentBox .currencyDescription .currencyDescriptionBox .computationalPower .PowerBox[data-v-2e905810]{display:flex;flex-direction:column;justify-content:center;align-content:center}.contentBox .currencyDescription .currencyDescriptionBox .computationalPower span[data-v-2e905810]{cursor:pointer;width:100%;text-align:center}.contentBox .currencyDescription .currencyDescriptionBox .computationalPower span[data-v-2e905810]:hover{color:#df5334;font-weight:600}.contentBox .currencyDescription .currencyDescriptionBox .computationalPower .Power[data-v-2e905810]{font-size:1.5em}.contentBox .currencyDescription .currencyDescriptionBox p[data-v-2e905810]{width:80%;margin:0;font-size:1em;margin-top:3px;margin-left:5%;text-align:left;height:8%;padding:0 10px;line-height:50px;box-shadow:0 0 2px 1px #ccc;margin-top:1%}.contentBox .reportBlock[data-v-2e905810]{width:85%;display:flex;justify-content:center;height:1200px;margin-top:1%}.contentBox .reportBlock .reportBlockBox[data-v-2e905810]{width:90%;height:100%;box-shadow:0 0 3px 1px #ccc;background:#f5f9fd;display:flex;justify-content:space-between;flex-direction:column;align-items:center;padding:10px 10px}.contentBox .reportBlock .reportBlockBox .top[data-v-2e905810]{width:100%;height:18%;display:flex;align-items:center;justify-content:center;border-bottom:1px solid rgba(0,0,0,.1);padding:20px 0;color:#fff;font-weight:600;font-size:1.2em}.contentBox .reportBlock .reportBlockBox .top div[data-v-2e905810]{width:20%;background:#2eaeff;height:100%;display:flex;align-items:center;justify-content:space-around;margin-left:3%;border-radius:5%}.contentBox .reportBlock .reportBlockBox .belowTable[data-v-2e905810]{width:100%;height:80%;display:flex;justify-content:center;flex-direction:column;align-items:center}.contentBox .reportBlock .reportBlockBox .belowTable ul[data-v-2e905810]{width:100%;height:90%;padding:0;overflow:hidden;overflow-y:auto}.contentBox .reportBlock .reportBlockBox .belowTable ul .table-title[data-v-2e905810]{position:sticky;top:0;background:#f5f9fd;padding:0 10px}.contentBox .reportBlock .reportBlockBox .belowTable ul li[data-v-2e905810]{width:100%;list-style:none;display:flex;justify-content:space-around;align-items:center;height:7%}.contentBox .reportBlock .reportBlockBox .belowTable ul li span[data-v-2e905810]{height:100%;width:20%;line-height:55px;font-size:1.1em;font-weight:600;text-align:center}.contentBox .reportBlock .reportBlockBox .belowTable ul .currency-list[data-v-2e905810]{background:#fff;box-shadow:0 0 2px 1px rgba(0,0,0,.02);margin-top:1%;padding:0 10px}.contentBox .EchartsBox[data-v-2e905810]{width:80%;min-height:300px}.contentBox .EchartsBox .chart[data-v-2e905810]{height:300px;border:1px solid rgba(0,0,0,.1);margin-top:2%}.contentBox .formBox[data-v-2e905810]{width:80%;min-height:300px;border:1px solid rgba(0,0,0,.1);margin-top:2%}.footerBox[data-v-2e905810]{justify-content:space-around;width:100%;height:300px;display:flex;justify-content:center;align-items:center;padding-left:15%;background-image:url(/img/bkbuttom.05337f57.png);background-repeat:no-repeat;background-size:100% 100%;color:rgba(0,0,0,.9);margin-top:100px}.footerBox .one .oneText[data-v-2e905810]{width:40%;margin:0 auto;height:30%;display:flex;flex-direction:column;justify-content:space-between}.footerBox .one .oneText img[data-v-2e905810]{width:100%}.footerBox .logo2[data-v-2e905810]{display:flex}.footerBox .logo2 .logoBox[data-v-2e905810]{display:flex;flex-direction:column;justify-content:start;margin-top:4%}.footerBox .logo2 .logoBox .logoImg[data-v-2e905810]{width:160px}.footerBox .logo2 .logoBox .copyright[data-v-2e905810]{font-size:.8rem;width:100%;margin-top:15px}.footerBox .logo2 .logoBox .socialContact[data-v-2e905810]{display:flex;justify-content:space-around;width:120%;margin-top:28px}.footerBox .logo2 .logoBox .socialContact img[data-v-2e905810]{width:25px;transition:.1s linear;cursor:pointer}.footerBox .logo2 .logoBox .socialContact img[data-v-2e905810]:hover{width:28px}.footerBox .text div[data-v-2e905810]{width:77%;height:60%;line-height:28px;margin-top:25px;font-size:.95rem}.footerBox .product ul[data-v-2e905810]{margin:0;padding:0;display:flex;justify-content:center;flex-direction:column}.footerBox .product ul .productTitle[data-v-2e905810]{margin:0}.footerBox .product ul li[data-v-2e905810]{margin-top:15px;list-style:none;font-size:.95rem}.footerBox .product ul li span[data-v-2e905810]{cursor:pointer}.footerBox .product ul li span[data-v-2e905810]:hover{color:#6e3edb}.footerBox .product ul li a[data-v-2e905810]:hover{color:#6e3edb;cursor:pointer}.footerSon[data-v-2e905810]{width:100%;height:90%;margin:18px 10px}.footerSon .productTitle[data-v-2e905810],.footerSon h4[data-v-2e905810]{color:#000}.el-submenu .el-menu-item[data-v-c3955b78]{padding-left:40px!important}.el-main[data-v-7e1a768d]{scrollbar-width:none;-ms-overflow-style:none;border-right:none}.containerApp[data-v-7e1a768d]{overflow-x:hidden}[data-v-7e1a768d]::-webkit-scrollbar{width:0;height:0}.el-header[data-v-7e1a768d]{height:8%!important;display:flex;justify-content:center;background-image:url(/img/bktop.91a777f0.png);background-position:60% 8%;background-size:cover;scrollbar-width:none;-ms-overflow-style:none;border-right:none}.el-main[data-v-7e1a768d]{padding:0;overflow-y:auto}@media screen and (min-width:220px)and (max-width:1279px){.el-header[data-v-7e1a768d]{width:100%;background-image:none;height:auto!important;padding:0;box-shadow:0 0 3px 2px #ccc!important;margin:0 auto}.containerApp[data-v-7e1a768d]{width:100vw;min-height:100vh;background:#fff;background-image:url(/img/homebgtop.733f659d.png);background-repeat:no-repeat;background-size:115%;background-position:40% -2%}}.fade-enter-active[data-v-763fcf11],.fade-leave-active[data-v-763fcf11]{transition:all .3s}.fade-enter[data-v-763fcf11],.fade-leave-to[data-v-763fcf11]{opacity:0;transform:scale(.8);-ms-transform:scale(.8);-webkit-transform:scale(.8)}.slide-fade-enter-active[data-v-763fcf11],.slide-fade-leave-active[data-v-763fcf11]{transition:all .3s ease}.slide-fade-enter[data-v-763fcf11],.slide-fade-leave-to[data-v-763fcf11]{transform:translateY(6PX);-ms-transform:translateY(6PX);-webkit-transform:translateY(6PX);opacity:0}.m-tooltip[data-v-763fcf11]{position:absolute;top:0;z-index:999;padding-bottom:6PX}.m-tooltip .u-tooltip-content[data-v-763fcf11]{padding:10PX;margin:0 auto;word-break:break-all;word-wrap:break-word;border-radius:4PX;font-weight:400;font-size:14PX;background:rgba(0,0,0,.5);color:#fff}.m-tooltip .u-tooltip-arrow[data-v-763fcf11]{margin:0 auto;width:0;height:0;border-left:2PX solid transparent;border-right:2PX solid transparent;border-top:4PX solid rgba(0,0,0,.5)}.split-screen-editor[data-v-58290ecb]{border:1px solid #e0e0e0;border-radius:8px;overflow:hidden;background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.1)}.editor-tools[data-v-58290ecb]{display:flex;justify-content:space-between;align-items:center;padding:12px 16px;background:#f8f9fa;border-bottom:1px solid #e0e0e0}.mode-switch[data-v-58290ecb]{display:flex;background:#fff;border-radius:6px;padding:2px;box-shadow:0 1px 3px rgba(0,0,0,.1)}.mode-switch .mode-btn[data-v-58290ecb]{padding:8px 16px;border:none;background:transparent;cursor:pointer;border-radius:4px;font-size:13px;font-weight:500;color:#7f8c8d;transition:all .2s ease;display:flex;align-items:center;gap:4px}.mode-switch .mode-btn.active[data-v-58290ecb]{background:#5721e4;color:#fff;box-shadow:0 2px 4px rgba(87,33,228,.2)}.mode-switch .mode-btn[data-v-58290ecb]:hover:not(.active){background:#f0f0f0;color:#5721e4}.tool-actions[data-v-58290ecb]{display:flex;gap:12px;align-items:center}.word-count[data-v-58290ecb]{font-size:12px;color:#7f8c8d;font-weight:500}.editor-container[data-v-58290ecb]{transition:all .3s ease}.editor-container.fullscreen[data-v-58290ecb]{position:fixed;top:0;left:0;right:0;bottom:0;z-index:9999;background:#fff;border-radius:0}.editor-panel[data-v-58290ecb]{border:1px solid #e0e0e0;border-radius:6px;overflow:hidden;background:#fff;height:100%}.panel-header[data-v-58290ecb]{display:flex;justify-content:space-between;align-items:center;padding:12px 16px;background:#f8f9fa;border-bottom:1px solid #e0e0e0;font-weight:600;color:#2c3e50;font-size:14px}.panel-header i[data-v-58290ecb]{color:#5721e4;margin-right:6px}.panel-actions[data-v-58290ecb]{display:flex;gap:8px;align-items:center}.editor-content[data-v-58290ecb]{padding:0}.tinymce-container[data-v-58290ecb]{width:100%}.tinymce-container textarea[data-v-58290ecb]{width:100%;min-height:500px;border:none;outline:none;padding:16px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;font-size:14px;line-height:1.6;resize:vertical}.content-display[data-v-58290ecb]{white-space:pre-wrap!important;word-wrap:break-word!important;word-break:break-word!important;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif!important;font-size:14px!important;line-height:1.6!important;color:#2c3e50!important}.preview-content[data-v-58290ecb]{padding:16px;max-height:500px;overflow-y:auto;background:#fff}@media screen and (max-width:768px){.editor-tools[data-v-58290ecb]{flex-direction:column;gap:12px;align-items:stretch}.mode-switch[data-v-58290ecb],.tool-actions[data-v-58290ecb]{justify-content:center}.panel-header[data-v-58290ecb]{flex-direction:column;gap:8px;align-items:flex-start!important}.panel-actions[data-v-58290ecb]{align-self:stretch;justify-content:center}.tinymce-container textarea[data-v-58290ecb]{min-height:300px;font-size:13px}.preview-content[data-v-58290ecb]{max-height:300px;font-size:13px}}.preview-content[data-v-58290ecb]::-webkit-scrollbar{width:6px}.preview-content[data-v-58290ecb]::-webkit-scrollbar-track{background:#f1f1f1;border-radius:3px}.preview-content[data-v-58290ecb]::-webkit-scrollbar-thumb{background:#c1c1c1;border-radius:3px}.preview-content[data-v-58290ecb]::-webkit-scrollbar-thumb:hover{background:#a8a8a8}.usage-guide-panel[data-v-58290ecb]{margin-top:20px}.usage-guide-panel[data-v-58290ecb] .el-card__header{background:linear-gradient(135deg,#5721e4,#8b5fbf);color:#fff;border-bottom:none;font-weight:600}.usage-guide-panel[data-v-58290ecb] .el-card__header .el-button--text{color:#fff;font-weight:500}.usage-guide-panel[data-v-58290ecb] .el-card__header .el-button--text:hover{color:#fff;background:hsla(0,0%,100%,.1)}.guide-content[data-v-58290ecb]{max-height:70vh;overflow-y:auto;padding:20px}.guide-section[data-v-58290ecb]{margin-bottom:32px;padding-bottom:24px;border-bottom:1px solid #f0f0f0}.guide-section[data-v-58290ecb]:last-child{border-bottom:none;padding-bottom:0;margin-bottom:0}.guide-section h4[data-v-58290ecb]{font-size:18px;font-weight:600;color:#2c3e50;margin-bottom:20px;position:relative;padding-left:30px}.guide-section h4[data-v-58290ecb]:before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);width:4px;height:20px;background:linear-gradient(135deg,#5721e4,#8b5fbf);border-radius:2px}.function-grid[data-v-58290ecb]{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:16px;margin-bottom:16px}.function-item[data-v-58290ecb]{display:flex;align-items:flex-start;gap:12px;padding:16px;border:1px solid #e4e7ed;border-radius:8px;background:#fafbfc;transition:all .3s ease}.function-item[data-v-58290ecb]:hover{border-color:#5721e4;background:#f8f9ff;transform:translateY(-2px);box-shadow:0 4px 12px rgba(87,33,228,.1)}.function-icon[data-v-58290ecb]{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:8px;background:linear-gradient(135deg,#5721e4,#8b5fbf);color:#fff;font-weight:600;font-size:16px;flex-shrink:0}.function-icon i[data-v-58290ecb]{font-size:18px}.color-icon[data-v-58290ecb]{width:20px;height:20px;background:linear-gradient(45deg,#ff6b6b,#4ecdc4,#45b7d1,#96ceb4,#ffeaa7,#fd79a8);border-radius:4px}.function-detail[data-v-58290ecb]{flex:1}.function-detail h5[data-v-58290ecb]{margin:0 0 8px 0;font-size:16px;font-weight:600;color:#2c3e50}.function-detail p[data-v-58290ecb]{margin:0 0 6px 0;font-size:14px;color:#606266;line-height:1.5}.function-detail .tips[data-v-58290ecb]{font-size:12px;color:#909399;font-style:italic}kbd[data-v-58290ecb]{display:inline-block;padding:2px 6px;font-size:12px;line-height:1.4;color:#2c3e50;background:#f8f9fa;border:1px solid #dee2e6;border-radius:3px;box-shadow:0 1px 0 rgba(0,0,0,.2),inset 0 0 0 2px #fff;white-space:nowrap;font-family:Monaco,Consolas,monospace}.color-demo[data-v-58290ecb]{font-weight:600}.bg-demo[data-v-58290ecb]{background:#ffeb3b;padding:2px 4px;border-radius:2px;color:#333;font-weight:600}.shortcuts-grid[data-v-58290ecb]{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px}.shortcut-category[data-v-58290ecb]{background:#f8f9fa;border-radius:8px;padding:16px;border:1px solid #e9ecef}.shortcut-category h5[data-v-58290ecb]{margin:0 0 12px 0;font-size:14px;font-weight:600;color:#5721e4;text-align:center;padding-bottom:8px;border-bottom:1px solid #dee2e6}.shortcut-list[data-v-58290ecb]{display:flex;flex-direction:column;gap:8px}.shortcut-item[data-v-58290ecb]{display:flex;justify-content:space-between;align-items:center;font-size:13px}.shortcut-item kbd[data-v-58290ecb]{font-size:11px;padding:1px 4px}.shortcut-item span[data-v-58290ecb]{color:#606266}.special-features[data-v-58290ecb]{background:linear-gradient(135deg,#f8f9ff,#f0f2ff);border:1px solid #e4e7ff;border-radius:12px;padding:24px;margin-top:20px}.special-function[data-v-58290ecb]{display:flex;align-items:flex-start;gap:16px;margin-bottom:24px}.special-function[data-v-58290ecb]:last-child{margin-bottom:0}.special-icon[data-v-58290ecb]{display:flex;align-items:center;justify-content:center;width:50px;height:50px;border-radius:12px;background:linear-gradient(135deg,#5721e4,#8b5fbf);color:#fff;font-weight:600;font-size:20px;flex-shrink:0;box-shadow:0 4px 12px rgba(87,33,228,.3)}.special-content[data-v-58290ecb]{flex:1}.special-content h5[data-v-58290ecb]{margin:0 0 8px 0;font-size:18px;font-weight:600;color:#2c3e50}.special-content p[data-v-58290ecb]{margin:0 0 12px 0;font-size:14px;color:#606266;line-height:1.6}.usage-steps[data-v-58290ecb]{display:flex;flex-direction:column;gap:8px;font-size:13px;color:#606266}.step[data-v-58290ecb]{display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;border-radius:50%;background:#5721e4;color:#fff;font-size:11px;font-weight:600;margin-right:8px;flex-shrink:0}.slide-fade-enter-active[data-v-58290ecb],.slide-fade-leave-active[data-v-58290ecb]{transition:all .4s ease}.slide-fade-enter[data-v-58290ecb],.slide-fade-leave-to[data-v-58290ecb]{transform:translateY(-20px);opacity:0}@media (max-width:768px){.function-grid[data-v-58290ecb],.shortcuts-grid[data-v-58290ecb]{grid-template-columns:1fr;gap:12px}.function-item[data-v-58290ecb]{padding:12px}.function-icon[data-v-58290ecb]{width:36px;height:36px;font-size:14px}.function-detail h5[data-v-58290ecb]{font-size:14px}.function-detail p[data-v-58290ecb]{font-size:13px}.special-function[data-v-58290ecb]{flex-direction:column;gap:12px;text-align:center}.special-icon[data-v-58290ecb]{align-self:center}.guide-content[data-v-58290ecb]{max-height:60vh;padding:16px}.guide-section[data-v-58290ecb]{margin-bottom:24px;padding-bottom:16px}.guide-section h4[data-v-58290ecb]{font-size:16px;padding-left:20px}.usage-steps[data-v-58290ecb]{text-align:left}.demo-editor-container[data-v-58290ecb]{margin:16px 0;padding:16px;background:#f8f9fa;border:2px solid #e9ecef;border-radius:8px;box-shadow:0 2px 4px rgba(0,0,0,.1)}.demo-description[data-v-58290ecb]{margin-bottom:12px;font-size:14px;color:#495057;font-weight:600;text-align:center}.demo-editor[data-v-58290ecb]{border:2px solid #d1d5db;border-radius:6px;min-height:220px;background:#fff;width:100%;display:block}.demo-editor-container .tox-tinymce[data-v-58290ecb]{border:2px solid #d1d5db!important;border-radius:6px!important}.demo-editor-container .tox-editor-header[data-v-58290ecb]{background:#f8f9fa!important;border-bottom:1px solid #e9ecef!important}.demo-tips[data-v-58290ecb]{margin-top:12px;padding:10px 15px;background:linear-gradient(135deg,#e3f2fd,#f3e5f5);border:1px solid #bbdefb;border-radius:6px;font-size:13px;text-align:center}.tip-item[data-v-58290ecb]{color:#1565c0;font-weight:600}} \ No newline at end of file diff --git a/mining-pool/test/css/app-d87c119a.8d130cfb.css.gz b/mining-pool/test/css/app-d87c119a.8d130cfb.css.gz new file mode 100644 index 0000000..79c44a3 Binary files /dev/null and b/mining-pool/test/css/app-d87c119a.8d130cfb.css.gz differ diff --git a/mining-pool/test/index.html b/mining-pool/test/index.html index a55151a..c5154b8 100644 --- a/mining-pool/test/index.html +++ b/mining-pool/test/index.html @@ -1 +1 @@ -M2pool - Stable leading high-yield mining pool
\ No newline at end of file +M2pool - Stable leading high-yield mining pool
\ No newline at end of file diff --git a/mining-pool/test/js/app-113c6c50.0117a862.js b/mining-pool/test/js/app-113c6c50.0117a862.js new file mode 100644 index 0000000..b388def --- /dev/null +++ b/mining-pool/test/js/app-113c6c50.0117a862.js @@ -0,0 +1 @@ +(function(){"use strict";var t={198:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(80238));e.A={mixins:[i.default]}},398:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,s(44114),s(18111),s(20116);var a=s(1652);e["default"]={data(){return{searchKeyword:"",searchResults:[],currentPage:1,pageSize:10,totalCount:0,previewVisible:!1,previewData:null,pageNum:1,documentTypes:{},searchLoading:!1}},mounted(){try{this.documentTypes=JSON.parse(localStorage.getItem("TypeList"))||{}}catch(t){console.log(t,"error")}if(this.searchKeyword=this.$route.query.keyword||"",this.$route.query.results)try{const t=JSON.parse(decodeURIComponent(this.$route.query.results));this.searchResults=t.rows||[],this.totalCount=t.total||0}catch(t){console.error("解析搜索结果数据失败:",t)}else this.searchKeyword&&this.fetchSearchResults()},methods:{async fetchSearchResults(){this.setLoading("searchLoading",!0);try{const t=await(0,a.getListDataByPage)({keyword:this.searchKeyword,pageNum:this.pageNum,pageSize:this.pageSize,lang:this.$i18n.locale});t&&200===t.code&&(this.searchResults=t.rows||[],this.totalCount=t.total||0)}catch(t){console.error("获取搜索结果失败:",t),this.$message.error("获取搜索结果失败")}this.setLoading("searchLoading",!1)},highlightKeyword(t){if(!this.searchKeyword||!t)return t;const e=new RegExp(`(${this.searchKeyword})`,"gi");return t.replace(e,"$1")},getContentPreview(t){if(!t)return"";const e=t.replace(/<[^>]*>/g,"");return e.length>100?e.substring(0,100)+"...":e},formatDate(t){if(!t)return"";const e=new Date(t);return e.toLocaleDateString("zh-CN",{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit"})},getDocumentTypeName(t){try{let e=this.documentTypes.find((e=>e.value==t))?.label;return this.$t(e)}catch(e){return console.log(e,"error"),"未知类型"}},handlePageChange(t){this.currentPage=t,this.fetchSearchResults()},handleItemClick(t){let e;t.articleUrl&&(e=`/${this.$i18n.locale}/${t.articleUrl}`),this.$router.push({path:e,query:{id:t.id}})},handlePreview(t){this.previewData=t,this.previewVisible=!0},handlePreviewClose(){this.previewVisible=!1,this.previewData=null},handleCurrentChange(t){this.pageNum=t,this.fetchSearchResults()},handleSizeChange(t){this.pageSize=t,this.currentPage=1,this.pageNum=1,this.fetchSearchResults()}}}},1754:function(t,e,s){var a=s(91774)["default"];Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,s(44114),s(18111),s(7588);var i=s(4946),r=a(s(3574)),o=s(82908);e["default"]={name:"UserDetails",data(){return{userDetailsID:null,userData:{},userDetailsLoading:!1,formInline:{user:"",region:""},userDetailsParams:{coin:"",minerUser:"",startDate:"",endDate:""},labelPosition:"top",noDataTip:!1,lineChartParams:{minerUser:"",endDate:"",startDate:"",coin:""},onlineStatusParams:{minerUser:"",coin:"",endDate:"",startDate:""},onlineStatusData:[{date:"2024-11-28T11:00:00",offlineNum:148,onlineNum:15},{date:"2025-06-27 17:00:00",offlineNum:110,onlineNum:156},{date:"2025-06-27 17:30:00",offlineNum:90,onlineNum:152},{date:"2025-06-27 18:00:00",offlineNum:70,onlineNum:152},{date:"2025-06-27 18:00:00",offlineNum:70,onlineNum:152},{date:"2025-06-27 18:00:00",offlineNum:70,onlineNum:152},{date:"2025-06-27 18:00:00",offlineNum:70,onlineNum:152}],lineChatTimes:[],option:{tooltip:{trigger:"axis",confine:!0},legend:{right:"8%"},grid:{left:"8%",right:"8%",top:"10%",bottom:"15%"},xAxis:{boundaryGap:!0,axisLabel:{interval:"auto",rotate:45,formatter:function(t){if(t.includes(" ")){const[e,s]=t.split(" "),[a,i,r]=e.split("-"),[o,l]=s.split(":");return`${i}-${r} ${o}:${l}`}return t}},data:[]},yAxis:[{type:"value",name:"GH/s",nameTextStyle:{padding:[0,0,0,-40]},axisLabel:{formatter:function(t){return t}}},{position:"right",show:!0,splitLine:{show:!1},nameTextStyle:{padding:[0,0,0,40]}}],dataZoom:[{type:"inside",start:50,end:100,maxSpan:100,minSpan:2,animation:!1},{type:"inside",start:50,end:100,height:20,bottom:0,showDetail:!1}],series:[{name:"Number of users online",type:"bar",data:[],yAxisIndex:1,itemStyle:{color:"#239342"},barWidth:"40%",barGap:"10%",barCategoryGap:"20%"},{name:"Number of offline users",type:"bar",itemStyle:{color:"#FE2E74",borderColor:"rgba(221,220,107,0.1)"},barWidth:"40%",barGap:"10%",barCategoryGap:"20%",data:[],yAxisIndex:1},{name:"User computing power",type:"line",smooth:!1,symbol:"circle",symbolSize:5,showSymbol:!1,itemStyle:{color:"#5721E4",borderColor:"rgba(221,220,107,0.1)",borderWidth:12},lineStyle:{color:"#5721E4",width:"2"},zlevel:1,z:1,data:[],yAxisIndex:0}]},lineChartLoading:!1,lineChartData:[{minerUser:"miner",pv:"8.00080",date:"2024-11-28T11:00:00",unit:"GH/s"},{minerUser:"miner",pv:"6.00060",date:"2024-11-28T11:30:00",unit:"GH/s"},{minerUser:"miner",pv:"0.05000",date:"2024-11-28T12:00:00",unit:"GH/s"},{minerUser:"miner",pv:"2.0000",date:"2024-11-28T12:30:00",unit:"GH/s"},{minerUser:"miner",pv:"0.3000",date:"2024-11-28T13:00:00",unit:"GH/s"},{minerUser:"miner",pv:"0.9000",date:"2024-11-28T13:30:00",unit:"GH/s"},{minerUser:"miner",pv:"15.0000",date:"2024-11-28T14:00:00",unit:"GH/s"}],chartShow:!0,tableData:[],historyBalance:[],mergeConfig:{}}},watch:{tableData:{handler(){this.calculateMergeConfig()},deep:!0}},mounted(){let t;try{t=JSON.parse(localStorage.getItem("token"))}catch(s){console.log(s)}t||this.$router.push({path:`/${lang}/login`});const e=this.$route.query||JSON.parse(localStorage.getItem("userDetailsParams"));this.lineChartParams.minerUser=e.minerUser,this.lineChartParams.coin=e.coin,this.onlineStatusParams.minerUser=e.minerUser,this.onlineStatusParams.coin=e.coin,this.userDetailsParams.coin=e.coin,this.userDetailsParams.minerUser=e.minerUser,this.userDetailsParams.coin&&this.userDetailsParams.minerUser&&(localStorage.setItem("userDetailsParams",JSON.stringify(e)),this.fetchUserDetails(this.userDetailsParams),this.fetchChartData())},methods:{extractDate(t){return t?t.split("T")[0]:""},inCharts(){null==this.myChart&&(this.myChart=r.init(document.getElementById("lineChart"))),this.option.series[0].name=this.$t("backendSystem.onlineUserNum"),this.option.series[1].name=this.$t("backendSystem.offlineUserNum"),this.option.series[2].name=this.$t("backendSystem.userPower"),this.myChart.setOption(this.option),this.myChart.on("finished",(()=>{console.log("图表渲染完成")})),window.addEventListener("resize",(0,o.throttle)((()=>{this.myChart&&this.myChart.resize()}),200))},async fetchUserDetails(t){this.setLoading("userDetailsLoading",!0);const e=await(0,i.getUserDetails)(t);console.log(e),e&&200==e.code&&(e.data?(this.userData=e.data,this.historyBalance=e.data.historyBalance,this.tableData=e.data.walletInInfo.sort(((t,e)=>new Date(e.createDate)-new Date(t.createDate))),this.noDataTip=!1):this.noDataTip=!0,this.$nextTick((()=>{this.calculateMergeConfig()}))),this.setLoading("userDetailsLoading",!1)},async fetchUserLineChart(t){const e=await(0,i.getUserLineChart)(t);console.log(e);let s=[],a=[];if(e&&200==e.code){if(!Array.isArray(e.data)||0===e.data.length||!e.data[0].unit)return void(this.chartShow=!1);this.chartShow=!0,this.lineChartData=e.data,this.lineChartData.forEach((t=>{t.date=t.date.split("T")[0]+" "+t.date.split("T")[1].split(".")[0],s.push(t.date),a.push(Number(t.pv).toFixed(6))})),this.option.xAxis.data=s,this.option.series[2].data=a,this.option.yAxis[0].name=this.lineChartData[0].unit}},async fetchUserOnlineStatus(t){const e=await(0,i.getUserOnlineStatus)(t);console.log(e);let s=[],a=[];if(e&&200==e.code){if(!Array.isArray(e.data)||0===e.data.length)return void(this.chartShow=!1);this.chartShow=!0,this.onlineStatusData=e.data,this.onlineStatusData.forEach((t=>{s.push(t.offlineNum),a.push(t.onlineNum)})),this.option.series[0].data=a,this.option.series[1].data=s}},async fetchChartData(){try{this.setLoading("lineChartLoading",!0),await Promise.all([this.fetchUserLineChart(this.lineChartParams),this.fetchUserOnlineStatus(this.onlineStatusParams)]),this.chartShow&&this.inCharts()}catch(t){console.error("获取图表数据失败:",t)}finally{this.setLoading("lineChartLoading",!1)}},goBack(){const t=this.$i18n.locale;this.$router.push({path:`/${t}/userManagement`})},handleLineChatTimesChange(t){console.log(t,"val"),t?(this.lineChartParams.startDate=t[0],this.lineChartParams.endDate=t[1],this.onlineStatusParams.startDate=t[0],this.onlineStatusParams.endDate=t[1],this.userDetailsParams.startDate=t[0],this.userDetailsParams.endDate=t[1]):(this.lineChartParams.startDate="",this.lineChartParams.endDate="",this.onlineStatusParams.startDate="",this.onlineStatusParams.endDate="",this.userDetailsParams.startDate="",this.userDetailsParams.endDate=""),this.fetchUserDetails(this.userDetailsParams),this.fetchChartData()},calculateMergeConfig(){const t={},e={};this.tableData.forEach(((e,s)=>{const a=this.extractDate(e.shouldOutDate);t[a]||(t[a]=[]),t[a].push(s)})),Object.values(t).forEach((t=>{if(t.length>1){e[t[0]]={shouldOutDate:t.length};for(let s=1;s{if(!e)return void s();const a=e.split(/[,,]/).map((t=>t.trim())).filter((t=>t)),i=/^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}$/;for(let o of a)if(!i.test(o))return void s(new Error(this.$t("backendSystem.pleaseInputCorrectEmail2")));const r=new Set;for(let o of a){const t=o.toLowerCase();if(r.has(t))return void s(new Error(this.$t("backendSystem.existDuplicateEmail")));r.add(t)}s()},trigger:["blur","change"]}]},dialogVisible:!1,senParams:{subject:"",text:"",to:""},sendEmailLoading:!1,total:0,pageSizes:[50,100,300],currentPage:1}},mounted(){let t;try{t=JSON.parse(localStorage.getItem("token"))}catch(e){console.log(e)}t||this.$router.push({path:`/${lang}/login`}),this.fetchUserList(this.userListParams),this.currencyList=JSON.parse(localStorage.getItem("currencyList")),window.addEventListener("setItem",(()=>{this.currencyList=JSON.parse(localStorage.getItem("currencyList"))})),this.changeScreen(this.screenCurrency)},methods:{async fetchUserList(t){this.setLoading("userManagementLoading",!0);const e=await(0,a.getUserList)(t);console.log(e,"data"),e&&200==e.code&&(this.tableData=e.rows,this.total=e.total),this.setLoading("userManagementLoading",!1)},async fetchSendEmail(t){this.setLoading("sendEmailLoading",!0);const e=await(0,a.sendMail)(t);if(e&&200==e.code){this.$message.success(this.$t("backendSystem.sendSuccess")),this.dialogVisible=!1;for(const t in this.senParams)this.senParams[t]=""}this.setLoading("sendEmailLoading",!1)},changeScreen(t){let e=t;for(let s in this.currencyList){let t=this.currencyList[s],a=t.value;e===a&&this.$refs.screen.$el.children[0].children[0].setAttribute("style","background:url("+t.imgUrl+") no-repeat 10PX;background-size: 20PX 20PX;color:#333;padding-left: 33PX;")}localStorage.setItem("userManagement_selectedCurrency",t),this.userListParams.coin=t,this.fetchUserList(this.userListParams)},handelImg(t){return this.currencyList&&this.currencyList.length>0&&t&&this.currencyList.find((e=>e.value===t))?.imgUrl||""},handelQuery(){this.$refs.formRef.validate((t=>{if(t){for(let t in this.userListParams)"string"===typeof this.userListParams[t]&&(this.userListParams[t]=this.userListParams[t].trim());if(!this.userListParams.minerUser&&!this.userListParams.user)return void this.$message.error(this.$t("backendSystem.pleaseInputQueryConditions"));this.fetchUserList(this.userListParams)}}))},sendEmail(t){this.dialogVisible=!0,this.senParams.to=t.user},handleInputClear(){this.fetchUserList(this.userListParams)},handleClose(){this.dialogVisible=!1},handleInput(t,e){},sureSendEmail(){console.log(this.senParams,"this.senParams"),this.$refs.formRef.validate((t=>{t&&this.fetchSendEmail(this.senParams)}))},handleDetails(t){console.log(t,"row");const e=this.$i18n.locale;this.$router.push({path:`/${e}/userDetails`,query:{coin:t.coin,minerUser:t.minerUser,user:t.user}}).catch((t=>{"NavigationDuplicated"!==t.name&&console.error("路由跳转失败:",t)}));let s={coin:t.coin,minerUser:t.minerUser,user:t.user};localStorage.setItem("userDetailsParams",JSON.stringify(s))},handleSizeChange(t){console.log(`每页 ${t} 条`),this.userListParams.pageSize=t,this.userListParams.pageNum=1,this.currentPage=1,this.fetchUserList(this.userListParams)},handleCurrentChange(t){console.log(`当前页: ${t}`),this.userListParams.pageNum=t,this.fetchUserList(this.userListParams)}}}},2835:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.userDetailsLoading,expression:"userDetailsLoading"}]},[e("div",{staticClass:"main-title"},[t._v(" "+t._s(t.$t("backendSystem.userDetails"))+" "),e("span",{staticStyle:{color:"#409eff",cursor:"pointer","font-size":"16px","margin-left":"10px"},on:{click:t.goBack}},[t._v(t._s(t.$t("backendSystem.return")))])]),e("section",{staticClass:"user-details-box"},[e("div",{staticClass:"time-box"},[e("el-date-picker",{staticStyle:{"margin-bottom":"18px"},attrs:{type:"daterange","range-separator":t.$t("backendSystem.to"),"start-placeholder":t.$t("backendSystem.startDate"),"end-placeholder":t.$t("backendSystem.endDate"),"value-format":"yyyy-MM-dd HH:mm:ss",size:"small"},on:{change:t.handleLineChatTimesChange},model:{value:t.lineChatTimes,callback:function(e){t.lineChatTimes=e},expression:"lineChatTimes"}}),e("div",[t._v(t._s(t.$t("backendSystem.walletBalance"))+":"+t._s(t.userData.accountBalance||0))])],1),e("el-table",{attrs:{data:t.tableData,border:"","span-method":t.handleSpanMethod,"header-cell-style":{"text-align":"center"},"cell-style":{"text-align":"center"},height:"42vh"}},[e("el-table-column",{attrs:{prop:"shouldOutDate",label:t.$t("backendSystem.shouldOutDate"),width:"180",resizable:!1,"show-overflow-tooltip":""},scopedSlots:t._u([{key:"default",fn:function(s){return[e("span",[t._v(t._s(t.handelTime(s.row.shouldOutDate)))])]}}])}),e("el-table-column",{attrs:{prop:"allocationAmount",label:t.$t("backendSystem.allocationAmount"),resizable:!1,width:"200","show-overflow-tooltip":""}}),e("el-table-column",{attrs:{prop:"transferAmount",label:t.$t("backendSystem.transferAmount"),resizable:!1,width:"200","show-overflow-tooltip":""}}),e("el-table-column",{attrs:{prop:"address",label:t.$t("backendSystem.address"),resizable:!1,"show-overflow-tooltip":""}}),e("el-table-column",{attrs:{prop:"maxHeight",label:t.$t("backendSystem.maxHeight"),resizable:!1,width:"180","show-overflow-tooltip":""}})],1),e("section",{staticClass:"chartBox"},[e("div",{staticClass:"lineChartBox"},[e("div",{staticClass:"lineChartBox-header"},[e("div",{staticClass:"lineChartBox-title"},[t._v(t._s(t.$t("backendSystem.chartTitle")))])]),e("div",{staticClass:"lineChartBox-content",staticStyle:{width:"100%",height:"500px","margin-top":"35px"}},[t.chartShow?e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.lineChartLoading,expression:"lineChartLoading"}],staticStyle:{width:"100%",height:"100%"},attrs:{id:"lineChart"}}):e("div",{staticStyle:{"text-align":"center","margin-top":"200px",color:"#ccc"}},[t._v(t._s(t.$t("backendSystem.noData")))])])])]),e("el-row",[e("el-col",{attrs:{span:24}},[e("div",{staticStyle:{width:"100%","max-height":"300px","overflow-y":"auto"}},[e("h3",{staticStyle:{"margin-bottom":"20px"}},[t._v(t._s(t.$t("backendSystem.historyAddress")))]),t._l(t.historyBalance,(function(s){return e("p",{key:s.balance,staticClass:"history-balance-item"},[t._v(" "+t._s(s.balance)+" ")])}))],2)])],1)],1)])},e.Yp=[]},2981:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(66044));e.A={name:"SplitEditorDemo",components:{SplitScreenEditor:i.default},data(){return{documentForm:{title:"分屏编辑器演示文档",type:"2",content:this.getDefaultContent(),status:"draft"},saveLoading:!1,showGuide:!0,editorOptions:{height:500,menubar:!1,plugins:["advlist","autolink","lists","link","image","charmap","preview","anchor","searchreplace","visualblocks","code","fullscreen","insertdatetime","media","table","help","wordcount"],toolbar:["undo redo | formatselect | bold italic underline strikethrough","forecolor backcolor | alignleft aligncenter alignright alignjustify","bullist numlist outdent indent | link image table","code preview fullscreen | removeformat help"].join(" | "),content_style:"\n body { \n font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; \n font-size: 14px; \n line-height: 1.6;\n color: #2c3e50;\n margin: 16px;\n }\n p { margin: 10px 0; }\n ul, ol { margin: 10px 0; padding-left: 24px; }\n li { margin: 6px 0; line-height: 1.6; }\n h1, h2, h3 { color: #2c3e50; margin: 16px 0 8px 0; }\n table { border-collapse: collapse; width: 100%; margin: 12px 0; }\n table th, table td { border: 1px solid #ddd; padding: 8px; text-align: left; }\n table th { background-color: #f2f2f2; font-weight: 600; }\n code { background: #f4f4f4; padding: 2px 4px; border-radius: 3px; }\n pre { background: #f8f8f8; padding: 12px; border-radius: 4px; overflow-x: auto; }\n ",placeholder:"请在此输入您的内容,支持富文本格式...",language:"zh_CN",branding:!1,resize:!1,statusbar:!0}}},methods:{getDefaultContent(){return'

ALEO挖矿说明

\n\n

根据ALEO ARC-46协议,ALEO挖矿机制将在2025年08月01日00:00 UTC进行如下升级,升级完成后您的ALEO挖矿可能会受到影响,请您知悉:

\n\n
    \n
  1. ALEO挖矿将转变为"PoS+PoW"混合机制。
  2. \n
\n\n
    \n
  • • ALEO矿工必须质押一定数量的ALEO代币,否则将无法提交PoW工作量证明(即算力)并获得挖矿收益。
  • \n
\n\n

重要提醒

\n\n

请及时了解新的挖矿机制要求,做好相应准备。如有疑问,请联系客服获取帮助。

\n\n

技术规格表

\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
参数当前值升级后说明
共识机制PoWPoS+PoW混合共识
质押要求必需需要质押ALEO代币
算力证明直接提交需要质押先质押后挖矿
\n\n

注:以上信息仅供参考,具体实施以官方公告为准。

'},handleContentChange(t){console.log("编辑器内容已更改:",t.length,"字符"),this.autoSave()},autoSave(){clearTimeout(this.autoSaveTimer),this.autoSaveTimer=setTimeout((()=>{this.saveToDraft()}),2e3)},saveToDraft(){const t={...this.documentForm,lastSaved:(new Date).toISOString()};localStorage.setItem("split_editor_draft",JSON.stringify(t)),console.log("内容已自动保存到本地")},loadDraft(){const t=localStorage.getItem("split_editor_draft");if(t)try{const e=JSON.parse(t),s=(new Date).getTime()-new Date(e.lastSaved).getTime();s<864e5&&(this.documentForm={...this.documentForm,...e},this.$message({message:`已恢复草稿 (${new Date(e.lastSaved).toLocaleString()})`,type:"success",duration:3e3}))}catch(e){console.error("加载草稿失败:",e)}},async handleSave(){if(this.documentForm.title.trim())if(this.documentForm.content.trim()){this.saveLoading=!0;try{await new Promise((t=>setTimeout(t,1e3))),this.$message.success("文档保存成功"),this.documentForm.status="published",localStorage.removeItem("split_editor_draft")}catch(t){console.error("保存失败:",t),this.$message.error("保存失败: "+(t.message||"未知错误"))}finally{this.saveLoading=!1}}else this.$message.warning("请输入文档内容");else this.$message.warning("请输入文档标题")},handleClear(){this.$confirm("确定要清空所有内容吗?此操作不可恢复。","确认清空",{confirmButtonText:"确定",cancelButtonText:"取消",type:"warning"}).then((()=>{this.documentForm.content="",this.documentForm.title="",this.$refs.splitEditor.clear(),localStorage.removeItem("split_editor_draft"),this.$message.success("内容已清空")})).catch((()=>{}))},handlePublish(t){console.log("编辑器发布数据:",t),t.success?(console.log("文档发布成功:",{documentId:t.documentId,title:t.title,wordCount:t.wordCount}),this.documentForm.title=t.title,this.documentForm.content=t.content,this.documentForm.status="published",this.clearDraft(),this.$notify({title:"✅ 发布成功",message:`文档 "${t.title}" 已成功发布到文档管理系统\n文档ID: ${t.documentId}\n字数: ${t.wordCount} 字`,type:"success",duration:5e3})):(console.error("文档发布失败:",t.error),this.$notify({title:"❌ 发布失败",message:`发布失败:${t.error}`,type:"error",duration:4e3}))}},mounted(){this.loadDraft()},beforeDestroy(){this.autoSaveTimer&&clearTimeout(this.autoSaveTimer)}}},11685:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.orderDetailsLoading,expression:"orderDetailsLoading"}],staticClass:"main"},[t.$isMobile?e("section",{staticClass:"MobileMain"},[e("h4",[t._v(t._s(t.$t("work.WKDetails")))]),e("div",{staticClass:"contentMobile"},[e("el-row",[e("el-col",{attrs:{xs:24,sm:10,md:10,lg:12,xl:12}},[e("p",[e("span",{staticClass:"orderTitle"},[t._v(" "+t._s(t.$t("work.WorkID"))+":")]),e("span",{staticClass:"orderContent"},[t._v(t._s(t.ticketDetails.id))])])]),e("el-col",{attrs:{xs:24,sm:10,md:10,lg:10,xl:10}},[e("p",[e("span",{staticClass:"orderTitle"},[t._v(t._s(t.$t("work.mailbox"))+":")]),e("span",{staticClass:"orderContent"},[t._v(t._s(t.ticketDetails.email))])])])],1),e("el-row",[e("el-col",{attrs:{xs:24,sm:10,md:10,lg:10,xl:10}},[e("p",[e("span",{staticClass:"orderTitle"},[t._v(" "+t._s(t.$t("work.status"))+":")]),e("span",{staticClass:"orderContent"},[t._v(t._s(t.$t(t.handelStatus2(t.ticketDetails.status))))])])])],1),e("el-row",{staticStyle:{"margin-top":"30px !important"}},[e("el-col",[e("h5",[t._v(t._s(t.$t("work.describe"))+":")]),e("div",{staticStyle:{border:"1px solid rgba(0, 0, 0, 0.1)",padding:"20px 10px","word-wrap":"break-word","overflow-wrap":"break-word","max-height":"200px","margin-top":"18px","overflow-y":"auto","border-radius":"5px"}},[t._v(" "+t._s(t.ticketDetails.desc)+" ")])])],1),e("h5",{staticStyle:{"margin-top":"30px"}},[t._v(t._s(t.$t("work.record"))+":")]),e("div",{staticClass:"submitContent"},[e("el-row",{staticStyle:{margin:"0"}},t._l(t.recordList,(function(s){return e("div",{key:s.time,staticStyle:{"margin-top":"20px"}},[e("div",{staticClass:"submitTitle"},[e("div",{staticClass:"userName"},[t._v(t._s(s.name))]),e("div",{staticClass:"time"},[t._v(" "+t._s(t.handelTime(s.time)))])]),e("div",{attrs:{id:"contentBox"}},[t._v(" "+t._s(s.content)+" ")]),e("span",{directives:[{name:"show",rawName:"v-show",value:s.files,expression:"item.files"}],staticClass:"downloadBox",on:{click:function(e){return t.handelDownload(s.files)}}},[t._v(t._s(t.$t("work.downloadFile")))])])})),0)],1),"10"!==t.ticketDetails.status?e("section",{staticStyle:{"margin-top":"30px"}},[e("div",[e("el-row",[e("el-col",[e("h5",{staticStyle:{"margin-bottom":"18px"}},[t._v(t._s(t.$t("work.continue"))+":")]),e("el-input",{attrs:{type:"textarea",placeholder:t.$t("work.input"),resize:"none",autosize:{minRows:2,maxRows:6},maxlength:"250","show-word-limit":""},model:{value:t.replyParams.desc,callback:function(e){t.$set(t.replyParams,"desc",e)},expression:"replyParams.desc"}})],1)],1),e("el-form",[e("el-form-item",{staticStyle:{width:"100%"}},[e("div",{staticStyle:{width:"100%"}},[t._v(t._s(t.$t("work.enclosure")))]),e("div",{staticClass:"prompt"},[t._v(" "+t._s(t.$t("work.fileType"))+":jpg, jpeg, png, mp3, aif, aiff, wav, wma, mp4, avi, rmvb ")]),e("el-upload",{ref:"upload",staticClass:"upload-demo",attrs:{drag:"",action:"",multiple:"",limit:t.fileLimit,"on-exceed":t.handleExceed,"on-remove":t.handleRemove,"file-list":t.fileList,"on-change":t.handelChange,"show-file-list":"","auto-upload":!1}},[e("i",{staticClass:"el-icon-upload"}),e("div",{staticClass:"el-upload__text"},[t._v(" "+t._s(t.$t("work.fileCharacters"))),e("em",[t._v(" "+t._s(t.$t("work.fileCharacters2")))])])])],1),e("el-button",{staticClass:"elBtn",staticStyle:{"border-radius":"20px"},attrs:{type:"plain"},on:{click:t.handelResubmit}},[t._v(" "+t._s(t.$t("work.submit2")))]),e("el-button",{staticClass:"elBtn",staticStyle:{"border-radius":"20px"},attrs:{type:"plain"},on:{click:t.handelEnd}},[t._v(" "+t._s(t.$t("work.endWork")))])],1)],1)]):t._e(),e("el-dialog",{attrs:{title:t.$t("work.Tips"),visible:t.closeDialogVisible,width:"70%"},on:{"update:visible":function(e){t.closeDialogVisible=e}}},[e("span",[t._v(t._s(t.$t("work.confirmClose")))]),e("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[e("el-button",{staticStyle:{"border-radius":"20px"},on:{click:function(e){t.closeDialogVisible=!1}}},[t._v(t._s(t.$t("work.cancel")))]),e("el-button",{staticClass:"elBtn",staticStyle:{border:"none","border-radius":"20px"},attrs:{type:"primary",loading:t.orderDetailsLoading},on:{click:t.confirmCols}},[t._v(t._s(t.$t("work.confirm")))])],1)])],1)]):e("div",{staticClass:"content"},[e("el-row",{attrs:{type:"flex",justify:"end"}},[e("el-col",{staticClass:"orderDetails"},[e("h3",[t._v(t._s(t.$t("work.WKDetails")))]),e("el-row",[e("el-col",{attrs:{span:12}},[e("p",[e("span",{staticClass:"orderTitle"},[t._v(" "+t._s(t.$t("work.WorkID"))+":")]),e("span",{staticClass:"orderContent"},[t._v(t._s(t.ticketDetails.id))])])]),e("el-col",{attrs:{span:12}},[e("p",[e("span",{staticClass:"orderTitle"},[t._v(t._s(t.$t("work.mailbox"))+":")]),e("span",{staticClass:"orderContent"},[t._v(t._s(t.ticketDetails.email))])])])],1),e("el-row",[e("el-col",{attrs:{span:12}},[e("p",[e("span",{staticClass:"orderTitle"},[t._v(" "+t._s(t.$t("work.status"))+":")]),e("span",{staticClass:"orderContent"},[t._v(t._s(t.$t(t.handelStatus2(t.ticketDetails.status))))])])])],1)],1)],1),e("el-row",[e("el-col",[e("h4",[t._v(" "+t._s(t.$t("work.describe"))+":")]),e("p",{staticStyle:{border:"1px solid rgba(0, 0, 0, 0.1)",padding:"20px 10px","max-height":"200px","min-height":"100px","margin-top":"18px","word-wrap":"break-word","overflow-wrap":"break-word","overflow-y":"auto","border-radius":"5px"}},[t._v(" "+t._s(t.ticketDetails.desc)+" ")])])],1),e("h4",[t._v(t._s(t.$t("work.record"))+":")]),e("div",{staticClass:"submitContent"},[e("el-row",{staticStyle:{margin:"0"}},t._l(t.recordList,(function(s){return e("div",{key:s.time,staticStyle:{"margin-top":"20px"}},[e("div",{staticClass:"submitTitle"},[e("span",[t._v(t._s(t.$t("work.user1"))+":"+t._s(s.name))]),e("span",[t._v(" "+t._s(t.$t("work.time4"))+":"+t._s(t.handelTime(s.time)))])]),e("div",{staticClass:"contentBox"},[e("span",{staticStyle:{display:"inline-block",width:"100%","word-wrap":"break-word","overflow-wrap":"break-word","max-height":"200px","overflow-y":"auto"}},[t._v(t._s(s.content))])]),e("span",{directives:[{name:"show",rawName:"v-show",value:s.files,expression:"item.files"}],staticClass:"downloadBox",on:{click:function(e){return t.handelDownload(s.files)}}},[t._v(t._s(t.$t("work.downloadFile")))])])})),0)],1),"10"!==t.ticketDetails.status?e("section",[e("div",[e("el-row",[e("el-col",[e("h4",{staticStyle:{"margin-bottom":"18px"}},[t._v(t._s(t.$t("work.continue"))+":")]),e("el-input",{attrs:{type:"textarea",placeholder:t.$t("work.input"),resize:"none",autosize:{minRows:2,maxRows:6},maxlength:"250","show-word-limit":""},model:{value:t.replyParams.desc,callback:function(e){t.$set(t.replyParams,"desc",e)},expression:"replyParams.desc"}})],1)],1),e("el-form",[e("el-form-item",{staticStyle:{width:"50%"}},[e("div",{staticStyle:{width:"100%"}},[t._v(t._s(t.$t("work.enclosure")))]),e("p",{staticClass:"prompt"},[t._v(" "+t._s(t.$t("work.fileType"))+":jpg, jpeg, png, mp3, aif, aiff, wav, wma, mp4, avi, rmvb ")]),e("el-upload",{ref:"upload",staticClass:"upload-demo",attrs:{drag:"",action:"",multiple:"",limit:t.fileLimit,"on-exceed":t.handleExceed,"on-remove":t.handleRemove,"file-list":t.fileList,"on-change":t.handelChange,"show-file-list":"","auto-upload":!1}},[e("i",{staticClass:"el-icon-upload"}),e("div",{staticClass:"el-upload__text"},[t._v(" "+t._s(t.$t("work.fileCharacters"))),e("em",[t._v(" "+t._s(t.$t("work.fileCharacters2")))])])])],1),e("el-button",{staticClass:"elBtn",staticStyle:{width:"200px","border-radius":"20px"},attrs:{type:"plain"},on:{click:t.handelResubmit}},[t._v(" "+t._s(t.$t("work.submit2")))]),e("el-button",{staticClass:"elBtn",staticStyle:{width:"200px","border-radius":"20px"},attrs:{type:"plain"},on:{click:t.handelEnd}},[t._v(" "+t._s(t.$t("work.endWork")))])],1)],1)]):t._e(),e("el-dialog",{attrs:{title:t.$t("work.Tips"),visible:t.closeDialogVisible,width:"30%"},on:{"update:visible":function(e){t.closeDialogVisible=e}}},[e("span",[t._v(t._s(t.$t("work.confirmClose")))]),e("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[e("el-button",{staticStyle:{"border-radius":"20px"},on:{click:function(e){t.closeDialogVisible=!1}}},[t._v(t._s(t.$t("work.cancel")))]),e("el-button",{staticClass:"elBtn",staticStyle:{border:"none","border-radius":"20px"},attrs:{type:"primary",loading:t.orderDetailsLoading},on:{click:t.confirmCols}},[t._v(t._s(t.$t("work.confirm")))])],1)])],1)])},e.Yp=[]},13537:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return n}});var a=s(2835),i=s(40110),r=i.A,o=s(81656),l=(0,o.A)(r,a.XX,a.Yp,!1,null,"21797be4",null),n=l.exports},18311:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return n}});var a=s(83443),i=s(83240),r=i.A,o=s(81656),l=(0,o.A)(r,a.XX,a.Yp,!1,null,"10849caa",null),n=l.exports},18492:function(t,e,s){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"loginPage"},[t.$isMobile?e("section",{staticClass:"mobileMain"},[e("header",{staticClass:"headerBox"},[e("img",{attrs:{src:s(87596),alt:"logo"},on:{click:function(e){return t.handelJump("/")}}}),e("span",{staticClass:"title"},[t._v(t._s(t.$t("user.resetPassword")))]),e("span")]),t._m(0),e("section",{staticClass:"formInput"},[e("el-form",{ref:"ruleForm",staticClass:"demo-ruleForm",attrs:{model:t.loginForm,"status-icon":"",rules:t.loginRules}},[e("el-form-item",{attrs:{prop:"email"}},[e("el-input",{attrs:{"prefix-icon":"el-icon-user",autocomplete:"off",placeholder:t.$t("user.Account")},model:{value:t.loginForm.email,callback:function(e){t.$set(t.loginForm,"email",e)},expression:"loginForm.email"}})],1),e("el-form-item",{attrs:{prop:"resetPwdCode"}},[e("div",{staticClass:"verificationCode"},[e("el-input",{attrs:{type:"text","prefix-icon":"el-icon-chat-line-square",autocomplete:"off",placeholder:t.$t("user.verificationCode")},model:{value:t.loginForm.resetPwdCode,callback:function(e){t.$set(t.loginForm,"resetPwdCode",e)},expression:"loginForm.resetPwdCode"}}),e("el-button",{staticClass:"codeBtn",attrs:{loading:t.securityLoading,disabled:t.btnDisabled},on:{click:t.handelCode}},[t.countDownTime<60&&t.countDownTime>0?e("span",[t._v(t._s(t.countDownTime))]):t._e(),t._v(t._s(t.$t(t.bthText)))])],1)]),e("el-form-item",{attrs:{prop:"password"}},[e("el-input",{attrs:{type:"password","prefix-icon":"el-icon-unlock",autocomplete:"off",showPassword:"",placeholder:t.$t("user.password")},model:{value:t.loginForm.password,callback:function(e){t.$set(t.loginForm,"password",e)},expression:"loginForm.password"}}),e("p",{staticClass:"remind",attrs:{title:t.$t("user.passwordPrompt")}},[t._v(" "+t._s(t.$t("user.passwordPrompt"))+" ")])],1),e("el-form-item",{attrs:{prop:"newPassword"}},[e("el-input",{attrs:{type:"password","prefix-icon":"el-icon-unlock",autocomplete:"off",showPassword:"",placeholder:t.$t("user.newPassword")},model:{value:t.loginForm.newPassword,callback:function(e){t.$set(t.loginForm,"newPassword",e)},expression:"loginForm.newPassword"}})],1),e("div",{staticClass:"registerBox"},[e("span",{staticStyle:{color:"#661fff"},on:{click:function(e){return t.handelJump("login")}}},[t._v(t._s(t.$t("user.returnToLogin")))])]),e("el-form-item",[e("el-button",{staticStyle:{width:"100%",background:"#661fff",color:"aliceblue","margin-top":"6%"},attrs:{loading:t.loginLoading},on:{click:function(e){return t.submitForm("ruleForm")}}},[t._v(t._s(t.$t("user.changePassword")))]),e("div",{staticStyle:{"text-align":"left"}},[e("el-radio",{attrs:{label:"zh"},on:{input:t.handelRadio},model:{value:t.radio,callback:function(e){t.radio=e},expression:"radio"}},[t._v("简体中文")]),e("el-radio",{attrs:{label:"en"},on:{input:t.handelRadio},model:{value:t.radio,callback:function(e){t.radio=e},expression:"radio"}},[t._v("English")])],1)],1)],1)],1)]):e("section",{staticClass:"loginModular"},[e("div",{staticClass:"leftBox"},[e("img",{staticClass:"logo",attrs:{src:s(79613),alt:"logo"},on:{click:t.handleClick}}),e("img",{attrs:{src:s(58455),alt:"reset password"}})]),e("div",{staticClass:"loginBox"},[e("div",{staticClass:"closeBox",on:{click:t.handleClick}},[e("i",{staticClass:"iconfont icon-guanbi1 close"})]),e("el-form",{ref:"ruleForm",staticClass:"demo-ruleForm",attrs:{model:t.loginForm,"status-icon":"",rules:t.loginRules}},[e("el-form-item",[e("p",{staticClass:"loginTitle"},[t._v(t._s(t.$t("user.resetPassword")))])]),e("el-form-item",{attrs:{prop:"email"}},[e("el-input",{attrs:{"prefix-icon":"el-icon-user",autocomplete:"off",placeholder:t.$t("user.Account")},model:{value:t.loginForm.email,callback:function(e){t.$set(t.loginForm,"email",e)},expression:"loginForm.email"}})],1),e("el-form-item",{attrs:{prop:"resetPwdCode"}},[e("div",{staticClass:"verificationCode"},[e("el-input",{attrs:{type:"text","prefix-icon":"el-icon-chat-line-square",autocomplete:"off",placeholder:t.$t("user.verificationCode")},model:{value:t.loginForm.resetPwdCode,callback:function(e){t.$set(t.loginForm,"resetPwdCode",e)},expression:"loginForm.resetPwdCode"}}),e("el-button",{staticClass:"codeBtn",attrs:{loading:t.securityLoading,disabled:t.btnDisabled},on:{click:t.handelCode}},[t.countDownTime<60&&t.countDownTime>0?e("span",[t._v(t._s(t.countDownTime))]):t._e(),t._v(t._s(t.$t(t.bthText)))])],1)]),e("el-form-item",{attrs:{prop:"password"}},[e("el-input",{attrs:{type:"password","prefix-icon":"el-icon-unlock",autocomplete:"off",showPassword:"",placeholder:t.$t("user.password")},model:{value:t.loginForm.password,callback:function(e){t.$set(t.loginForm,"password",e)},expression:"loginForm.password"}}),e("p",{staticClass:"remind",attrs:{title:t.$t("user.passwordPrompt")}},[t._v(" "+t._s(t.$t("user.passwordPrompt"))+" ")])],1),e("el-form-item",{attrs:{prop:"newPassword"}},[e("el-input",{attrs:{type:"password","prefix-icon":"el-icon-unlock",autocomplete:"off",showPassword:"",placeholder:t.$t("user.newPassword")},model:{value:t.loginForm.newPassword,callback:function(e){t.$set(t.loginForm,"newPassword",e)},expression:"loginForm.newPassword"}})],1),e("div",{staticClass:"registerBox"},[e("span",{on:{click:function(e){return t.handelJump("login")}}},[t._v(t._s(t.$t("user.returnToLogin")))])]),e("el-form-item",[e("el-button",{staticStyle:{width:"100%",background:"#661fff",color:"aliceblue","margin-top":"6%"},attrs:{loading:t.loginLoading},on:{click:function(e){return t.submitForm("ruleForm")}}},[t._v(t._s(t.$t("user.changePassword")))]),e("div",{staticStyle:{"text-align":"left"}},[e("el-radio",{attrs:{label:"zh"},on:{input:t.handelRadio},model:{value:t.radio,callback:function(e){t.radio=e},expression:"radio"}},[t._v("简体中文")]),e("el-radio",{attrs:{label:"en"},on:{input:t.handelRadio},model:{value:t.radio,callback:function(e){t.radio=e},expression:"radio"}},[t._v("English")])],1)],1)],1)],1)])])},e.Yp=[function(){var t=this,e=t._self._c;return e("div",{staticClass:"imgTop"},[e("img",{attrs:{src:s(6006),alt:"reset password",loading:"lazy"}})])}]},19821:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return n}});var a=s(40826),i=s(36838),r=i.A,o=s(81656),l=(0,o.A)(r,a.XX,a.Yp,!1,null,"723d4295",null),n=l.exports},20155:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;a(s(86425));var i=a(s(69437));e.A={mixins:[i.default],mounted(){},methods:{}}},21440:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,s(44114),s(18111),s(20116);var a=s(11503);e["default"]={data(){return{from2:[],from0:[],from1:[],params:{status:1},PrivateConsume:!1,activeName:"pending",WKRecordsLoading:!1,value1:"",labelPosition:"top",currentPage:1,msg:"",dialogVisible:!1,rowId:"",faultList:[],typeList:[],statusList:[{value:1,label:"work.pendingProcessing"},{value:2,label:"work.processed"},{value:10,label:"work.completeWK"}]}},mounted(){switch(localStorage.setItem("stateList",JSON.stringify(this.statusList)),this.activeName=sessionStorage.getItem("ActiveName"),this.activeName||(this.activeName="pending"),this.activeName){case"pending":this.params.status=1,this.fetchPrivateConsume1(this.params),this.registerRecoveryMethod("fetchPrivateConsume1",this.params);break;case"success":this.params.status=2,this.fetchPrivateConsume2(this.params),this.registerRecoveryMethod("fetchPrivateConsume2",this.params);break;case"reply":this.params.status=0,this.fetchPrivateConsume0(this.params),this.registerRecoveryMethod("fetchPrivateConsume0",this.params);break;default:break}},methods:{async fetchPrivateConsume1(t){this.WKRecordsLoading=!0;const e=await(0,a.getPrivateTicket)(t);e&&200==e.code&&(this.from1=e.data),this.WKRecordsLoading=!1},async fetchPrivateConsume0(t){this.WKRecordsLoading=!0;const e=await(0,a.getPrivateTicket)(t);e&&200==e.code&&(this.from0=e.data),this.WKRecordsLoading=!1},async fetchPrivateConsume2(t){this.WKRecordsLoading=!0;const e=await(0,a.getPrivateTicket)(t);e&&200==e.code&&(this.from2=e.data),this.WKRecordsLoading=!1},async fetchTicketPayment(t){const{data:e}=await getTicketPayment(t);e.url&&(window.location.href=e.url)},handelType2(t){if(this.typeList&&t){const e=this.typeList.find((e=>e.name==t));if(e)return e.label}return""},handelStatus2(t){if(this.statusList&&t){const e=this.statusList.find((e=>e.value==t));if(e)return this.$t(e.label)}return""},handelPhenomenon(t){if(t)return this.faultList.find((e=>e.id==t)).label},handelDetails(t){const e=this.$i18n.locale;this.$router.push({path:`/${e}/UserWorkDetails`,query:{workID:t.id}}).catch((t=>{"NavigationDuplicated"!==t.name&&console.error("路由跳转失败:",t)})),localStorage.setItem("workOrderId",t.id)},async fetchendTicket(t){this.WKRecordsLoading=!0;let e=await getEndTicket(t);e&&200==e.code&&(this.$message({message:this.$t("user.closeWK"),type:"success"}),this.dialogVisible=!1,this.params.status=0,this.fetchPrivateConsume0(this.params),this.params.status=1,this.fetchPrivateConsume1(this.params),this.params.status=2,this.fetchPrivateConsume2(this.params)),this.WKRecordsLoading=!1},handelTime(t){if(t)return`${t.split("T")[0]} ${t.split("T")[1].split(".")[0]}`},handleClick(){switch(this.activeName){case"pending":this.params.status=1,this.fetchPrivateConsume1(this.params);break;case"success":this.params.status=2,this.fetchPrivateConsume2(this.params);break;case"reply":this.params.status=0,this.fetchPrivateConsume0(this.params);break;default:break}sessionStorage.setItem("ActiveName",this.activeName)},determineInformation(){this.fetchendTicket({id:this.rowId})}}}},25225:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return n}});var a=s(84419),i=s(198),r=i.A,o=s(81656),l=(0,o.A)(r,a.XX,a.Yp,!1,null,"19141cf8",null),n=l.exports},25422:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return n}});var a=s(18492),i=s(89413),r=i.A,o=s(81656),l=(0,o.A)(r,a.XX,a.Yp,!1,null,"5cb463fb",null),n=l.exports},36838:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0,s(44114);var i=a(s(398));e.A={mixins:[i.default],methods:{goBack(){this.$router.push(`/${this.$i18n.locale}/helpCenter`)}}}},40110:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(1754));e.A={mixins:[i.default]}},40826:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.searchLoading,expression:"searchLoading"}],staticClass:"search-result-page"},[e("div",{staticClass:"result-header"},[e("div",{staticClass:"header-container"},[e("div",{staticClass:"header-left"},[e("h1",{staticClass:"page-title"},[t._v("搜索结果")]),t.searchResults.length>0?e("p",{staticClass:"search-info"},[t._v(' 关键词 "'),e("strong",[t._v(t._s(t.searchKeyword))]),t._v('" 找到 '),e("strong",[t._v(t._s(t.totalCount))]),t._v(" 条相关结果 ")]):t._e()]),e("div",{staticClass:"header-right"},[e("el-button",{attrs:{type:"primary"},on:{click:t.goBack}},[e("i",{staticClass:"el-icon-arrow-left"}),t._v(" 返回搜索 ")])],1)])]),e("div",{staticClass:"search-content"},[e("div",{staticClass:"result-container"},[t.searchResults.length>0?e("div",{staticClass:"result-list"},t._l(t.searchResults,(function(s){return e("div",{key:s.id,staticClass:"result-item",on:{click:function(e){return t.handleItemClick(s)}}},[e("div",{staticClass:"item-icon"},[s.titleUrl?e("img",{staticClass:"doc-icon",attrs:{src:s.titleUrl,alt:"fail"}}):e("i",{staticClass:"el-icon-document doc-icon-placeholder"})]),e("div",{staticClass:"item-content"},[e("h3",{staticClass:"item-title",domProps:{innerHTML:t._s(t.highlightKeyword(s.title))}}),s.subTitle?e("p",{staticClass:"item-subtitle"},[t._v(" "+t._s(s.subTitle)+" ")]):t._e(),e("div",{staticClass:"item-meta"},[e("span",{staticClass:"meta-item"},[e("i",{staticClass:"el-icon-time"}),t._v(" "+t._s(t.formatDate(s.createTime))+" ")]),e("span",{staticClass:"meta-item"},[e("i",{staticClass:"el-icon-user"}),t._v(" "+t._s(s.createUser)+" ")]),e("span",{staticClass:"meta-item"},[e("i",{staticClass:"el-icon-collection-tag"}),t._v(" "+t._s(t.getDocumentTypeName(s.type))+" ")])]),s.content?e("div",{staticClass:"item-preview"},[e("span",{domProps:{innerHTML:t._s(t.getContentPreview(s.content))}})]):t._e()]),e("div",{staticClass:"item-actions"},[e("el-button",{attrs:{type:"text",size:"small"},on:{click:function(e){return e.stopPropagation(),t.handlePreview(s)}}},[e("i",{staticClass:"el-icon-view"}),t._v(" 预览 ")])],1)])})),0):e("div",{staticClass:"no-result"},[t._m(0),e("h3",[t._v("未找到相关结果")]),e("p",[t._v('关键词 "'),e("strong",[t._v(t._s(t.searchKeyword))]),t._v('" 没有找到匹配的文档')]),e("el-button",{attrs:{type:"primary"},on:{click:t.goBack}},[t._v("重新搜索")])],1),t.searchResults.length>0?e("div",{staticClass:"pagination-container"},[e("el-pagination",{staticClass:"pagination",attrs:{"current-page":t.currentPage,"page-sizes":[10,50,100,400],total:t.totalCount,layout:"total, sizes, prev, pager, next, jumper"},on:{"current-change":t.handleCurrentChange,"size-change":t.handleSizeChange}})],1):t._e()])]),e("el-dialog",{staticClass:"preview-dialog",attrs:{title:"文档预览",visible:t.previewVisible,width:"80%","before-close":t.handlePreviewClose},on:{"update:visible":function(e){t.previewVisible=e}}},[t.previewData?e("div",{staticClass:"preview-content"},[e("h2",[t._v(t._s(t.previewData.title))]),e("div",{staticClass:"preview-meta"},[e("span",[t._v("类型:"+t._s(t.getDocumentTypeName(t.previewData.type)))]),e("span",[t._v("创建时间:"+t._s(t.formatDate(t.previewData.createTime)))]),e("span",[t._v("创建者:"+t._s(t.previewData.createUser))])]),e("div",{staticClass:"preview-body",domProps:{innerHTML:t._s(t.previewData.content)}})]):t._e()])],1)},e.Yp=[function(){var t=this,e=t._self._c;return e("div",{staticClass:"no-result-icon"},[e("i",{staticClass:"el-icon-search"})])}]},46763:function(t,e,s){s.r(e);var a,i,r=s(81656),o={},l=(0,r.A)(o,a,i,!1,null,null,null);e["default"]=l.exports},51086:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.userManagementLoading,expression:"userManagementLoading"}]},[e("div",{staticClass:"main-title"},[t._v(t._s(t.$t("backendSystem.userManagementTitle")))]),e("el-form",{ref:"formRef",staticClass:"demo-form-inline",attrs:{inline:!0,model:t.userListParams,rules:t.rules}},[e("el-form-item",{attrs:{label:t.$t("backendSystem.coin"),prop:"coin"}},[e("el-select",{ref:"screen",staticClass:"input",attrs:{size:"middle",placeholder:t.$t("personal.screen")},on:{change:function(e){return t.changeScreen(t.screenCurrency)}},model:{value:t.screenCurrency,callback:function(e){t.screenCurrency=e},expression:"screenCurrency"}},t._l(t.currencyList,(function(s){return e("el-option",{key:s.value,attrs:{label:s.label,value:s.value}},[e("div",{staticStyle:{display:"flex","align-items":"center"}},[e("img",{staticStyle:{float:"left",width:"20px"},attrs:{src:s.imgUrl}}),e("span",{staticStyle:{float:"left","margin-left":"5px"}},[t._v(" "+t._s(s.label))])])])})),1)],1),e("el-form-item",{staticStyle:{"margin-left":"5vw"},attrs:{label:t.$t("backendSystem.user"),prop:"minerUser"}},[e("el-input",{attrs:{placeholder:t.$t("backendSystem.pleaseInput"),clearable:""},on:{clear:t.handleInputClear},model:{value:t.userListParams.minerUser,callback:function(e){t.$set(t.userListParams,"minerUser",e)},expression:"userListParams.minerUser"}})],1),e("el-form-item",{staticStyle:{"margin-left":"5vw"},attrs:{label:t.$t("backendSystem.email"),prop:"user"}},[e("el-input",{attrs:{type:"email",placeholder:t.$t("backendSystem.pleaseInput"),clearable:""},on:{clear:t.handleInputClear},model:{value:t.userListParams.user,callback:function(e){t.$set(t.userListParams,"user",e)},expression:"userListParams.user"}})],1),e("el-form-item",{staticStyle:{"margin-left":"1vw"}},[e("el-button",{attrs:{type:"primary"},on:{click:t.handelQuery}},[t._v(t._s(t.$t("backendSystem.query")))])],1)],1),e("el-table",{staticStyle:{width:"100%","margin-bottom":"18px"},attrs:{data:t.tableData,border:"","header-cell-style":{"text-align":"center"},"cell-style":{"text-align":"center"},height:"60vh"}},[e("el-table-column",{attrs:{prop:"id",label:"ID",width:"60"}}),e("el-table-column",{attrs:{prop:"coin",label:t.$t("backendSystem.coin2"),width:"100","show-overflow-tooltip":""},scopedSlots:t._u([{key:"default",fn:function(s){return[e("div",{staticStyle:{display:"flex","align-items":"center","justify-content":"center"}},[e("img",{staticStyle:{width:"20px"},attrs:{src:t.handelImg(s.row.coin)}}),e("span",{staticStyle:{"margin-left":"5px"}},[t._v(t._s(s.row.coin))])])]}}])}),e("el-table-column",{attrs:{prop:"user",label:t.$t("backendSystem.email2"),width:"200","show-overflow-tooltip":""}}),e("el-table-column",{attrs:{prop:"amount",label:t.$t("backendSystem.amount2"),width:"150","show-overflow-tooltip":""}}),e("el-table-column",{attrs:{prop:"status",label:t.$t("backendSystem.status2"),width:"100"},scopedSlots:t._u([{key:"default",fn:function(s){return[e("el-tag",{attrs:{type:"1"===s.row.status?"success":"danger"}},[t._v(t._s("0"==s.row.status?t.$t("backendSystem.normal"):t.$t("backendSystem.delete")))])]}}])}),e("el-table-column",{attrs:{prop:"minerUser",label:t.$t("backendSystem.minerUser2"),width:"180","show-overflow-tooltip":""}}),e("el-table-column",{attrs:{prop:"balance",label:t.$t("backendSystem.balance2"),"show-overflow-tooltip":""}}),e("el-table-column",{attrs:{prop:"active",label:t.$t("backendSystem.active2"),width:"100","show-overflow-tooltip":""},scopedSlots:t._u([{key:"default",fn:function(s){return[e("el-tag",{attrs:{type:"1"===s.row.active?"success":"danger"}},[t._v(t._s("0"==s.row.active?t.$t("backendSystem.yes"):t.$t("backendSystem.no")))])]}}])}),e("el-table-column",{attrs:{label:t.$t("backendSystem.operation"),width:"200"},scopedSlots:t._u([{key:"default",fn:function(s){return[e("el-button",{attrs:{size:"mini",type:"primary",plain:""},on:{click:function(e){return t.handleDetails(s.row)}}},[t._v(t._s(t.$t("backendSystem.Details")))]),e("el-button",{staticStyle:{color:"#651fff",border:"1px solid #651fff"},attrs:{size:"mini"},on:{click:function(e){return t.sendEmail(s.row)}}},[t._v(t._s(t.$t("backendSystem.sendEmail")))])]}}])})],1),e("el-row",[e("el-col",{staticStyle:{display:"flex","justify-content":"center"},attrs:{span:24}},[e("el-pagination",{staticStyle:{margin:"0 auto","margin-top":"10px"},attrs:{"current-page":t.currentPage,"page-sizes":t.pageSizes,"page-size":t.userListParams.pageSize,layout:"total, sizes, prev, pager, next, jumper",total:t.total},on:{"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange,"update:currentPage":function(e){t.currentPage=e},"update:current-page":function(e){t.currentPage=e}}})],1)],1),e("el-dialog",{attrs:{title:t.$t("backendSystem.emailContent"),visible:t.dialogVisible,width:"50%","before-close":t.handleClose,"close-on-click-modal":!1},on:{"update:visible":function(e){t.dialogVisible=e}}},[e("el-form",{ref:"formRef",attrs:{model:t.senParams,rules:t.emailRules}},[e("el-form-item",{attrs:{label:t.$t("backendSystem.recipient"),prop:"to"}},[e("el-input",{attrs:{maxlength:"500",resize:"none",type:"textarea",rows:2},model:{value:t.senParams.to,callback:function(e){t.$set(t.senParams,"to",e)},expression:"senParams.to"}}),e("div",{staticStyle:{color:"#999","font-size":"12px","margin-top":"4px"}},[t._v(t._s(t.$t("backendSystem.emailRemind")))])],1),e("el-form-item",{attrs:{label:t.$t("backendSystem.subject"),prop:"subject"}},[e("el-input",{attrs:{resize:"none",maxlength:"300","show-word-limit":"",type:"textarea",rows:3},model:{value:t.senParams.subject,callback:function(e){t.$set(t.senParams,"subject",e)},expression:"senParams.subject"}})],1),e("el-form-item",{attrs:{label:t.$t("backendSystem.text"),prop:"text"}},[e("el-input",{attrs:{resize:"none",maxlength:"600","show-word-limit":"",type:"textarea",rows:8},model:{value:t.senParams.text,callback:function(e){t.$set(t.senParams,"text",e)},expression:"senParams.text"}})],1)],1),e("div",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[e("el-button",{on:{click:t.handleClose}},[t._v(t._s(t.$t("backendSystem.cancel")))]),e("el-button",{attrs:{type:"primary",loading:t.sendEmailLoading},on:{click:t.sureSendEmail}},[t._v(t._s(t.$t("backendSystem.send")))])],1)],1)],1)},e.Yp=[]},51993:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return n}});var a=s(51086),i=s(78221),r=i.A,o=s(81656),l=(0,o.A)(r,a.XX,a.Yp,!1,null,"ecb06f72",null),n=l.exports},56958:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,s(18111),s(20116),s(7588);var a=s(27409),i=s(82908);e["default"]={data(){return{luckData:{luck3d:"0",luck7d:"0",luck30d:0,luck90d:0},BlockInfoData:[],currentPage:1,currencyList:[],BlockInfoParams:{coin:"nexa",limit:10,page:1},params:{coin:"nexa"},customColor:"#C1A1FE",weekColor:"#F6C12B",monthColor:"#7DD491",MarchColor:"#F94280",ItemActive:"nexa",reportBlockLoading:!1,totalSize:0,LuckDataLoading:!1,currencyPath:`${this.$baseApi}img/nexa.png`,transactionFeeList:[{label:"mona",coin:"mona",feeShow:!1},{label:"dgb(skein)",coin:"dgbs",feeShow:!1},{coin:"dgbq",label:"dgb(qubit)",feeShow:!1},{coin:"dgbo",label:"dgb(odocrypt)",feeShow:!1}],FeeShow:!0,activeItemCoin:{value:"nexa",label:"nexa",imgUrl:`${this.$baseApi}img/nexa.png`},isInternalChange:!1}},watch:{activeItemCoin:{handler(t){this.isInternalChange||this.handleActiveItemChange(t)},deep:!0}},mounted(){this.$route.query.coin&&(this.ItemActive=this.$route.query.coin,this.currencyPath=this.$route.query.imgUrl,this.params.coin=this.$route.query.coin,this.BlockInfoParams.coin=this.$route.query.coin,this.ItemActive=this.$route.query.coin,this.handelCoinLabel(this.$route.query.coin)),this.getLuckData(this.params),this.getBlockInfoData(this.BlockInfoParams),this.registerRecoveryMethod("getLuckData",this.params),this.registerRecoveryMethod("getBlockInfoData",this.BlockInfoParams);let t=localStorage.getItem("activeItemCoin");this.activeItemCoin=JSON.parse(t),this.currencyList=JSON.parse(localStorage.getItem("currencyList")),window.addEventListener("setItem",(()=>{this.currencyList=JSON.parse(localStorage.getItem("currencyList"));let t=localStorage.getItem("activeItemCoin");this.activeItemCoin=JSON.parse(t)}))},methods:{getLuckData:(0,i.Debounce)((async function(t){this.setLoading("LuckDataLoading",!0);const e=await(0,a.getLuck)(t);e&&200==e.code&&(this.luckData=e.data),this.setLoading("LuckDataLoading",!1)}),200),getBlockInfoData:(0,i.Debounce)((async function(t){this.setLoading("reportBlockLoading",!0);const e=await(0,a.getBlockInfo)(t);e||this.setLoading("reportBlockLoading",!1),this.totalSize=e.total,this.BlockInfoData=e.rows,this.BlockInfoData.forEach(((t,e)=>{t.date=`${t.date.split("T")[0]} ${t.date.split("T")[1].split(".")[0]}`})),this.setLoading("reportBlockLoading",!1)}),200),handleActiveItemChange(t){this.currencyPath=t.imgUrl,this.params.coin=t.value,this.BlockInfoParams.coin=t.value,this.ItemActive=t.value,this.getBlockInfoData(this.BlockInfoParams),this.getLuckData(this.params),this.handelCoinLabel(t.value)},clickCurrency(t){t&&(this.luckData={},this.isInternalChange=!0,this.activeItemCoin=t,this.$addStorageEvent(1,"activeItemCoin",JSON.stringify(t)),this.$nextTick((()=>{this.isInternalChange=!1})),this.handleActiveItemChange(t))},clickItem(t){switch(this.ItemActive){case"nexa":window.open(`https://explorer.nexa.org/block-height/${t.height}`);break;case"grs":window.open(`https://chainz.cryptoid.info/grs/block.dws?${t.height}.htm`);break;case"mona":window.open(`https://mona.insight.monaco-ex.org/insight/block/${t.hash}`);break;case"rxd":window.open(`https://explorer.radiantblockchain.org/block-height/${t.height}`);break;case"enx":break;case"alph":window.open(`https://explorer.alephium.org/blocks/${t.hash}`);break;default:break}this.ItemActive.includes("dgb")&&window.open(`https://chainz.cryptoid.info/dgb/block.dws?${t.height}.htm`)},handleSizeChange(t){console.log(`每页 ${t} 条`),this.BlockInfoParams.limit=t,this.BlockInfoParams.page=1,this.currentPage=1,this.getBlockInfoData(this.BlockInfoParams)},handleCurrentChange(t){console.log(`当前页: ${t}`),this.BlockInfoParams.page=t,this.getBlockInfoData(this.BlockInfoParams)},handelCoinLabel(t){let e={coin:""};t&&(e=this.transactionFeeList.find((e=>e.coin==t)),this.FeeShow=!1),e||(this.FeeShow=!0)},handelLabel(t){return t.includes("dgb")?"dgb":t},handelCurrencyLabel(t){let e=this.currencyList.find((e=>e.value==t));return e?e.label:""}}}},58437:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return n}});var a=s(81529),i=s(75410),r=i.A,o=s(81656),l=(0,o.A)(r,a.XX,a.Yp,!1,null,"d42df632",null),n=l.exports},69437:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,s(44114),s(18111),s(22489),s(20116),s(7588),s(13579);var i=a(s(35720)),r=s(11503);e["default"]={data(){return{imgSrc:"https://studio.glassnode.com/images/crypto-icons/btc.png",navLabel:"Bitcoin (BTC)",userName:"LX",from:{title:"",kinds:"",description:"",radio:""},kindsList:[{value:"购买咨询",label:"购买咨询"},{value:"财务咨询",label:"财务咨询"},{value:"网页问题",label:"网页问题"},{value:"账户问题",label:"账户问题"},{value:"移动端问题",label:"移动端问题"},{value:"消息订阅",label:"消息订阅"},{value:"指标数据问题",label:"指标数据问题"},{value:"其他",label:"其他"}],params:[],input:1,tableData:[{num:1,time:"2022-09-01 16:00",problem:"账户问题",questionTitle:"账户不能登录",state:"已解决"}],textarea:"我是提交内容",textarea1:"我是回复内容",textarea2:"",replyInput:!0,ticketDetails:{id:"",type:"",title:"",userName:"",desc:"",responName:"",respon:"",submitTime:"",status:"",fileIds:"",files:"",responTime:""},fileList:[],fileType:["jpg","jpeg","png","mp3","aif","aiff","wav","wma","mp4","avi","rmvb"],fileSize:20,fileLimit:3,headers:{"Content-Type":"multipart/form-data"},FormDatas:null,filesId:[],paramsDownload:{id:""},paramsResponTicket:{id:"",files:"",respon:""},paramsAuditTicket:{id:"",msg:""},paramsSubmitAuditTicket:{id:""},identity:{},detailsID:"",downloadUrl:"",workOrderId:"",recordList:[],replyParams:{id:"",desc:"",files:""},orderDetailsLoading:!1,faultList:[],statusList:[{value:1,label:"work.pendingProcessing"},{value:2,label:"work.processed"},{value:10,label:"work.completeWK"}],machineCoding:[],closeDialogVisible:!1,lang:this.$i18n.locale}},mounted(){this.workOrderId=localStorage.getItem("workOrderId"),this.workOrderId&&(this.fetchTicketDetails({id:this.workOrderId}),this.registerRecoveryMethod("fetchTicketDetails",{id:this.workOrderId}))},methods:{handelStatus2(t){try{if(t){let e=this.statusList.find((e=>e.value==t)).label;return this.$t(e)}}catch{return""}},handelPhenomenon(t){if(t)return this.faultList.find((e=>e.id==t)).label},async fetchTicketDetails(t){this.orderDetailsLoading=!0;const e=await(0,r.getTicketDetails)(t);e&&200==e.code&&(this.recordList=e.data.list,this.ticketDetails=e.data),this.orderDetailsLoading=!1},async fetchContinueSubmit(t){this.orderDetailsLoading=!0;let e=await(0,r.getResubmitTicket)(t);e&&200==e.code&&(this.$message({message:this.$t("work.submitted"),type:"success"}),this.replyParams.desc="",this.fetchTicketDetails({id:this.workOrderId}),this.fileList=[]),this.orderDetailsLoading=!1},async fetchEndTicket(t){this.orderDetailsLoading=!0;let e=await(0,r.getEndTicket)(t);e&&200==e.code&&(this.$message({message:this.$t("work.WKend"),type:"success"}),this.$router.push(`/${this.lang}/workOrderRecords`)),this.orderDetailsLoading=!1,this.closeDialogVisible=!1},handelEnd(){this.closeDialogVisible=!0},confirmCols(){this.fetchEndTicket({id:this.ticketDetails.id})},handelResubmit(){this.replyParams.id=this.ticketDetails.id,this.replyParams.desc?(this.orderDetailsLoading=!0,this.fileList[0]?(this.FormDatas=new FormData,this.fileList.forEach((t=>{this.FormDatas.append("file",t)})),this.$axios({method:"post",url:`${i.default.defaults.baseURL}pool/ticket/uploadFile`,headers:this.headers,timeout:3e4,data:this.FormDatas}).then((t=>{this.replyParams.files=t.data.data.id,this.replyParams.files&&this.fetchContinueSubmit(this.replyParams)}))):this.fetchContinueSubmit(this.replyParams),this.orderDetailsLoading=!1):this.$message({message:this.$t("work.confirmInput"),type:"error"})},handelKinds(){},handelEdit(){this.replyInput=!1},handelDownload(t){if(t){this.downloadUrl=` ${i.default.defaults.baseURL}pool/ticket/downloadFile?ids=${t}`;let e=document.createElement("a");e.href=this.downloadUrl,e.click()}},handelChange(t,e){const s=t.name.slice(t.name.lastIndexOf(".")+1).toLowerCase(),a=this.fileType.includes(s),i=t.size/1024/1024<=this.fileSize;if(!a)return this.$message.error(`${this.$t("work.notSupported")} ${s}`),this.fileList=this.fileList.filter((e=>e.name!=t.name)),!1;if(!i)return this.fileList=this.fileList.filter((e=>e.name!=t.name)),this.$message.error(`${this.$t("work.notSupported2")} ${this.fileSize} MB.`),!1;let r=this.fileList.some((e=>e.name==t.name));if(r)return this.$message.warning(this.$t("work.notSupported3")),this.$refs.upload.handleRemove(t),!1;this.fileList.push(t.raw)},handleRemove(t,e){let s=this.fileName.indexOf(t.name);-1!==s&&this.fileName.splice(s,1);let a=this.fileList.indexOf(t);-1!==a&&this.fileList.splice(a,1)},handleExceed(){this.$message({type:"warning",message:this.$t("work.notSupported4")})},handleSuccess(){},handelTime(t){if(t)return`${t.split("T")[0]} ${t.split("T")[1].split(".")[0]}`}},beforeDestroy(){localStorage.setItem("workOrderId","")}}},71995:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return n}});var a=s(11685),i=s(20155),r=i.A,o=s(81656),l=(0,o.A)(r,a.XX,a.Yp,!1,null,"3554fa88",null),n=l.exports},72938:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,s(44114),s(18111),s(22489),s(7588),s(13579);var i=s(11503),r=a(s(35720));e["default"]={data(){return{ruleForm:{desc:"",files:""},rules:{desc:[{required:!0,message:this.$t("work.problemDescription"),trigger:"blur"}]},labelPosition:"top",fileList:[],fileType:["jpg","jpeg","png","mp3","aif","aiff","wav","wma","mp4","avi","rmvb"],fileSize:20,fileLimit:3,headers:{"Content-Type":"multipart/form-data"},FormDatas:null,fileName:[],filesId:[],submitWorkOrderLoading:!1}},watch:{"$i18n.locale":function(){this.translate()}},mounted(){},methods:{translate(){this.rules={desc:[{required:!0,message:this.$t("work.problemDescription"),trigger:"blur"}]}},async fetchSubmitWork(t){this.submitWorkOrderLoading=!0;const e=await(0,i.getSubmitTicket)(t);if(200==e.code){this.$message({message:e.msg,type:"success",showClose:!0});for(const t in this.ruleForm)this.ruleForm[t]="";this.fileList=[]}this.submitWorkOrderLoading=!1},submitForm(){this.$refs.ruleForm.validate((t=>{t&&(console.log("进来?"),this.submitWorkOrderLoading=!0,this.fileList[0]?(this.FormDatas=new FormData,this.fileList.forEach((t=>{this.FormDatas.append("file",t)})),this.$axios({method:"post",url:`${r.default.defaults.baseURL}pool/ticket/uploadFile`,headers:this.headers,timeout:3e4,data:this.FormDatas}).then((t=>{console.log(t,"文件返回"),200!=t.status||200==t.data.code?(this.ruleForm.files=t.data.data.id,this.ruleForm.files&&this.fetchSubmitWork(this.ruleForm)):this.$message.error(t.data.msg)}))):this.fetchSubmitWork(this.ruleForm))})),this.submitWorkOrderLoading=!1},handleExceed(){this.$message({type:"warning",message:this.$t("work.notSupported4")})},uploadFile(t){this.fileItem=t,this.fileList.push(t.file),this.fileName.push(t.file.name)},handleSuccess(){},handelDownload(t){if(t){this.downloadUrl=` ${r.default.defaults.baseURL}ticket/downloadFile?ids=${t}`;let e=document.createElement("a");e.href=this.downloadUrl,e.click()}},handleRemove(t,e){let s=this.fileName.indexOf(t.name);-1!==s&&this.fileName.splice(s,1);let a=this.fileList.indexOf(t);-1!==a&&this.fileList.splice(a,1)},beforeUpload(t){const e=t.name.slice(t.name.lastIndexOf(".")+1).toLowerCase(),s=this.fileType.includes(e),a=t.size/1024/1024<=this.fileSize;return s?a?void 0:(this.$message.error(`${this.$t("work.notSupported2")}${this.fileSize} MB.`),!1):(this.$message.error(`${this.$t("work.notSupported")}:${e}`),!1)},handelChange(t,e){const s=t.name.slice(t.name.lastIndexOf(".")+1).toLowerCase(),a=this.fileType.includes(s),i=t.size/1024/1024<=this.fileSize;if(!a)return this.$message.error(`${this.$t("work.notSupported")} ${s}`),this.fileList=this.fileList.filter((e=>e.name!=t.name)),!1;if(!i)return this.fileList=this.fileList.filter((e=>e.name!=t.name)),this.$message.error(`${this.$t("work.notSupported2")} ${this.fileSize} MB.`),!1;let r=this.fileList.some((e=>e.name==t.name));if(r)return this.$message.warning(this.$t("work.notSupported3")),this.$refs.upload.handleRemove(t),!1;this.fileName.push(t.name),this.fileList.push(t.raw)}}}},73836:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return n}});var a=s(83625),i=s(2981),r=i.A,o=s(81656),l=(0,o.A)(r,a.XX,a.Yp,!1,null,"7b3906e4",null),n=l.exports},75410:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(56958));e.A={mixins:[i.default]}},75904:function(t,e,s){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"loginPage"},[t.$isMobile?e("section",{staticClass:"mobileMain"},[e("header",{staticClass:"headerBox2"},[e("img",{attrs:{src:s(87596),alt:"logo"},on:{click:function(e){return t.handelJump("/")}}}),e("span",{staticClass:"title"},[t._v(t._s(t.$t("home.MRegister")))]),e("span")]),t._m(0),e("section",{staticClass:"formInput"},[e("el-form",{ref:"registerForm",staticClass:"demo-ruleForm",attrs:{model:t.registerForm,"status-icon":"",rules:t.registerRules}},[e("el-form-item",{attrs:{prop:"email"}},[e("el-input",{attrs:{type:"email","prefix-icon":"el-icon-message",autocomplete:"off",placeholder:t.$t("user.Account")},model:{value:t.registerForm.email,callback:function(e){t.$set(t.registerForm,"email",e)},expression:"registerForm.email"}})],1),e("el-form-item",{attrs:{prop:"emailCode"}},[e("div",{staticClass:"verificationCode"},[e("el-input",{attrs:{type:"text","prefix-icon":"el-icon-chat-line-square",autocomplete:"off",placeholder:t.$t("user.verificationCode")},model:{value:t.registerForm.emailCode,callback:function(e){t.$set(t.registerForm,"emailCode",e)},expression:"registerForm.emailCode"}}),e("el-button",{staticClass:"codeBtn",attrs:{disabled:t.btnDisabled},on:{click:t.handelCode}},[t.countDownTime<60&&t.countDownTime>0?e("span",[t._v(t._s(t.countDownTime))]):t._e(),t._v(t._s(t.$t(t.bthText)))])],1)]),e("el-form-item",{attrs:{prop:"password"}},[e("el-input",{attrs:{title:t.$t("user.passwordPrompt"),type:"password","prefix-icon":"el-icon-unlock",autocomplete:"off",placeholder:t.$t("user.password"),"show-password":""},model:{value:t.registerForm.password,callback:function(e){t.$set(t.registerForm,"password",e)},expression:"registerForm.password"}}),e("p",{staticClass:"remind",attrs:{title:t.$t("user.passwordPrompt")}},[t._v(" "+t._s(t.$t("user.passwordPrompt"))+" ")])],1),e("el-form-item",{attrs:{prop:"confirmPassword"}},[e("el-input",{attrs:{type:"password","prefix-icon":"el-icon-unlock",autocomplete:"off",placeholder:t.$t("user.confirmPassword"),"show-password":""},model:{value:t.registerForm.confirmPassword,callback:function(e){t.$set(t.registerForm,"confirmPassword",e)},expression:"registerForm.confirmPassword"}})],1),e("div",{staticClass:"register"},[e("span",[t._v(t._s(t.$t("user.havingAnAccount"))+" "),e("span",{staticClass:"goLogin",on:{click:t.goLogin}},[t._v(t._s(t.$t("user.login")))])])]),e("el-form-item",[e("el-button",{staticStyle:{width:"100%",background:"#661fff",color:"aliceblue","margin-top":"6%"},attrs:{loading:t.registerLoading},on:{click:t.handleRegister}},[t._v(t._s(t.$t("user.register")))]),e("div",{staticStyle:{"text-align":"left"}},[e("el-radio",{attrs:{label:"zh"},on:{input:t.handelRadio},model:{value:t.radio,callback:function(e){t.radio=e},expression:"radio"}},[t._v("简体中文")]),e("el-radio",{attrs:{label:"en"},on:{input:t.handelRadio},model:{value:t.radio,callback:function(e){t.radio=e},expression:"radio"}},[t._v("English")])],1)],1)],1)],1)]):e("section",{staticClass:"loginModular"},[e("div",{staticClass:"leftBox"},[e("img",{staticClass:"logo",attrs:{src:s(79613),alt:"logo"},on:{click:t.handleClick}}),e("img",{attrs:{src:s(29500),alt:"Register Mining Pool"}})]),e("div",{staticClass:"loginBox"},[e("div",{staticClass:"closeBox",on:{click:t.handleClick}},[e("i",{staticClass:"iconfont icon-guanbi1 close"})]),e("el-form",{ref:"registerForm",staticClass:"demo-ruleForm",attrs:{model:t.registerForm,"status-icon":"",rules:t.registerRules}},[e("el-form-item",[e("p",{staticClass:"loginTitle"},[t._v(t._s(t.$t("user.newUser")))])]),e("el-form-item",{attrs:{prop:"email"}},[e("el-input",{attrs:{type:"email","prefix-icon":"el-icon-message",autocomplete:"off",placeholder:t.$t("user.Account")},model:{value:t.registerForm.email,callback:function(e){t.$set(t.registerForm,"email",e)},expression:"registerForm.email"}})],1),e("el-form-item",{attrs:{prop:"emailCode"}},[e("div",{staticClass:"verificationCode"},[e("el-input",{attrs:{type:"text","prefix-icon":"el-icon-chat-line-square",autocomplete:"off",placeholder:t.$t("user.verificationCode")},model:{value:t.registerForm.emailCode,callback:function(e){t.$set(t.registerForm,"emailCode",e)},expression:"registerForm.emailCode"}}),e("el-button",{staticClass:"codeBtn",attrs:{disabled:t.btnDisabled},on:{click:t.handelCode}},[t.countDownTime<60&&t.countDownTime>0?e("span",[t._v(t._s(t.countDownTime))]):t._e(),t._v(t._s(t.$t(t.bthText)))])],1)]),e("el-form-item",{attrs:{prop:"password"}},[e("el-input",{attrs:{title:t.$t("user.passwordPrompt"),type:"password","prefix-icon":"el-icon-unlock",autocomplete:"off",placeholder:t.$t("user.password"),"show-password":""},model:{value:t.registerForm.password,callback:function(e){t.$set(t.registerForm,"password",e)},expression:"registerForm.password"}}),e("p",{staticClass:"remind",attrs:{title:t.$t("user.passwordPrompt")}},[t._v(" "+t._s(t.$t("user.passwordPrompt"))+" ")])],1),e("el-form-item",{attrs:{prop:"confirmPassword"}},[e("el-input",{attrs:{type:"password","prefix-icon":"el-icon-unlock",autocomplete:"off",placeholder:t.$t("user.confirmPassword"),"show-password":""},model:{value:t.registerForm.confirmPassword,callback:function(e){t.$set(t.registerForm,"confirmPassword",e)},expression:"registerForm.confirmPassword"}})],1),e("div",{staticClass:"register"},[e("span",[t._v(t._s(t.$t("user.havingAnAccount"))+" "),e("span",{staticClass:"goLogin",on:{click:t.goLogin}},[t._v(t._s(t.$t("user.login")))])])]),e("el-form-item",[e("el-button",{staticStyle:{width:"100%",background:"#661fff",color:"aliceblue","margin-top":"6%"},attrs:{loading:t.registerLoading},on:{click:t.handleRegister}},[t._v(t._s(t.$t("user.register")))]),e("div",{staticStyle:{"text-align":"left"}},[e("el-radio",{attrs:{label:"zh"},on:{input:t.handelRadio},model:{value:t.radio,callback:function(e){t.radio=e},expression:"radio"}},[t._v("简体中文")]),e("el-radio",{attrs:{label:"en"},on:{input:t.handelRadio},model:{value:t.radio,callback:function(e){t.radio=e},expression:"radio"}},[t._v("English")])],1)],1)],1)],1)])])},e.Yp=[function(){var t=this,e=t._self._c;return e("div",{staticClass:"imgTop"},[e("img",{attrs:{src:s(11427),alt:"register",loading:"lazy"}})])}]},78221:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(2095));e.A={mixins:[i.default]}},79320:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.submitWorkOrderLoading,expression:"submitWorkOrderLoading"}],staticClass:"submitWorkOrder"},[t.$isMobile?e("section",{staticClass:"WorkOrder"},[e("h3",[t._v(t._s(t.$t("work.SubmitWK")))]),e("el-form",{ref:"ruleForm",staticClass:"demo-ruleForm",attrs:{model:t.ruleForm,rules:t.rules,"label-width":"100px","label-position":t.labelPosition}},[e("el-form-item",{attrs:{label:t.$t("work.problem"),prop:"desc"}},[e("el-input",{staticStyle:{width:"100%"},attrs:{type:"textarea",resize:"none",autosize:{minRows:5,maxRows:10},placeholder:t.$t("work.PleaseEnter"),maxlength:"250","show-word-limit":""},model:{value:t.ruleForm.desc,callback:function(e){t.$set(t.ruleForm,"desc",e)},expression:"ruleForm.desc"}})],1),e("el-form-item",{staticStyle:{width:"100%"}},[e("div",{staticStyle:{width:"100%","font-weight":"600",color:"rgba(0,0,0,0.7)"}},[t._v(t._s(t.$t("work.enclosure")))]),e("p",{staticClass:"prompt"},[t._v(" "+t._s(t.$t("work.fileType"))+":jpg, jpeg, png, mp3, aif, aiff, wav, wma, mp4, avi, rmvb ")]),e("el-upload",{ref:"upload",staticClass:"upload-demo",attrs:{drag:"",action:"",multiple:"",limit:t.fileLimit,"on-exceed":t.handleExceed,"on-remove":t.handleRemove,"before-upload":t.beforeUpload,"file-list":t.fileList,"on-change":t.handelChange,"show-file-list":"","auto-upload":!1}},[e("i",{staticClass:"el-icon-upload"}),e("div",{staticClass:"el-upload__text"},[t._v(" "+t._s(t.$t("work.fileCharacters"))),e("em",[t._v(" "+t._s(t.$t("work.fileCharacters2")))])])])],1),e("el-form-item",[e("el-button",{staticClass:"elBtn",staticStyle:{width:"200px"},attrs:{type:"plain"},on:{click:t.submitForm}},[t._v(" "+t._s(t.$t("work.submit")))])],1)],1)],1):e("section",{staticClass:"WorkOrder"},[e("h3",[t._v(t._s(t.$t("work.SubmitWK")))]),e("el-form",{ref:"ruleForm",staticClass:"demo-ruleForm",attrs:{model:t.ruleForm,rules:t.rules,"label-width":"100px","label-position":t.labelPosition}},[e("el-form-item",{attrs:{label:t.$t("work.problem"),prop:"desc"}},[e("el-input",{staticStyle:{width:"100%"},attrs:{type:"textarea",resize:"none",autosize:{minRows:5,maxRows:10},placeholder:t.$t("work.PleaseEnter"),maxlength:"250","show-word-limit":""},model:{value:t.ruleForm.desc,callback:function(e){t.$set(t.ruleForm,"desc",e)},expression:"ruleForm.desc"}})],1),e("el-form-item",{staticStyle:{width:"50%"}},[e("div",{staticStyle:{width:"100%","font-weight":"600",color:"rgba(0,0,0,0.7)"}},[t._v(t._s(t.$t("work.enclosure")))]),e("p",{staticClass:"prompt"},[t._v(" "+t._s(t.$t("work.fileType"))+":jpg, jpeg, png, mp3, aif, aiff, wav, wma, mp4, avi, rmvb ")]),e("el-upload",{ref:"upload",staticClass:"upload-demo",attrs:{drag:"",action:"",multiple:"",limit:t.fileLimit,"on-exceed":t.handleExceed,"on-remove":t.handleRemove,"before-upload":t.beforeUpload,"file-list":t.fileList,"on-change":t.handelChange,"show-file-list":"","auto-upload":!1}},[e("i",{staticClass:"el-icon-upload"}),e("div",{staticClass:"el-upload__text"},[t._v(" "+t._s(t.$t("work.fileCharacters"))),e("em",[t._v(" "+t._s(t.$t("work.fileCharacters2")))])])])],1),e("el-form-item",[e("el-button",{staticClass:"elBtn",staticStyle:{width:"200px"},attrs:{type:"plain"},on:{click:t.submitForm}},[t._v(" "+t._s(t.$t("work.submit")))])],1)],1)],1)])},e.Yp=[]},80238:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,s(44114),s(18111),s(20116);a(s(76466));var i=s(11503);e["default"]={data(){return{from0:[],from1:[],from2:[],from10:[],params:{page:1,limit:10,status:1},rechargeRecord:!1,activeName:"pendingProcessing",workBKLoading:!1,options:[{value:1,label:"待处理"},{value:3,label:"等待收货中"},{value:5,label:"已报价,等待付款"},{value:6,label:"已付款"},{value:7,label:"正在维修"},{value:8,label:"维修完成,等待发回"},{value:9,label:"已发回"},{value:10,label:"已完结"},{value:20,label:"确认收款中"},{value:21,label:"待寄件"}],value1:"",labelPosition:"top",formLabelAlign:{name:"",region:"",type:""},iconShow:!1,totalLimit0:0,totalLimit1:0,totalLimit2:0,totalLimit10:0,currentPage0:1,currentPage1:1,currentPage2:1,currentPage10:1,pageSizes:[10,50,100,300],faultList:[{id:1,name:"整机无算力",label:"user.fault"},{id:2,name:"某一块板无算力",label:"user.fault2"},{id:3,name:"整机算力过低",label:"user.fault3"},{id:4,name:"某一块板算力过低",label:"user.fault4"},{id:5,name:"其他故障",label:"user.fault5"}],typeList:[],statusList:[{value:1,label:"work.pendingProcessing"},{value:2,label:"work.processed"},{value:10,label:"work.completeWK"}],lang:this.$i18n.locale}},watch:{params:{handler(t){t.low||t.high?this.iconShow=!0:this.iconShow=!1},deep:!0}},mounted(){switch(this.activeName=sessionStorage.getItem("helpActiveName"),this.activeName||(this.activeName="pendingProcessing"),this.activeName){case"all":this.params.status=0,this.fetchRechargeRecord0(this.params),this.registerRecoveryMethod("fetchRechargeRecord0",this.params);break;case"pending":this.params.status=2,this.fetchRechargeRecord2(this.params),this.registerRecoveryMethod("fetchRechargeRecord2",this.params);break;case"Finished":this.params.status=10,this.fetchRechargeRecord10(this.params),this.registerRecoveryMethod("fetchRechargeRecord10",this.params);break;case"pendingProcessing":this.params.status=1,this.fetchRechargeRecord1(this.params),this.registerRecoveryMethod("fetchRechargeRecord1",this.params);break;default:break}},methods:{async fetchBKendTicket(t){this.workBKLoading=!0;const e=await(0,i.getBKendTicket)(t);if(e&&200==e.code)switch(this.$message({message:this.$t("work.WKend"),type:"success"}),this.activeName){case"all":this.params.status=0,this.fetchRechargeRecord0(this.params);break;case"pending":this.params.status=2,this.fetchRechargeRecord2(this.params);break;case"Finished":this.params.status=10,this.fetchRechargeRecord10(this.params);break;case"pendingProcessing":this.params.status=1,this.fetchRechargeRecord1(this.params);break;default:break}this.workBKLoading=!1},handelType2(t){if(t)return this.typeList.find((e=>e.name==t)).label},handelStatus2(t){if(this.statusList&&t){const e=this.statusList.find((e=>e.value==t));if(e)return e.label}return""},async fetchRechargeRecord0(t){this.workBKLoading=!0;const e=await(0,i.getTicketList)(t);this.totalLimit0=e.total,this.from0=e.rows,this.workBKLoading=!1},async fetchRechargeRecord1(t){this.workBKLoading=!0;const e=await(0,i.getTicketList)(t);console.log(e,"哦客服"),this.from1=e.rows,this.totalLimit1=e.total,this.workBKLoading=!1},async fetchRechargeRecord2(t){this.workBKLoading=!0;const e=await(0,i.getTicketList)(t);this.from2=e.rows,this.totalLimit2=e.total,this.workBKLoading=!1},async fetchRechargeRecord10(t){this.workBKLoading=!0;const e=await(0,i.getTicketList)(t);this.from10=e.rows,this.totalLimit10=e.total,this.workBKLoading=!1},handelDetails(t){this.$router.push({path:`/${this.lang}/BKWorkDetails`,query:{totalID:t.id}}).catch((t=>{"NavigationDuplicated"!==t.name&&console.error("路由跳转失败:",t)})),localStorage.setItem("totalID",t.id)},handelPhenomenon(t){if(t)return this.faultList.find((e=>e.id==t)).label},handelTime(t){if(t)return`${t.split("T")[0]} ${t.split("T")[1].split(".")[0]}`},handleChange(){if(this.value1)this.params.start=this.value1[0],this.params.end=this.value1[1];else switch(this.params.start="",this.params.end="",this.activeName){case"all":this.params.type=2,this.fetchRechargeRecord2(this.params);break;case"support":this.params.type=0,this.fetchRechargeRecord0(this.params);break;case"service":this.params.type=1,this.fetchRechargeRecord1(this.params);break;default:break}},handleSizeChange(t){switch(console.log(`每页 ${t} 条`),this.params.limit=t,this.params.page=1,this.activeName){case"all":this.params.status=0,this.fetchRechargeRecord0(this.params);break;case"pending":this.params.status=2,this.fetchRechargeRecord2(this.params);break;case"Finished":this.params.status=10,this.fetchRechargeRecord10(this.params);break;case"pendingProcessing":this.params.status=1,this.fetchRechargeRecord1(this.params);break;default:break}this.currentPage10=1,this.currentPage1=1,this.currentPage2=1,this.currentPage0=1},handleCurrentChange(t){switch(console.log(`当前页: ${t}`),this.params.page=t,this.activeName){case"all":this.params.status=0,this.fetchRechargeRecord0(this.params);break;case"pending":this.params.status=2,this.fetchRechargeRecord2(this.params);break;case"Finished":this.params.status=10,this.fetchRechargeRecord10(this.params);break;case"pendingProcessing":this.params.status=1,this.fetchRechargeRecord1(this.params);break;default:break}},handleElTabs(t,e){switch(sessionStorage.setItem("helpActiveName",t.name),this.params.page=1,this.params.limit=10,this.activeName){case"all":this.params.status=0,this.fetchRechargeRecord0(this.params);break;case"pending":this.params.status=2,this.fetchRechargeRecord2(this.params);break;case"Finished":this.params.status=10,this.fetchRechargeRecord10(this.params);break;case"pendingProcessing":this.params.status=1,this.fetchRechargeRecord1(this.params);break;default:break}},handleClick(){this.params.address=""},handelCloseWork(t){this.fetchBKendTicket({id:t.id})}}}},81529:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"Block"},[t.$isMobile?e("section",{directives:[{name:"loading",rawName:"v-loading",value:t.reportBlockLoading,expression:"reportBlockLoading"}]},[e("div",{staticClass:"currencySelect"},[e("el-menu",{staticClass:"el-menu-demo",attrs:{mode:"horizontal"}},[e("el-submenu",{staticStyle:{background:"transparent"},attrs:{index:"2"}},[e("template",{slot:"title"},[e("span",{ref:"coinSelect",staticClass:"coinSelect"},[e("img",{attrs:{src:t.currencyPath,alt:"coin"}}),e("span",[t._v(t._s(t.handelCurrencyLabel(t.params.coin)))])])]),e("ul",{staticClass:"moveCurrencyBox"},t._l(t.currencyList,(function(s){return e("li",{key:s.value,on:{click:function(e){return t.clickCurrency(s)}}},[e("img",{attrs:{src:s.img,alt:"coin",loading:"lazy"}}),e("p",[t._v(t._s(s.label))])])})),0)],2)],1)],1),e("div",{directives:[{name:"show",rawName:"v-show",value:"enx"!=this.activeItemCoin.value&&"alph"!=this.activeItemCoin.value,expression:"this.activeItemCoin.value != 'enx' && this.activeItemCoin.value != 'alph'"}],staticClass:"luckyBox"},[e("div",{staticClass:"luckyItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("home.lucky3")))]),e("span",{staticClass:"text"},[t._v(t._s(t.luckData.luck3d)+"%")])]),e("div",{staticClass:"luckyItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("home.lucky7")))]),e("span",{staticClass:"text"},[t._v(t._s(t.luckData.luck7d)+"%")])]),t.luckData.luck30d?e("div",{staticClass:"luckyItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("home.lucky30")))]),e("span",{staticClass:"text"},[t._v(t._s(t.luckData.luck30d)+"%")])]):t._e(),t.luckData.luck90d?e("div",{staticClass:"luckyItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("home.lucky90")))]),e("span",{staticClass:"text"},[t._v(t._s(t.luckData.luck90d)+"%")])]):t._e()]),e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{attrs:{title:t.$t("home.blockHeight")}},[t._v(t._s(t.$t("home.blockHeight")))]),e("span",{attrs:{title:t.$t("home.blockingTime")}},[t._v(t._s(t.$t("home.blockingTime")))])]),e("el-collapse",{attrs:{accordion:""}},t._l(t.BlockInfoData,(function(s){return e("el-collapse-item",{key:s.hash,attrs:{name:s.hash}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",[t._v(t._s(s.height))]),e("span",[t._v(t._s(s.date))])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("home.blockRewards"))+" ("+t._s(t.handelLabel(t.BlockInfoParams.coin))+")")]),e("p",[t._v(t._s(s.reward))])])]),e("div",{attrs:{id:"hash"},on:{click:function(e){return t.clickItem(s)}}},[e("p",[t._v(t._s(t.$t("home.blockHash")))]),e("p",{staticClass:"text"},[t._v(t._s(s.hash)+" ")])])],2)})),1),e("div",{staticClass:"paginationBox"},[e("el-pagination",{staticStyle:{"margin-top":"10px","margin-bottom":"10px"},attrs:{"current-page":t.currentPage,"page-sizes":[10,20,50,200],"page-size":10,layout:"sizes, prev, pager, next",total:t.totalSize},on:{"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange,"update:currentPage":function(e){t.currentPage=e},"update:current-page":function(e){t.currentPage=e}}})],1)],1)]):e("div",[e("section",{staticClass:"BlockTop"},[e("el-row",[e("el-col",{attrs:{xs:24,sm:24,md:24,lg:12,xl:12}},[e("div",{staticClass:"currencyBox"},t._l(t.currencyList,(function(s){return e("div",{key:s.value,staticClass:"sunCurrency",on:{click:function(e){return t.clickCurrency(s)}}},[e("img",{staticClass:"currency-logo lazy lazy-coin-logo",attrs:{src:s.img}}),e("span",{class:{active:t.ItemActive==s.value}},[t._v(t._s(s.label))])])})),0)]),e("el-col",{attrs:{xs:24,sm:24,md:24,lg:12,xl:12}},[e("div",{directives:[{name:"show",rawName:"v-show",value:"enx"!=this.activeItemCoin.value&&"alph"!=this.activeItemCoin.value,expression:"this.activeItemCoin.value != 'enx' && this.activeItemCoin.value != 'alph'"}],staticClass:"luckyBox"},[e("div",{staticClass:"luckyItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("home.lucky3")))]),e("span",{staticClass:"text"},[t._v(t._s(t.luckData.luck3d)+"%")])]),e("div",{staticClass:"luckyItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("home.lucky7")))]),e("span",{staticClass:"text"},[t._v(t._s(t.luckData.luck7d)+"%")])]),t.luckData.luck30d?e("div",{staticClass:"luckyItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("home.lucky30")))]),e("span",{staticClass:"text"},[t._v(t._s(t.luckData.luck30d)+"%")])]):t._e(),t.luckData.luck90d?e("div",{staticClass:"luckyItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("home.lucky90")))]),e("span",{staticClass:"text"},[t._v(t._s(t.luckData.luck90d)+"%")])]):t._e()])])],1)],1),e("el-row",[e("el-col",{attrs:{xs:24,sm:24,md:24,lg:24,xl:24}},[e("div",{staticClass:"reportBlock"},[e("div",{staticClass:"reportBlockBox"},[e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.reportBlockLoading,expression:"reportBlockLoading"}],staticClass:"belowTable"},[e("div",{staticClass:"table-title"},[e("span",{attrs:{title:t.$t("home.blockHeight")}},[t._v(t._s(t.$t("home.blockHeight")))]),e("span",{attrs:{title:t.$t("home.blockingTime")}},[t._v(t._s(t.$t("home.blockingTime")))]),e("span",{staticClass:"hash",attrs:{title:t.$t("home.blockHash")}},[t._v(t._s(t.$t("home.blockHash")))]),e("div",{staticClass:"blockRewards"},[t._v(t._s(t.$t("home.blockRewards"))+" ("+t._s(t.handelLabel(t.BlockInfoParams.coin))+") ")])]),e("ul",t._l(t.BlockInfoData,(function(s){return e("li",{key:s.hash,staticClass:"currency-list",on:{click:function(e){return t.clickItem(s)}}},[e("span",[t._v(t._s(s.height))]),e("span",[t._v(t._s(s.date))]),e("span",{staticClass:"hash",attrs:{title:s.hash}},[t._v(t._s(s.hash))]),e("span",{staticClass:"reward",attrs:{title:s.reward}},[t._v(t._s(s.reward))])])})),0),e("el-pagination",{staticClass:"pageBox",attrs:{"current-page":t.currentPage,"page-sizes":[10,20,50,200],"page-size":10,layout:"total, sizes, prev, pager, next, jumper",total:t.totalSize},on:{"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange,"update:currentPage":function(e){t.currentPage=e},"update:current-page":function(e){t.currentPage=e}}})],1)])])])],1)],1)])},e.Yp=[]},83240:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(21440));e.A={mixins:[i.default]}},83443:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.WKRecordsLoading,expression:"WKRecordsLoading"}],staticClass:"workOrderRecords"},[t.$isMobile?e("section",{staticClass:"workMain"},[e("h3",[t._v(t._s(t.$t("personal.workOrderRecord")))]),e("el-tabs",{staticStyle:{width:"100%"},on:{"tab-click":t.handleClick},model:{value:t.activeName,callback:function(e){t.activeName=e},expression:"activeName"}},[e("el-tab-pane",{staticClass:"pendingMain",attrs:{label:t.$t("work.pending"),name:"pending"}},[e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{attrs:{title:t.$t("work.WorkID")}},[t._v("ID")]),e("span",{attrs:{title:t.$t("work.submissionTime")}},[t._v(t._s(t.$t("work.status")))]),e("span",{attrs:{title:t.$t("work.submissionTime")}},[t._v(t._s(t.$t("work.operation")))])]),e("div",{staticClass:"rollContentBox"},[e("el-collapse",{attrs:{accordion:""}},t._l(t.from1,(function(s){return e("el-collapse-item",{key:s.id,attrs:{name:s.id}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",[t._v(t._s(s.id))]),e("span",[t._v(t._s(t.$t(t.handelStatus2(s.status))))]),e("span",{on:{click:function(e){return t.handelDetails(s)}}},[t._v(" "+t._s(t.$t("work.details")))])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("work.submissionTime"))+":")]),e("p",[t._v(t._s(t.handelTime(s.date)))])])]),e("div",{attrs:{id:"hash"}},[e("p",[t._v(t._s(t.$t("work.mailbox"))+": ")]),e("p",[t._v(t._s(s.email))])])],2)})),1)],1)])]),e("el-tab-pane",{attrs:{label:t.$t("work.completeWK"),name:"success"}},[e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{attrs:{title:t.$t("work.WorkID")}},[t._v("ID")]),e("span",{attrs:{title:t.$t("work.submissionTime")}},[t._v(t._s(t.$t("work.status")))]),e("span",{attrs:{title:t.$t("work.submissionTime")}},[t._v(t._s(t.$t("work.operation")))])]),e("div",{staticClass:"rollContentBox"},[e("el-collapse",{attrs:{accordion:""}},t._l(t.from2,(function(s){return e("el-collapse-item",{key:s.id,attrs:{name:s.id}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",[t._v(t._s(s.id))]),e("span",[t._v(t._s(t.$t(t.handelStatus2(s.status))))]),e("span",{on:{click:function(e){return t.handelDetails(s)}}},[t._v(" "+t._s(t.$t("work.details")))])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("work.submissionTime"))+":")]),e("p",[t._v(t._s(t.handelTime(s.date)))])])]),e("div",{attrs:{id:"hash"}},[e("p",[t._v(t._s(t.$t("work.mailbox"))+": ")]),e("p",[t._v(t._s(s.email))])])],2)})),1)],1)])]),e("el-tab-pane",{attrs:{label:t.$t("work.allWK"),name:"reply"}},[e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{attrs:{title:t.$t("work.WorkID")}},[t._v("ID")]),e("span",{attrs:{title:t.$t("work.submissionTime")}},[t._v(t._s(t.$t("work.status")))]),e("span",{attrs:{title:t.$t("work.submissionTime")}},[t._v(t._s(t.$t("work.operation")))])]),e("div",{staticClass:"rollContentBox"},[e("el-collapse",{attrs:{accordion:""}},t._l(t.from0,(function(s){return e("el-collapse-item",{key:s.id,attrs:{name:s.id}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",[t._v(t._s(s.id))]),e("span",[t._v(t._s(t.$t(t.handelStatus2(s.status))))]),e("span",{on:{click:function(e){return t.handelDetails(s)}}},[t._v(" "+t._s(t.$t("work.details")))])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("work.submissionTime"))+":")]),e("p",[t._v(t._s(t.handelTime(s.date)))])])]),e("div",{attrs:{id:"hash"}},[e("p",[t._v(t._s(t.$t("work.mailbox"))+": ")]),e("p",[t._v(t._s(s.email))])])],2)})),1)],1)])])],1)],1):e("section",{staticClass:"workBK"},[e("el-row",[e("el-col",{staticStyle:{display:"flex","align-items":"center"},attrs:{span:24}},[e("h2",[t._v(t._s(t.$t("personal.workOrderRecord")))]),e("i",{staticClass:"i ishuaxin1 Refresh"})])],1),e("el-tabs",{on:{"tab-click":t.handleClick},model:{value:t.activeName,callback:function(e){t.activeName=e},expression:"activeName"}},[e("el-tab-pane",{staticClass:"pendingMain",attrs:{label:t.$t("work.pending"),name:"pending"}},[e("el-table",{staticClass:"table",staticStyle:{width:"100%","text-transform":"none"},attrs:{"header-cell-style":{"text-align":"center"},"cell-style":{"text-align":"center"},data:t.from1,"max-height":"600",stripe:""}},[e("el-table-column",{attrs:{prop:"id",label:t.$t("work.WorkID")}}),e("el-table-column",{attrs:{prop:"date",label:t.$t("work.submissionTime")},scopedSlots:t._u([{key:"default",fn:function(s){return[e("span",[t._v(t._s(t.handelTime(s.row.date)))])]}}])}),e("el-table-column",{attrs:{prop:"email",label:t.$t("work.mailbox"),"show-overflow-tooltip":!0}}),e("el-table-column",{attrs:{prop:"status",label:t.$t("work.status")},scopedSlots:t._u([{key:"default",fn:function(s){return[e("span",[t._v(" "+t._s(t.$t(t.handelStatus2(s?.row?.status)))+" ")])]}}])}),e("el-table-column",{attrs:{fixed:"right",label:t.$t("work.operation")},scopedSlots:t._u([{key:"default",fn:function(s){return[e("el-button",{attrs:{type:"text",size:"small"},on:{click:function(e){return t.handelDetails(s.row)}}},[t._v(" "+t._s(t.$t("work.details"))+" ")])]}}])})],1)],1),e("el-tab-pane",{attrs:{label:t.$t("work.completeWK"),name:"success"}},[e("el-table",{staticClass:"table",staticStyle:{width:"100%","text-transform":"none"},attrs:{"header-cell-style":{"text-align":"center"},"cell-style":{"text-align":"center"},data:t.from2,"max-height":"600",stripe:""}},[e("el-table-column",{attrs:{prop:"id",label:t.$t("work.WorkID")}}),e("el-table-column",{attrs:{prop:"date",label:t.$t("work.submissionTime")},scopedSlots:t._u([{key:"default",fn:function(s){return[e("span",[t._v(t._s(t.handelTime(s.row.date)))])]}}])}),e("el-table-column",{attrs:{prop:"email",label:t.$t("work.mailbox"),"show-overflow-tooltip":!0}}),e("el-table-column",{attrs:{prop:"status",label:t.$t("work.status")},scopedSlots:t._u([{key:"default",fn:function(s){return[e("span",[t._v(" "+t._s(t.$t(t.handelStatus2(s?.row?.status)))+" ")])]}}])}),e("el-table-column",{attrs:{fixed:"right",label:t.$t("work.operation")},scopedSlots:t._u([{key:"default",fn:function(s){return[e("el-button",{attrs:{type:"text",size:"small"},on:{click:function(e){return t.handelDetails(s.row)}}},[t._v(" "+t._s(t.$t("work.details"))+" ")])]}}])})],1)],1),e("el-tab-pane",{attrs:{label:t.$t("work.allWK"),name:"reply"}},[e("el-table",{staticClass:"table",staticStyle:{width:"100%","text-transform":"none"},attrs:{"header-cell-style":{"text-align":"center"},"cell-style":{"text-align":"center"},data:t.from0,stripe:"","max-height":"600"}},[e("el-table-column",{attrs:{prop:"id",label:t.$t("work.WorkID")}}),e("el-table-column",{attrs:{prop:"date",label:t.$t("work.submissionTime")},scopedSlots:t._u([{key:"default",fn:function(s){return[e("span",[t._v(t._s(t.handelTime(s.row.date)))])]}}])}),e("el-table-column",{attrs:{prop:"email",label:t.$t("work.mailbox"),"show-overflow-tooltip":!0}}),e("el-table-column",{attrs:{prop:"status",label:t.$t("work.status")},scopedSlots:t._u([{key:"default",fn:function(s){return[e("span",[t._v(" "+t._s(t.$t(t.handelStatus2(s?.row?.status)))+" ")])]}}])}),e("el-table-column",{attrs:{fixed:"right",label:t.$t("work.operation")},scopedSlots:t._u([{key:"default",fn:function(s){return[e("el-button",{attrs:{type:"text",size:"small"},on:{click:function(e){return t.handelDetails(s.row)}}},[t._v(" "+t._s(t.$t("work.details"))+" ")])]}}])})],1)],1)],1),e("el-dialog",{attrs:{title:t.$t("user.prompt3"),visible:t.dialogVisible,width:"30%"},on:{"update:visible":function(e){t.dialogVisible=e}}},[e("span",[t._v(t._s(t.$t(t.msg)))]),e("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[e("el-button",{on:{click:function(e){t.dialogVisible=!1}}},[t._v(t._s(t.$t("user.cancel")))]),e("el-button",{attrs:{type:"primary"},on:{click:t.determineInformation}},[t._v(" "+t._s(t.$t("user.Confirm")))])],1)])],1)])},e.Yp=[]},83625:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"split-editor-demo"},[e("div",{staticClass:"page-header"},[t._m(0),e("div",{staticClass:"header-actions"},[e("el-button",{attrs:{loading:t.saveLoading,icon:"el-icon-document",type:"success"},on:{click:t.handleSave}},[t._v(" 保存内容 ")]),e("el-button",{attrs:{icon:"el-icon-delete",type:"danger"},on:{click:t.handleClear}},[t._v(" 清空内容 ")])],1)]),e("el-card",{staticClass:"document-config",attrs:{shadow:"never"}},[e("div",{attrs:{slot:"header"},slot:"header"},[e("span",[e("i",{staticClass:"el-icon-setting"}),t._v(" 文档配置")])]),e("el-form",{staticClass:"config-form",attrs:{model:t.documentForm,"label-width":"100px"}},[e("el-row",{attrs:{gutter:20}},[e("el-col",{attrs:{span:8}},[e("el-form-item",{attrs:{label:"文档标题"}},[e("el-input",{attrs:{placeholder:"请输入文档标题"},model:{value:t.documentForm.title,callback:function(e){t.$set(t.documentForm,"title",e)},expression:"documentForm.title"}})],1)],1),e("el-col",{attrs:{span:8}},[e("el-form-item",{attrs:{label:"文档类型"}},[e("el-select",{staticStyle:{width:"100%"},attrs:{placeholder:"请选择文档类型"},model:{value:t.documentForm.type,callback:function(e){t.$set(t.documentForm,"type",e)},expression:"documentForm.type"}},[e("el-option",{attrs:{label:"服务条款",value:"1"}}),e("el-option",{attrs:{label:"API文档",value:"2"}}),e("el-option",{attrs:{label:"挖矿教程",value:"3"}}),e("el-option",{attrs:{label:"其他",value:"0"}})],1)],1)],1),e("el-col",{attrs:{span:8}},[e("el-form-item",{attrs:{label:"文档状态"}},[e("el-tag",{attrs:{type:"published"===t.documentForm.status?"success":"info"}},[t._v(" "+t._s("published"===t.documentForm.status?"已发布":"草稿")+" ")])],1)],1)],1)],1)],1),e("el-card",{staticClass:"editor-card",attrs:{shadow:"never"}},[e("div",{attrs:{slot:"header"},slot:"header"},[e("span",[e("i",{staticClass:"el-icon-edit-outline"}),t._v(" 分屏编辑器")]),e("div",{staticClass:"header-tips"},[e("el-tag",{attrs:{size:"mini",type:"info"}},[t._v("支持实时预览")]),e("el-tag",{attrs:{size:"mini",type:"success"}},[t._v("自动保存")])],1)]),e("SplitScreenEditor",{ref:"splitEditor",attrs:{height:500,options:t.editorOptions},on:{change:t.handleContentChange,publish:t.handlePublish},model:{value:t.documentForm.content,callback:function(e){t.$set(t.documentForm,"content",e)},expression:"documentForm.content"}})],1),e("el-card",{staticClass:"usage-guide",attrs:{shadow:"never"}},[e("div",{attrs:{slot:"header"},slot:"header"},[e("span",[e("i",{staticClass:"el-icon-info"}),t._v(" 使用说明")]),e("el-button",{staticStyle:{float:"right",padding:"3px 0"},attrs:{type:"text"},on:{click:function(e){t.showGuide=!t.showGuide}}},[t._v(" "+t._s(t.showGuide?"收起":"展开")+" ")])],1),e("transition",{attrs:{name:"slide-fade"}},[e("div",{directives:[{name:"show",rawName:"v-show",value:t.showGuide,expression:"showGuide"}],staticClass:"guide-content"},[e("div",{staticClass:"guide-section"},[e("h4",[t._v("🖥️ 三种显示模式")]),e("ul",[e("li",[e("strong",[t._v("编辑模式")]),t._v(":只显示编辑器,专注于内容编写")]),e("li",[e("strong",[t._v("预览模式")]),t._v(":只显示预览效果,方便查看最终结果")]),e("li",[e("strong",[t._v("分屏模式")]),t._v(":左边编辑,右边实时预览,所见即所得")])])]),e("div",{staticClass:"guide-section"},[e("h4",[t._v("⚡ 快捷功能")]),e("ul",[e("li",[e("strong",[t._v("插入圆点")]),t._v(':点击工具栏中的"插入圆点"按钮,在当前位置插入 • 符号')]),e("li",[e("strong",[t._v("全屏编辑")]),t._v(":点击全屏按钮或按 F11 进入全屏模式")]),e("li",[e("strong",[t._v("复制HTML")]),t._v(":在预览区域可以复制生成的HTML代码")]),e("li",[e("strong",[t._v("字数统计")]),t._v(":实时显示当前内容的字符数量")])])]),e("div",{staticClass:"guide-section"},[e("h4",[t._v("🎯 圆点列表示例")]),e("p",[t._v("在编辑器中输入以下内容来创建带圆点的列表:")]),e("div",{staticClass:"example-box"},[e("p",[e("code",[t._v("• ALEO矿工必须质押一定数量的ALEO代币")])]),e("p",[e("code",[t._v("• 否则将无法提交PoW工作量证明")])]),e("p",[e("code",[t._v("• 质押金额直接影响挖矿收益")])])])])])])],1)],1)},e.Yp=[function(){var t=this,e=t._self._c;return e("div",{staticClass:"header-content"},[e("h1",{staticClass:"page-title"},[e("i",{staticClass:"el-icon-s-unfold"}),t._v(" 分屏编辑器演示 ")]),e("p",{staticClass:"page-subtitle"},[t._v("支持编辑、预览、分屏三种模式的富文本编辑器")])])}]},84419:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.workBKLoading,expression:"workBKLoading"}],staticClass:"workBK"},[t.$isMobile?e("section",{staticClass:"workMain"},[e("h3",[t._v(t._s(t.$t("work.WorkOrderManagement")))]),e("el-tabs",{staticStyle:{width:"100%"},on:{"tab-click":t.handleElTabs},model:{value:t.activeName,callback:function(e){t.activeName=e},expression:"activeName"}},[e("el-tab-pane",{staticClass:"pendingMain",attrs:{label:t.$t("work.pendingProcessing"),name:"pendingProcessing"}},[e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{attrs:{title:t.$t("work.WorkID")}},[t._v("ID")]),e("span",{attrs:{title:t.$t("work.submissionTime")}},[t._v(t._s(t.$t("work.status")))]),e("span",{attrs:{title:t.$t("work.submissionTime")}},[t._v(t._s(t.$t("work.operation")))])]),e("div",{staticClass:"rollContentBox"},[e("el-collapse",{attrs:{accordion:""}},t._l(t.from1,(function(s){return e("el-collapse-item",{key:s.id,attrs:{name:s.id}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",[t._v(t._s(s.id))]),e("span",[t._v(t._s(t.$t(t.handelStatus2(s.status))))]),e("span",{on:{click:function(e){return t.handelDetails(s)}}},[t._v(" "+t._s(t.$t("work.details")))])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("work.submissionTime"))+":")]),e("p",[t._v(t._s(t.handelTime(s.date)))])])]),e("div",{attrs:{id:"hash"}},[e("p",[t._v(t._s(t.$t("work.mailbox"))+": ")]),e("p",[t._v(t._s(s.email))])])],2)})),1)],1),e("div",{staticClass:"paginationBox"},[e("el-pagination",{attrs:{"current-page":t.currentPage1,"page-sizes":t.pageSizes,layout:"sizes, prev, pager, next",total:t.totalLimit1},on:{"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange,"update:currentPage":function(e){t.currentPage1=e},"update:current-page":function(e){t.currentPage1=e}}})],1)])]),e("el-tab-pane",{attrs:{label:t.$t("work.pending"),name:"pending"}},[e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{attrs:{title:t.$t("work.WorkID")}},[t._v("ID")]),e("span",{attrs:{title:t.$t("work.submissionTime")}},[t._v(t._s(t.$t("work.status")))]),e("span",{attrs:{title:t.$t("work.submissionTime")}},[t._v(t._s(t.$t("work.operation")))])]),e("div",{staticClass:"rollContentBox"},[e("el-collapse",{attrs:{accordion:""}},t._l(t.from2,(function(s){return e("el-collapse-item",{key:s.id,attrs:{name:s.id}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",[t._v(t._s(s.id))]),e("span",[t._v(t._s(t.$t(t.handelStatus2(s.status))))]),e("span",{on:{click:function(e){return t.handelDetails(s)}}},[t._v(" "+t._s(t.$t("work.details")))])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("work.submissionTime"))+":")]),e("p",[t._v(t._s(t.handelTime(s.date)))])])]),e("div",{attrs:{id:"hash"}},[e("p",[t._v(t._s(t.$t("work.mailbox"))+": ")]),e("p",[t._v(t._s(s.email))])])],2)})),1)],1),e("div",{staticClass:"paginationBox"},[e("el-pagination",{attrs:{"current-page":t.currentPage2,"page-sizes":t.pageSizes,layout:" sizes, prev, pager, next",total:t.totalLimit2},on:{"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange,"update:currentPage":function(e){t.currentPage2=e},"update:current-page":function(e){t.currentPage2=e}}})],1)])]),e("el-tab-pane",{attrs:{label:t.$t("work.completeWK"),name:"Finished"}},[e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{attrs:{title:t.$t("work.WorkID")}},[t._v("ID")]),e("span",{attrs:{title:t.$t("work.submissionTime")}},[t._v(t._s(t.$t("work.status")))]),e("span",{attrs:{title:t.$t("work.submissionTime")}},[t._v(t._s(t.$t("work.operation")))])]),e("div",{staticClass:"rollContentBox"},[e("el-collapse",{attrs:{accordion:""}},t._l(t.from10,(function(s){return e("el-collapse-item",{key:s.id,attrs:{name:s.id}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",[t._v(t._s(s.id))]),e("span",[t._v(t._s(t.$t(t.handelStatus2(s.status))))]),e("span",{on:{click:function(e){return t.handelDetails(s)}}},[t._v(" "+t._s(t.$t("work.details")))])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("work.submissionTime"))+":")]),e("p",[t._v(t._s(t.handelTime(s.date)))])])]),e("div",{attrs:{id:"hash"}},[e("p",[t._v(t._s(t.$t("work.mailbox"))+": ")]),e("p",[t._v(t._s(s.email))])])],2)})),1)],1),e("div",{staticClass:"paginationBox"},[e("el-pagination",{attrs:{"current-page":t.currentPage10,"page-sizes":t.pageSizes,layout:" sizes, prev, pager, next",total:t.totalLimit10},on:{"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange,"update:currentPage":function(e){t.currentPage10=e},"update:current-page":function(e){t.currentPage10=e}}})],1)])]),e("el-tab-pane",{attrs:{label:t.$t("work.allWK"),name:"all"}},[e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{attrs:{title:t.$t("work.WorkID")}},[t._v("ID")]),e("span",{attrs:{title:t.$t("work.submissionTime")}},[t._v(t._s(t.$t("work.status")))]),e("span",{attrs:{title:t.$t("work.submissionTime")}},[t._v(t._s(t.$t("work.operation")))])]),e("div",{staticClass:"rollContentBox"},[e("el-collapse",{attrs:{accordion:""}},t._l(t.from0,(function(s){return e("el-collapse-item",{key:s.id,attrs:{name:s.id}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",[t._v(t._s(s.id))]),e("span",[t._v(t._s(t.$t(t.handelStatus2(s.status))))]),e("span",{on:{click:function(e){return t.handelDetails(s)}}},[t._v(" "+t._s(t.$t("work.details")))])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("work.submissionTime"))+":")]),e("p",[t._v(t._s(t.handelTime(s.date)))])])]),e("div",{attrs:{id:"hash"}},[e("p",[t._v(t._s(t.$t("work.mailbox"))+": ")]),e("p",[t._v(t._s(s.email))])])],2)})),1)],1),e("div",{staticClass:"paginationBox"},[e("el-pagination",{attrs:{"current-page":t.currentPage0,"page-sizes":t.pageSizes,layout:"sizes, prev, pager, next",total:t.totalLimit0},on:{"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange,"update:currentPage":function(e){t.currentPage0=e},"update:current-page":function(e){t.currentPage0=e}}})],1)])])],1)],1):e("section",{staticClass:"workBKContent"},[e("el-row",{staticStyle:{"margin-bottom":"18px"}},[e("el-col",{staticStyle:{display:"flex","align-items":"center"},attrs:{span:24}},[e("h2",[t._v(t._s(t.$t("work.WorkOrderManagement")))]),e("i",{staticClass:"i ishuaxin1 Refresh"})])],1),e("el-tabs",{on:{"tab-click":t.handleElTabs},model:{value:t.activeName,callback:function(e){t.activeName=e},expression:"activeName"}},[e("el-tab-pane",{attrs:{label:t.$t("work.pendingProcessing"),name:"pendingProcessing"}},[e("el-table",{staticClass:"table",staticStyle:{width:"100%","text-transform":"none"},attrs:{"header-cell-style":{"text-align":"center"},"cell-style":{"text-align":"center"},data:t.from1,"max-height":"550",stripe:""}},[e("el-table-column",{attrs:{prop:"id",label:t.$t("work.WorkID")}}),e("el-table-column",{attrs:{prop:"email",label:t.$t("work.mailbox"),"show-overflow-tooltip":!0,width:"230"}}),e("el-table-column",{attrs:{prop:"date",label:t.$t("work.submissionTime")},scopedSlots:t._u([{key:"default",fn:function(s){return[e("span",[t._v(t._s(t.handelTime(s.row.date)))])]}}])}),e("el-table-column",{attrs:{prop:"status",label:t.$t("work.status")},scopedSlots:t._u([{key:"default",fn:function(s){return[e("span",[t._v(" "+t._s(t.$t(t.handelStatus2(s.row.status)))+" ")])]}}])}),e("el-table-column",{attrs:{fixed:"right",label:t.$t("work.operation"),"min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(s){return[e("el-button",{attrs:{type:"text",size:"small"},on:{click:function(e){return t.handelDetails(s.row)}}},[t._v(" "+t._s(t.$t("work.details"))+" ")]),e("el-popconfirm",{attrs:{"confirm-button-text":t.$t("work.confirm"),"cancel-button-text":t.$t("work.cancel"),icon:"el-icon-info","icon-color":"red",title:t.$t("work.confirmClose")},on:{confirm:function(e){return t.handelCloseWork(s.row)}}},[e("el-button",{staticClass:"elBtn",attrs:{slot:"reference",size:"small"},slot:"reference"},[t._v(t._s(t.$t("work.close")))])],1)]}}])})],1),e("el-row",{staticStyle:{"margin-top":"20px","margin-bottom":"10px"},attrs:{type:"flex",justify:"center"}},[e("el-col",{attrs:{span:10}},[e("el-pagination",{attrs:{"current-page":t.currentPage1,"page-sizes":t.pageSizes,layout:"total, sizes, prev, pager, next, jumper",total:t.totalLimit1},on:{"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange,"update:currentPage":function(e){t.currentPage1=e},"update:current-page":function(e){t.currentPage1=e}}})],1)],1)],1),e("el-tab-pane",{attrs:{label:t.$t("work.pending"),name:"pending"}},[e("el-table",{staticClass:"table",staticStyle:{width:"100%","text-transform":"none"},attrs:{"header-cell-style":{"text-align":"center"},"cell-style":{"text-align":"center"},data:t.from2,"max-height":"600",stripe:""}},[e("el-table-column",{attrs:{prop:"id",label:t.$t("work.WorkID"),width:"150"}}),e("el-table-column",{attrs:{prop:"email",label:t.$t("work.mailbox"),"show-overflow-tooltip":!0,width:"230"}}),e("el-table-column",{attrs:{prop:"date",label:t.$t("work.submissionTime"),width:"150"},scopedSlots:t._u([{key:"default",fn:function(s){return[e("span",[t._v(t._s(t.handelTime(s.row.date)))])]}}])}),e("el-table-column",{attrs:{prop:"status",label:t.$t("work.status"),width:"150"},scopedSlots:t._u([{key:"default",fn:function(s){return[e("span",[t._v(" "+t._s(t.$t(t.handelStatus2(s.row.status)))+" ")])]}}])}),e("el-table-column",{attrs:{fixed:"right",label:t.$t("work.operation"),"min-width":"150"},scopedSlots:t._u([{key:"default",fn:function(s){return[e("el-button",{attrs:{type:"text",size:"small"},on:{click:function(e){return t.handelDetails(s.row)}}},[t._v(" "+t._s(t.$t("work.details"))+" ")]),e("el-popconfirm",{attrs:{"confirm-button-text":t.$t("work.confirm"),"cancel-button-text":t.$t("work.cancel"),icon:"el-icon-info","icon-color":"red",title:t.$t("work.confirmClose")},on:{confirm:function(e){return t.handelCloseWork(s.row)}}},[e("el-button",{staticClass:"elBtn",attrs:{slot:"reference",size:"small"},slot:"reference"},[t._v(t._s(t.$t("work.close")))])],1)]}}])})],1),e("el-row",{staticStyle:{"margin-top":"15px"},attrs:{type:"flex",justify:"center"}},[e("el-col",{attrs:{span:10}},[e("el-pagination",{attrs:{"current-page":t.currentPage2,"page-sizes":t.pageSizes,layout:"total, sizes, prev, pager, next, jumper",total:t.totalLimit2},on:{"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange,"update:currentPage":function(e){t.currentPage2=e},"update:current-page":function(e){t.currentPage2=e}}})],1)],1)],1),e("el-tab-pane",{attrs:{label:t.$t("work.completeWK"),name:"Finished"}},[e("el-table",{staticClass:"table",staticStyle:{width:"100%","text-transform":"none"},attrs:{"header-cell-style":{"text-align":"center"},"cell-style":{"text-align":"center"},data:t.from10,"max-height":"600",stripe:""}},[e("el-table-column",{attrs:{prop:"id",label:t.$t("work.WorkID")}}),e("el-table-column",{attrs:{prop:"email",label:t.$t("work.mailbox"),"show-overflow-tooltip":!0}}),e("el-table-column",{attrs:{prop:"date",label:t.$t("work.submissionTime")},scopedSlots:t._u([{key:"default",fn:function(s){return[e("span",[t._v(t._s(t.handelTime(s.row.date)))])]}}])}),e("el-table-column",{attrs:{prop:"status",label:t.$t("work.status")},scopedSlots:t._u([{key:"default",fn:function(s){return[e("span",[t._v(" "+t._s(t.$t(t.handelStatus2(s.row.status)))+" ")])]}}])}),e("el-table-column",{attrs:{fixed:"right",label:t.$t("work.operation"),"min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(s){return[e("el-button",{attrs:{type:"text",size:"small"},on:{click:function(e){return t.handelDetails(s.row)}}},[t._v(" "+t._s(t.$t("work.details"))+" ")])]}}])})],1),e("el-row",{staticStyle:{"margin-top":"15px"},attrs:{type:"flex",justify:"center"}},[e("el-col",{attrs:{span:10}},[e("el-pagination",{attrs:{"current-page":t.currentPage10,"page-sizes":t.pageSizes,layout:"total, sizes, prev, pager, next, jumper",total:t.totalLimit10},on:{"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange,"update:currentPage":function(e){t.currentPage10=e},"update:current-page":function(e){t.currentPage10=e}}})],1)],1)],1),e("el-tab-pane",{attrs:{label:t.$t("work.allWK"),name:"all"}},[e("el-table",{staticClass:"table",staticStyle:{width:"100%","text-transform":"none"},attrs:{"header-cell-style":{"text-align":"center"},"cell-style":{"text-align":"center"},data:t.from0,"max-height":"600",stripe:""}},[e("el-table-column",{attrs:{prop:"id",label:t.$t("work.WorkID")}}),e("el-table-column",{attrs:{prop:"email",label:t.$t("work.mailbox"),"show-overflow-tooltip":!0,width:"230"}}),e("el-table-column",{attrs:{prop:"date",label:t.$t("work.submissionTime")},scopedSlots:t._u([{key:"default",fn:function(s){return[e("span",[t._v(t._s(t.handelTime(s.row.date)))])]}}])}),e("el-table-column",{attrs:{prop:"status",label:t.$t("work.status")},scopedSlots:t._u([{key:"default",fn:function(s){return[e("span",[t._v(" "+t._s(t.$t(t.handelStatus2(s.row.status)))+" ")])]}}])}),e("el-table-column",{staticStyle:{"text-align":"left !important"},attrs:{fixed:"right",label:t.$t("work.operation"),"min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(s){return[e("el-button",{attrs:{type:"text",size:"small"},on:{click:function(e){return t.handelDetails(s.row)}}},[t._v(" "+t._s(t.$t("work.details"))+" ")]),"10"!==s.row.status?e("el-popconfirm",{attrs:{"confirm-button-text":t.$t("work.confirm"),"cancel-button-text":t.$t("work.cancel"),icon:"el-icon-info","icon-color":"red",title:t.$t("work.confirmClose")},on:{confirm:function(e){return t.handelCloseWork(s.row)}}},[e("el-button",{staticClass:"elBtn",attrs:{slot:"reference",size:"small"},slot:"reference"},[t._v(t._s(t.$t("work.close")))])],1):e("el-popconfirm",{attrs:{"confirm-button-text":"确认","cancel-button-text":"取消",icon:"el-icon-info","icon-color":"red",title:"确定关闭此工单吗?"},on:{confirm:function(e){return t.handelCloseWork(s.row)}}},[e("el-button",{staticStyle:{"margin-left":"18px",border:"none",background:"transparent",width:"50px"},attrs:{slot:"reference",size:"small"},slot:"reference"})],1)]}}])})],1),e("el-row",{staticStyle:{"margin-top":"15px"},attrs:{type:"flex",justify:"center"}},[e("el-col",{attrs:{span:10}},[e("el-pagination",{attrs:{"current-page":t.currentPage0,"page-sizes":t.pageSizes,layout:"total, sizes, prev, pager, next, jumper",total:t.totalLimit0},on:{"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange,"update:currentPage":function(e){t.currentPage0=e},"update:current-page":function(e){t.currentPage0=e}}})],1)],1)],1)],1)],1)])},e.Yp=[]},89413:function(t,e,s){Object.defineProperty(e,"B",{value:!0}),e.A=void 0,s(44114);var a=s(47149),i=s(49704),r=s(6803),o=s(82908);e.A={data(){return{loginForm:{email:"",password:"",resetPwdCode:"",newPassword:""},loginRules:{email:[{required:!0,trigger:"blur",message:this.$t("user.inputEmail"),type:"email"}],password:[{required:!0,trigger:"blur",message:this.$t("user.inputPassword")}],newPassword:[{required:!0,trigger:"blur",message:this.$t("user.confirmPassword2")}],resetPwdCode:[{required:!0,trigger:"change",message:this.$t("user.inputCode")}],gCode:[{required:!0,trigger:"change",message:this.$t("personal.gCode")}]},radio:"zh",btnDisabled:!1,bthText:"user.obtainVerificationCode",time:"",loginLoading:!1,accountList:[],newPassword:"",securityLoading:!1,isItBound:!1,countDownTime:60,timer:null,lang:"zh"}},computed:{countDown(){Math.floor(this.countDownTime/60);const t=this.countDownTime%60,e=t<10?"0"+t:t;return`${e}`}},created(){window.sessionStorage.getItem("Reset_time")&&(this.countDownTime=Number(window.sessionStorage.getItem("Reset_time")),this.startCountDown(),this.btnDisabled=!0,this.bthText="user.again")},watch:{"$i18n.locale":function(){this.translate()}},mounted(){this.lang=this.$i18n.locale,this.radio=localStorage.getItem("lang")?localStorage.getItem("lang"):"en"},methods:{translate(){this.loginRules={email:[{required:!0,type:"email",trigger:"blur",message:this.$t("user.inputEmail")}],password:[{required:!0,trigger:"blur",message:this.$t("user.inputPassword")}],newPassword:[{required:!0,trigger:"blur",message:this.$t("user.confirmPassword2")}],resetPwdCode:[{required:!0,trigger:"change",message:this.$t("user.inputCode")}],gCode:[{required:!0,trigger:"change",message:this.$t("personal.gCode")}]}},async fetchIfBind(t){this.securityLoading=!0;const e=await(0,r.getEmailIfBind)(t);if(e&&200===e.code){e.data?this.isItBound=!0:e.data||(this.isItBound=!1),this.fetchResetPwdCode({email:this.loginForm.email}),this.time=60;let t=setInterval((()=>{this.time?(this.time--,this.btnDisabled=!0,this.bthText="user.again"):(this.btnDisabled=!1,this.bthText="user.obtainVerificationCode",this.time="",clearTimeout(t))}),1e3)}this.securityLoading=!1},async fetchResetPwd(t){const e=await(0,a.getResetPwd)(t);if(e&&200==e.code){this.$message({message:this.$t("user.modifiedSuccessfully"),type:"success",showClose:!0});for(const t in this.loginForm)this.loginForm[t]="";this.$router.push(`/${this.lang}/login`)}},async fetchResetPwdCode(t){const e=await(0,a.getResetPwdCode)(t);e&&200==e.code&&this.$message({message:this.$t("user.codeSuccess"),type:"success",showClose:!0})},handelCode(){const t=/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,}$/;let e=t.test(this.loginForm.email);this.loginForm.email&&e?(this.fetchResetPwdCode({email:this.loginForm.email}),null==window.sessionStorage.getItem("Reset_time")||(this.countDownTime=Number(window.sessionStorage.getItem("Reset_time"))),this.startCountDown()):this.$message({message:this.$t("user.emailVerification"),type:"error",customClass:"messageClass",showClose:!0})},startCountDown(){this.timer=setInterval((()=>{this.countDownTime<=1?(clearInterval(this.timer),sessionStorage.removeItem("Reset_time"),this.countDownTime=60,this.btnDisabled=!1,this.bthText="user.obtainVerificationCode"):this.countDownTime>0&&(this.countDownTime--,this.btnDisabled=!0,this.bthText="user.again",window.sessionStorage.setItem("Reset_time",this.countDownTime))}),1e3)},handelJump(t){const e=t.startsWith("/")?t.slice(1):t;this.$router.push(`/${this.lang}/${e}`)},handelRadio(t){const e=this.lang;this.lang=t,this.$i18n.locale=t,localStorage.setItem("lang",t);const s=this.$route.path,a=s.replace(`/${e}`,`/${t}`);this.$router.push({path:a,query:this.$route.query}).catch((t=>{"NavigationDuplicated"!==t.name&&console.error("Navigation failed:",t)}))},submitForm:(0,o.Debounce)((function(){this.$refs.ruleForm.validate((t=>{if(t){if(this.loginForm.userName=this.loginForm.email.trim(),this.loginForm.password=this.loginForm.password.trim(),this.loginForm.newPassword=this.loginForm.newPassword.trim(),this.loginForm.password!==this.loginForm.newPassword)return void this.$message({message:this.$t("user.confirmPassword2"),type:"error",customClass:"messageClass",showClose:!0});const t=/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,}$/;let e=t.test(this.loginForm.email);if(!e)return void this.$message({message:this.$t("user.emailVerification"),type:"error",customClass:"messageClass",showClose:!0});const s=/^(?!.*[\u4e00-\u9fa5])(?![a-zA-Z]+$)(?![A-Z0-9]+$)(?![A-Z\W_]+$)(?![a-z0-9]+$)(?![a-z\W_]+$)(?![0-9\W_]+$)[a-zA-Z0-9\W_]{8,32}$/,a=s.test(this.loginForm.password);if(!a)return void this.$message({message:this.$t("user.PasswordReminder"),type:"error",showClose:!0});let r={email:this.loginForm.email,password:this.loginForm.password,resetPwdCode:this.loginForm.resetPwdCode};const o={...r};o.password=(0,i.encryption)(r.password),this.fetchResetPwd(o)}}))}),200),handleClick(){this.$router.push(`/${this.lang}`)}}}},92279:function(t,e,s){Object.defineProperty(e,"B",{value:!0}),e.A=void 0,s(44114);var a=s(47149),i=s(49704);e.A={data(){return{registerForm:{password:"",email:"",emailCode:"",confirmPassword:""},registerRules:{userName:[{required:!0,trigger:"blur",message:"请输入您的账号"},{min:3,max:16,message:"用户账号长度必须介于 3 和 16 之间",trigger:"blur"}],email:[{required:!0,trigger:"blur",message:this.$t("user.emailVerification"),type:"email"}],password:[{required:!0,trigger:"blur",message:this.$t("user.inputPassword")},{min:8,max:32,message:this.$t("user.passwordVerification"),trigger:"blur"}],confirmPassword:[{required:!0,trigger:"blur",message:this.$t("user.secondaryPassword")}],emailCode:[{required:!0,trigger:"blur",message:this.$t("user.inputCode")}]},radio:"zh",loading:!1,codeParams:{email:""},btnDisabled:!1,bthText:"user.obtainVerificationCode",time:"",registerLoading:!1,countDownTime:60,timer:null,lang:"zh"}},computed:{countDown(){Math.floor(this.countDownTime/60);const t=this.countDownTime%60,e=t<10?"0"+t:t;return`${e}`}},created(){window.sessionStorage.getItem("register_time")&&(this.countDownTime=Number(window.sessionStorage.getItem("register_time")),this.startCountDown(),this.btnDisabled=!0,this.bthText="user.again")},watch:{$route(t){const e=t.path.match(/^\/(zh|en)(\/|$)/);e&&(this.radio=e[1],this.lang=e[1],this.$i18n.locale=e[1],localStorage.setItem("lang",e[1]))},"$i18n.locale":function(){this.translate()}},mounted(){const t=this.$route.path,e=t.match(/^\/(zh|en)(\/|$)/);e?(this.radio=e[1],this.lang=e[1],this.$i18n.locale=e[1],localStorage.setItem("lang",e[1])):(this.radio=localStorage.getItem("lang")||"en",this.lang=this.radio,this.$i18n.locale=this.radio);for(const s in this.registerForm)this.registerForm[s]=""},methods:{handelJump(t){const e=t.startsWith("/")?t.slice(1):t;this.$router.push(`/${this.lang}/${e}`)},translate(){this.registerRules={userName:[{required:!0,trigger:"blur",message:this.$t("user.inputAccount")},{min:3,max:16,message:"用户账号长度必须介于 3 和 16 之间",trigger:"blur"}],email:[{required:!0,trigger:"blur",message:this.$t("user.emailVerification"),type:"email"}],password:[{required:!0,trigger:"blur",message:this.$t("user.inputPassword")},{min:8,max:32,message:this.$t("user.passwordVerification"),trigger:"blur"}],confirmPassword:[{required:!0,trigger:"blur",message:this.$t("user.secondaryPassword")}],emailCode:[{required:!0,trigger:"blur",message:this.$t("user.inputCode")}]}},async fetchRegisterCode(t){const e=await(0,a.getRegisterCode)(t);e&&200===e.code&&this.$message({message:this.$t("user.verificationCodeSuccessful"),type:"success",showClose:!0})},handelCode(){this.codeParams.email=this.registerForm.email;const t=/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,}$/;let e=t.test(this.codeParams.email);this.codeParams.email&&e?(this.fetchRegisterCode(this.codeParams),null==window.sessionStorage.getItem("register_time")||(this.countDownTime=Number(window.sessionStorage.getItem("register_time"))),this.startCountDown()):this.$message({message:this.$t("user.emailVerification"),type:"error",showClose:!0})},startCountDown(){this.timer=setInterval((()=>{this.countDownTime<=1?(clearInterval(this.timer),sessionStorage.removeItem("register_time"),this.countDownTime=60,this.btnDisabled=!1,this.bthText="user.obtainVerificationCode"):this.countDownTime>0&&(this.countDownTime--,this.btnDisabled=!0,this.bthText="user.again",window.sessionStorage.setItem("register_time",this.countDownTime))}),1e3)},goLogin(){this.$router.push(`/${this.lang}/login`)},handelRadio(t){const e=this.lang;this.lang=t,this.$i18n.locale=t,localStorage.setItem("lang",t);const s=this.$route.path,a=s.replace(`/${e}`,`/${t}`);this.$router.push({path:a,query:this.$route.query}).catch((t=>{"NavigationDuplicated"!==t.name&&console.error("Navigation failed:",t)}))},handleRegister(){this.$refs.registerForm.validate((t=>{if(t){this.loading=!0;const t=/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,}$/;let e=t.test(this.registerForm.email);if(!this.registerForm.email||!e)return void this.$message({message:this.$t("user.emailVerification"),type:"error",showClose:!0});const s=/^(?!.*[\u4e00-\u9fa5])(?![a-zA-Z]+$)(?![A-Z0-9]+$)(?![A-Z\W_]+$)(?![a-z0-9]+$)(?![a-z\W_]+$)(?![0-9\W_]+$)[a-zA-Z0-9\W_]{8,32}$/,r=s.test(this.registerForm.password);if(!r)return void this.$message({message:this.$t("user.passwordFormat"),type:"error"});this.registerLoading=!0;const o={...this.registerForm};o.password=(0,i.encryption)(this.registerForm.password),o.confirmPassword=(0,i.encryption)(this.registerForm.confirmPassword),(0,a.getRegister)(o).then((t=>{this.registerForm.userName;200==t.code&&this.$alert(`${this.$t("user.congratulations")}`,`${this.$t("user.system")}`,{dangerouslyUseHTMLString:!0}).then((()=>{this.$router.push(`/${this.lang}/login`)})).catch((()=>{}))})).catch((()=>{this.loading=!1,this.captchaOnOff})),this.registerLoading=!1}}))},handleClick(){this.$router.push(`/${this.lang}`)}}}},92879:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return n}});var a=s(79320),i=s(99398),r=i.A,o=s(81656),l=(0,o.A)(r,a.XX,a.Yp,!1,null,"2552dbca",null),n=l.exports},99398:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(72938));e.A={mixins:[i.default]}},99675:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return n}});var a=s(75904),i=s(92279),r=i.A,o=s(81656),l=(0,o.A)(r,a.XX,a.Yp,!1,null,"45513616",null),n=l.exports}},e={};function s(a){var i=e[a];if(void 0!==i)return i.exports;var r=e[a]={id:a,loaded:!1,exports:{}};return t[a].call(r.exports,r,r.exports,s),r.loaded=!0,r.exports}s.m=t,function(){s.amdO={}}(),function(){var t=[];s.O=function(e,a,i,r){if(!a){var o=1/0;for(d=0;d=r)&&Object.keys(s.O).every((function(t){return s.O[t](a[n])}))?a.splice(n--,1):(l=!1,r0&&t[d-1][2]>r;d--)t[d]=t[d-1];t[d]=[a,i,r]}}(),function(){s.d=function(t,e){for(var a in e)s.o(e,a)&&!s.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:e[a]})}}(),function(){s.g=function(){if("object"===typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"===typeof window)return window}}()}(),function(){s.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)}}(),function(){s.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})}}(),function(){s.nmd=function(t){return t.paths=[],t.children||(t.children=[]),t}}(),function(){s.p="/"}(),function(){var t={531:0};s.O.j=function(e){return 0===t[e]};var e=function(e,a){var i,r,o=a[0],l=a[1],n=a[2],c=0;if(o.some((function(e){return 0!==t[e]}))){for(i in l)s.o(l,i)&&(s.m[i]=l[i]);if(n)var d=n(s)}for(e&&e(a);c0?e("div",{staticClass:"history-section"},[t.hasMoreHistory?e("div",{staticClass:"history-indicator",staticStyle:{cursor:"pointer","text-align":"center",color:"#409eff","margin-bottom":"10px","font-size":"0.7vw"},on:{click:t.loadMoreHistory}},[e("i",{staticClass:"el-icon-arrow-up"}),e("span",[t._v(t._s(t.$t("chat.loadMore")||"加载更多历史消息"))])]):e("div",{staticClass:"no-more-history",staticStyle:{"text-align":"center",color:"#909399","margin-bottom":"10px","font-size":"0.7vw",padding:"8px 0"}},[e("i",{staticClass:"el-icon-info"}),e("span",[t._v(t._s(t.noMoreHistoryMessage||t.$t("chat.noMoreHistory")||"没有更多历史消息"))])])]):t._e(),t.messagesLoading?e("div",{staticClass:"cs-loading"},[e("i",{staticClass:"el-icon-loading"}),e("p",[t._v(t._s(t.$t("chat.loading")||"加载消息中..."))])]):0===t.currentMessages.length?e("div",{staticClass:"cs-empty-chat"},[e("i",{staticClass:"el-icon-chat-line-round"}),e("p",[t._v(t._s(t.$t("chat.None")||"暂无消息记录"))])]):e("div",{staticClass:"cs-message-list"},t._l(t.currentMessages,(function(s,i){return e("div",{key:i,staticClass:"cs-message",class:{"cs-message-self":s.isSelf}},[t.showMessageTime(i)?e("div",{staticClass:"cs-message-time"},[t._v(" "+t._s(t.formatTime(s.time))+" ")]):t._e(),e("div",{staticClass:"cs-message-content"},[t._m(0,!0),e("div",{staticClass:"cs-bubble"},[e("div",{staticClass:"cs-sender"},[t._v(t._s(s.sender))]),s.isImage?e("div",{staticClass:"cs-image"},[e("img",{attrs:{src:s.content},on:{click:function(e){return t.previewImage(s.content)}}})]):e("div",{staticClass:"cs-text",domProps:{innerHTML:t._s(t.formatMessageContent(s.content))}})])])])})),0)]:e("div",{staticClass:"cs-empty-chat"},[e("i",{staticClass:"el-icon-chat-dot-round"}),e("p",[t._v(t._s(t.$t("chat.notSelected")||"您尚未选择联系人"))])])],2),e("div",{staticClass:"cs-chat-input"},[e("div",{staticClass:"cs-toolbar"},[e("i",{staticClass:"el-icon-picture-outline",attrs:{title:t.$t("chat.sendPicture")||"发送图片"},on:{click:t.openImageUpload}}),e("input",{ref:"imageInput",staticStyle:{display:"none"},attrs:{type:"file",accept:"image/*"},on:{change:t.handleImageUpload}})]),e("div",{staticClass:"cs-input-area"},[e("el-input",{attrs:{type:"textarea",rows:3,maxlength:400,disabled:!t.currentContact,resize:"none",placeholder:t.$t("chat.inputMessage")||"请输入消息,按Enter键发送,按Ctrl+Enter键换行"},nativeOn:{keydown:function(e){return t.handleKeyDown.apply(null,arguments)}},model:{value:t.inputMessage,callback:function(e){t.inputMessage=e},expression:"inputMessage"}})],1),e("div",{staticClass:"cs-send-area"},[e("span",{staticClass:"cs-counter"},[t._v(t._s(t.inputMessage.length)+"/400")]),e("el-button",{attrs:{type:"primary",disabled:!t.currentContact||!t.inputMessage.trim()||t.sending},on:{click:t.sendMessage}},[t.sending?e("i",{staticClass:"el-icon-loading"}):e("span",[t._v(t._s(t.$t("chat.send")||"发送"))])])],1)])])]),t.showScrollButton?e("div",{staticClass:"scroll-to-bottom",on:{click:function(e){return t.scrollToBottom(!0)}}},[t._v(" "+t._s(t.$t("chat.bottom")||"回到底部")+" "),e("i",{staticClass:"el-icon-arrow-down"})]):t._e(),e("el-dialog",{staticClass:"image-preview-dialog",attrs:{visible:t.previewVisible,"append-to-body":""},on:{"update:visible":function(e){t.previewVisible=e}}},[e("img",{staticClass:"preview-image",attrs:{src:t.previewImageUrl,alt:t.$t("chat.Preview")||"预览图片"}})])],1)},e.Yp=[function(){var t=this,e=t._self._c;return e("div",{staticClass:"cs-avatar"},[e("i",{staticClass:"iconfont icon-icon28",staticStyle:{"font-size":"2vw"}})])}]},4447:function(t,e,s){var i=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var a=i(s(17713));e.A={name:"Announcements",mixins:[a.default]}},4710:function(t,e,s){Object.defineProperty(e,"B",{value:!0}),e.A=void 0,s(44114),s(18111),s(22489),s(20116),s(7588),s(61701),s(18237),s(13579);var i=s(51775),a=s(92500);e.A={name:"CustomerServiceChat",data(){return{searchText:"",inputMessage:"",currentContactId:null,previewVisible:!1,previewImageUrl:"",contacts:[],messages:{},messagesLoading:!1,sending:!1,loadingRooms:!0,stompClient:null,wsConnected:!1,userEmail:"",userType:1,loadingHistory:!1,userViewHistory:!1,userScrolled:!1,history7Params:{id:"",roomId:"",userType:2,email:""},historyAllParams:{id:"",roomId:"",userType:2},receiveUserType:"",manualCreatedRooms:[],chatRooms:[],isWebSocketConnected:!1,connectionStatus:"disconnected",isLoadingMoreContacts:!1,lastContactTime:null,showScrollButton:!1,visibilityHandler:null,reconnectTimer:null,maxReconnectAttempts:5,reconnectInterval:5e3,reconnectAttempts:0,isHandlingError:!1,lastErrorTime:0,lastActivityTime:Date.now(),activityCheckInterval:null,activityEvents:null,activityHandler:null,connectionVerifyTimer:null,connectionVerifyTimeout:6e4,isConnectionVerified:!1,heartbeatInterval:null,heartbeatTimeout:3e4,lastHeartbeatTime:0,connectionCheckInterval:null,connectionCheckTimeout:6e4,hasMoreHistory:!0,noMoreHistoryMessage:"",networkStatus:"online",token:""}},computed:{filteredContacts(){return this.searchText?this.contacts.filter((t=>t.name.toLowerCase().includes(this.searchText.toLowerCase()))):this.contacts},currentContact(){return this.contacts.find((t=>t.roomId===this.currentContactId))},currentMessages(){return this.messages[this.currentContactId]||[]}},watch:{token:{handler(t){t||(console.log("token已过期,断开所有窗口连接"),localStorage.setItem("cs_disconnect_all",Date.now().toString()),this.disconnectWebSocket())},deep:!0,immediate:!0}},created(){try{let t=localStorage.getItem("userEmail");this.userEmail=JSON.parse(t),window.addEventListener("setItem",(()=>{let t=localStorage.getItem("userEmail");this.userEmail=JSON.parse(t)})),this.fetchRoomList(),this.loadManualCreatedRooms(),console.log("mounted userEmail=",t,"parsed=",this.userEmail),this.initWebSocket()}catch(t){console.error("初始化失败:",t)}},mounted(){this.fetchRoomList();let t=localStorage.getItem("userEmail");this.userEmail=JSON.parse(t);let e=localStorage.getItem("token");this.token=JSON.parse(e),window.addEventListener("setItem",(()=>{let t=localStorage.getItem("userEmail");this.userEmail=JSON.parse(t);let e=localStorage.getItem("token");this.token=JSON.parse(e)})),window.addEventListener("online",this.handleNetworkChange),window.addEventListener("offline",this.handleNetworkChange),this.$nextTick((()=>{this.$refs.messageContainer&&this.$refs.messageContainer.addEventListener("scroll",this.handleScroll)})),this.$nextTick((()=>{const t=document.querySelector(".cs-contacts");t&&t.addEventListener("scroll",this.handleContactListScroll)})),this.visibilityHandler=()=>{"visible"===document.visibilityState?(console.log("🔍 客服页面重新可见,执行连接状态检查"),this.updateLastActivityTime(),this.performConnectionCheck(),"connected"===this.connectionStatus&&this.isWebSocketConnected?(console.log("✅ 客服页面可见,连接状态正常"),this.heartbeatInterval||this.startHeartbeat(),this.connectionCheckInterval||this.startConnectionCheck()):(console.log("🔄 客服页面可见,检测到连接异常,开始重连"),this.checkAndReconnect())):console.log("📱 客服页面变为隐藏状态")},document.addEventListener("visibilitychange",this.visibilityHandler),this.startActivityCheck(),this.activityEvents=["mousedown","mousemove","keypress","scroll","touchstart","click"],this.activityHandler=()=>{this.updateLastActivityTime()},this.activityEvents.forEach((t=>{document.addEventListener(t,this.activityHandler,!0)})),window.addEventListener("storage",this.handleStorageChange)},methods:{handleKeyDown(t){if("Enter"===t.key)if(t.ctrlKey){const e=t.target,s=e.value,i=e.selectionStart,a=e.selectionEnd;e.value=s.substring(0,i)+"\n"+s.substring(a),e.selectionStart=e.selectionEnd=i+1,t.preventDefault()}else t.preventDefault(),this.sendMessage()},initWebSocket(){if(this.isWebSocketConnected)console.log("WebSocket已连接,跳过初始化");else if(console.log("走这里了嘛 家电节爱哦都觉得久啊是哦大点击"),this.stompClient&&"DISCONNECTED"!==this.stompClient.state)console.log("WebSocket正在连接中,跳过初始化");else try{this.stompClient&&this.forceDisconnectAll(),console.log("开始初始化WebSocket连接...");const t="https://test.m2pool.com/api/".replace("https","wss"),e=`${t}chat/ws`;this.stompClient=a.Stomp.client(e),this.stompClient.splitLargeFrames=!0,this.stompClient.maxWebSocketFrameSize=16777216,this.stompClient.maxWebSocketMessageSize=16777216,this.stompClient.webSocketFactory=()=>{const t=new WebSocket(e);return t.binaryType="arraybuffer",t},this.stompClient.debug=t=>{(t.includes("CONNECTED")||t.includes("DISCONNECTED")||t.includes("ERROR"))&&console.log("[客服系统]",t)},this.userType=2;const s={email:this.userEmail,type:this.userType};this.stompClient.onStompError=t=>{console.error("[客服系统] STOMP 错误:",t),this.handleSocketError(t.headers?.message||t.body)},this.stompClient.connect(s,(t=>{console.log("🎉 [客服系统] WebSocket 连接成功",t),this.isWebSocketConnected=!0,this.connectionStatus="connected",this.reconnectAttempts=0,this.isConnectionVerified=!1,this.lastHeartbeatTime=Date.now(),console.log("🔗 开始订阅客服消息..."),this.subscribeToMessages(),this.updateLastActivityTime(),console.log("✅ 连接成功,只使用 STOMP 内置心跳机制"),console.log("⚡ 客服连接成功,等待订阅完成后验证")}),(t=>{console.error("[客服系统] WebSocket 错误:",t),this.handleSocketError(t)})),this.stompClient.heartbeat.outgoing=2e4,this.stompClient.heartbeat.incoming=2e4}catch(t){console.error("初始化 CustomerService WebSocket 失败:",t),this.handleDisconnect()}},subscribeToMessages(){if(this.stompClient&&this.isWebSocketConnected)try{console.log("开始订阅客服消息频道:",`/sub/queue/customer/${this.userEmail}`);const t=this.stompClient.subscribe(`/sub/queue/customer/${this.userEmail}`,this.handleIncomingMessage),e=this.stompClient.subscribe(`/sub/queue/close/room/${this.userEmail}`,this.handleRoomClose);t&&e?(console.log("✅ CustomerService 成功订阅消息频道:",`/sub/queue/customer/${this.userEmail}`),console.log("✅ CustomerService 成功订阅关闭消息频道:",`/sub/queue/close/room/${this.userEmail}`),console.log("📢 客服订阅成功,立即标记连接已验证"),this.markConnectionVerified(),this.isWebSocketConnected=!0,this.connectionStatus="connected",console.log("✅ 强制设置连接状态为已连接")):(console.error("❌ 客服订阅失败,返回空subscription"),this.startConnectionVerification())}catch(t){console.error("❌ CustomerService 订阅消息异常:",t),this.startConnectionVerification()}else console.log("STOMP客户端未连接,无法订阅消息")},handleRoomClose(t){try{const e=t.body,s=t=>t?("object"===typeof t&&"value"in t&&(t=t.value),t=String(t).trim().toLowerCase(),t=t.replace(/^['"]+|['"]+$/g,""),t):"",i=s(e),a=this.contacts.findIndex((t=>{const e=s(t.name);return e===i}));if(-1!==a){this.currentContactId===this.contacts[a].roomId&&(this.currentContactId=null),this.contacts.splice(a,1),this.$delete(this.messages,this.contacts[a].roomId);const t=this.manualCreatedRooms.findIndex((t=>t.name===e));-1!==t&&(this.manualCreatedRooms.splice(t,1),this.saveManualCreatedRooms()),console.log(`聊天室 ${e} 已关闭`)}}catch(e){console.error("处理聊天室关闭消息失败:",e)}},disconnectWebSocket(){if(this.stompClient)try{this.stompClient.subscriptions&&Object.keys(this.stompClient.subscriptions).forEach((t=>{this.stompClient.unsubscribe(t)})),this.stompClient.deactivate(),this.isWebSocketConnected=!1,this.connectionStatus="disconnected"}catch(t){console.error("断开 CustomerService WebSocket 连接失败:",t)}},parseSocketError(t){let e="";if(e="string"===typeof t?t:t&&"object"===typeof t?t.message||t.body||t.headers?.message||String(t):String(t||""),e.includes(",")){const t=e.split(","),s=t[0].trim(),i=t.slice(1).join(",").trim();return{code:s,message:i}}const s=e.match(/(\d{4})/);return s?{code:s[1],message:e}:{code:"",message:e}},async handleSocketError(t){const e=Date.now();if(this.isHandlingError||e-this.lastErrorTime<5e3)console.log("正在处理错误或错误处理间隔太短,跳过此次错误处理");else{this.isHandlingError=!0,this.lastErrorTime=e;try{const{code:e,message:s}=this.parseSocketError(t);switch(console.log("解析的错误信息:",{code:e,message:s}),e){case"1020":await this.handleConnectionLimitError();break;case"1021":this.handleServerLimitError(s);break;case"1022":this.handlePrincipalError(s);break;case"1023":this.handlePrincipalError(s);break;default:s.includes("连接数已达上限")||s.includes("本机连接数已达上限")?await this.handleConnectionLimitError():this.handleDisconnect();break}}catch(s){console.error("处理Socket错误时发生异常:",s),this.handleDisconnect()}finally{setTimeout((()=>{this.isHandlingError=!1}),2e3)}}},async handleConnectionLimitError(){console.log("检测到连接数上限错误,开始强制断开并重连..."),this.reconnectTimer&&(clearTimeout(this.reconnectTimer),this.reconnectTimer=null),this.isWebSocketConnected=!1,this.connectionStatus="error",console.log("💡 检测到连接数上限,后台自动重连中...");try{this.forceDisconnectAll(),await new Promise((t=>setTimeout(t,3e3))),console.log("尝试重新连接..."),await this.initWebSocket(),this.isWebSocketConnected?console.log("✅ 客服连接已自动恢复正常"):console.error("❌ 客服连接重连失败")}catch(t){console.error("处理连接数上限错误失败:",t)}},handleServerLimitError(t){this.isWebSocketConnected=!1,this.connectionStatus="error",console.log("服务器连接数已达上限"),console.error("服务器繁忙,连接数已达上限"),this.reconnectTimer&&clearTimeout(this.reconnectTimer)},handlePrincipalError(t){this.isWebSocketConnected=!1,this.connectionStatus="error",console.log("用户身份验证失败:",t),console.error("身份验证失败:",t),this.reconnectTimer&&clearTimeout(this.reconnectTimer)},startConnectionVerification(){if(console.log("🔍 启动客服连接验证机制(被动验证)..."),console.log("当前连接状态:",this.connectionStatus),console.log("当前WebSocket连接状态:",this.isWebSocketConnected),console.log("当前STOMP连接状态:",this.stompClient?.connected),this.isConnectionVerified=!1,this.clearConnectionVerifyTimer(),"connected"===this.connectionStatus&&this.isWebSocketConnected&&this.stompClient?.connected)return console.log("✅ 客服连接状态良好,立即标记为已验证"),void this.markConnectionVerified();this.connectionVerifyTimer=setTimeout((()=>{this.isConnectionVerified||(console.log("⏰ 客服连接验证超时(1分钟),当前状态:",this.connectionStatus),console.log("WebSocket连接状态:",this.isWebSocketConnected),console.log("STOMP连接状态:",this.stompClient?.connected),console.log("连接可能不可用"),this.handleConnectionVerificationFailure())}),this.connectionVerifyTimeout),console.log("⏲️ 已设置客服1分钟验证超时定时器")},markConnectionVerified(){this.isConnectionVerified?console.log("🔄 客服连接已经验证过了,跳过重复验证"):(console.log("🎉 客服连接验证成功!清除验证定时器"),this.isConnectionVerified=!0,this.clearConnectionVerifyTimer(),"connected"!==this.connectionStatus&&(console.log("📡 修正客服连接状态为connected"),this.connectionStatus="connected"))},handleConnectionVerificationFailure(){console.log("连接验证失败,连接可能无法正常收发消息");const t=Date.now();this.isHandlingError&&t-this.lastErrorTime<5e3?console.log("正在处理错误中,跳过重复处理"):(this.isHandlingError=!0,this.lastErrorTime=t,this.clearConnectionVerifyTimer(),this.isWebSocketConnected=!1,this.connectionStatus="error",setTimeout((()=>{if(console.log("连接验证失败,开始重新连接..."),this.isHandlingError=!1,this.stompClient)try{this.stompClient.disconnect()}catch(t){console.warn("断开连接时出错:",t)}this.initWebSocket().catch((t=>{console.error("重新连接失败:",t),this.isHandlingError=!1}))}),2e3))},async checkAndEnsureConnection(){return console.log("🔍 检查客服连接状态..."),this.updateLastActivityTime(),this.stompClient?this.stompClient.connected?this.stompClient.ws&&this.stompClient.ws.readyState!==WebSocket.OPEN?(console.log("❌ WebSocket底层连接异常,需要重新连接"),await this.reconnectForSend()):this.isWebSocketConnected&&"connected"===this.connectionStatus?(console.log("✅ 客服连接状态良好"),!0):(console.log("❌ 应用层连接状态异常,需要重新连接"),await this.reconnectForSend()):(console.log("❌ STOMP连接已断开,需要重新连接"),await this.reconnectForSend()):(console.log("❌ STOMP客户端不存在,需要重新连接"),await this.reconnectForSend())},async reconnectForSend(){try{return console.log("🔄 开始为发送消息重新连接..."),this.connectionStatus="connecting",this.forceDisconnectAll(),await new Promise((t=>setTimeout(t,1e3))),await this.initWebSocket(),this.isWebSocketConnected&&"connected"===this.connectionStatus?(console.log("✅ 重连成功"),!0):(console.log("❌ 重连失败"),console.error("❌ 重连失败"),!1)}catch(t){return console.error("重连过程异常:",t),console.error("❌ 连接异常"),!1}},isConnectionError(t){if(!t)return!1;const e=t.message||t.toString();return e.includes("ExecutorSubscribableChannel")||e.includes("NullPointerException")||e.includes("Failed to send message")||e.includes("connection")||e.includes("disconnect")||e.includes("websocket")||e.includes("STOMP")},async handleConnectionErrorInSend(t){console.log("🚨 发送消息时检测到连接错误:",t.message),console.log("🔄 连接已断开,正在重新连接..."),this.isWebSocketConnected=!1,this.connectionStatus="connecting";try{const t=await this.reconnectForSend();t&&console.log("✅ 发送消息时自动重连成功")}catch(e){console.error("🔄 客服自动重连失败:",e),this.connectionStatus="error"}},clearConnectionVerifyTimer(){this.connectionVerifyTimer?(console.log("🧹 清除客服连接验证定时器"),clearTimeout(this.connectionVerifyTimer),this.connectionVerifyTimer=null):console.log("🔍 没有需要清除的客服验证定时器")},startHeartbeat(){console.log("💓 启动客服心跳检测..."),this.stopHeartbeat(),this.heartbeatInterval=setInterval((()=>{this.isWebSocketConnected&&this.stompClient?.connected?this.sendHeartbeat():(console.warn("💔 客服心跳检测发现连接异常"),this.handleHeartbeatFailure())}),this.heartbeatTimeout),console.log(`💓 客服心跳检测已启动,间隔: ${this.heartbeatTimeout/1e3}秒`)},stopHeartbeat(){this.heartbeatInterval&&(console.log("💔 停止客服心跳检测"),clearInterval(this.heartbeatInterval),this.heartbeatInterval=null)},sendHeartbeat(){try{if(!this.stompClient?.connected)return console.warn("💔 STOMP未连接,无法发送心跳"),void this.handleHeartbeatFailure();this.stompClient.ws&&this.stompClient.ws.readyState===WebSocket.OPEN?(this.lastHeartbeatTime=Date.now(),this.updateLastActivityTime()):(console.warn("💔 WebSocket底层连接异常"),this.handleHeartbeatFailure())}catch(t){console.error("💔 客服心跳检测异常:",t),this.handleHeartbeatFailure()}},handleHeartbeatFailure(){console.warn("💔 客服心跳失败,开始重连..."),this.stopHeartbeat(),this.isWebSocketConnected=!1,this.connectionStatus="error",this.handleDisconnect()},startConnectionCheck(){console.log("🔍 启动客服连接状态检查..."),this.stopConnectionCheck(),this.connectionCheckInterval=setInterval((()=>{this.performConnectionCheck()}),this.connectionCheckTimeout),console.log(`🔍 客服连接状态检查已启动,间隔: ${this.connectionCheckTimeout/1e3}秒`)},stopConnectionCheck(){this.connectionCheckInterval&&(console.log("🔍 停止客服连接状态检查"),clearInterval(this.connectionCheckInterval),this.connectionCheckInterval=null)},performConnectionCheck(){const t=Date.now(),e=t-this.lastHeartbeatTime;return this.stompClient&&this.stompClient.connected&&this.isWebSocketConnected?e>18e4?(console.warn("🚨 客服连接状态检查:心跳超时"),void this.handleConnectionFailure("心跳超时")):this.stompClient.ws&&this.stompClient.ws.readyState!==WebSocket.OPEN?(console.warn("🚨 客服连接状态检查:WebSocket底层连接异常"),void this.handleConnectionFailure("WebSocket底层连接异常")):void 0:(console.warn("🚨 客服连接状态检查:基本连接异常"),void this.handleConnectionFailure("基本连接状态异常"))},handleConnectionFailure(t){console.warn(`🚨 客服连接失败: ${t}`);const e=Date.now();this.isHandlingError&&e-this.lastErrorTime<1e4?console.log("正在处理连接失败,跳过重复处理"):(this.isHandlingError=!0,this.lastErrorTime=e,this.stopHeartbeat(),this.stopConnectionCheck(),this.isWebSocketConnected=!1,this.connectionStatus="error",setTimeout((()=>{this.isHandlingError=!1,this.handleDisconnect()}),1e3))},forceDisconnectAll(){try{if(console.log("开始强制断开所有连接..."),this.reconnectTimer&&(clearTimeout(this.reconnectTimer),this.reconnectTimer=null),this.clearConnectionVerifyTimer(),this.stopHeartbeat(),this.stopConnectionCheck(),this.stompClient){this.stompClient.subscriptions&&Object.keys(this.stompClient.subscriptions).forEach((t=>{try{this.stompClient.unsubscribe(t)}catch(e){console.log("取消订阅失败:",e)}}));try{this.stompClient.deactivate()}catch(t){console.log("断开连接失败:",t)}setTimeout((()=>{this.stompClient=null}),100)}this.isWebSocketConnected=!1,this.connectionStatus="disconnected",console.log("已强制断开所有连接")}catch(t){console.error("强制断开连接失败:",t),this.stompClient=null}},handleDisconnect(){this.isHandlingError?console.log("正在处理特殊错误,跳过普通断开处理"):(this.clearConnectionVerifyTimer(),this.stopHeartbeat(),this.stopConnectionCheck(),this.isWebSocketConnected=!1,this.connectionStatus="error",this.isConnectionVerified=!1,this.reconnectAttempts{this.isWebSocketConnected||this.isHandlingError||this.initWebSocket()}),this.reconnectInterval)):(console.log("❌ 达到最大重连次数,停止自动重连"),console.error("❌ 达到最大重连次数,连接失败")))},async checkAndReconnect(){this.isWebSocketConnected||(console.log("页面恢复可见,尝试重新连接..."),await this.initWebSocket())},startActivityCheck(){this.activityCheckInterval=setInterval((()=>{const t=Date.now(),e=t-this.lastActivityTime;e>144e5&&(console.log("客服系统:4小时无活动,断开连接防止僵尸连接"),this.disconnectWebSocket()),e>18e5&&e%18e5<6e4&&console.log(`客服系统:已无活动 ${Math.floor(e/6e4)} 分钟,连接状态:${this.connectionStatus}`)}),6e4)},updateLastActivityTime(){this.lastActivityTime=Date.now()},getUTCTime(){const t=new Date;return new Date(t.getTime()+6e4*t.getTimezoneOffset())},async sendMessage(){if("online"!==this.networkStatus)return void this.$message({message:this.$t("chat.networkError")||"网络连接已断开,无法发送消息",type:"error",showClose:!0});if(!this.inputMessage.trim()||!this.currentContact||this.sending)return;const t=this.inputMessage.trim();this.inputMessage="",this.sending=!0;try{const e=await this.checkAndEnsureConnection();if(!e)return console.log("客服连接检查失败,无法发送消息"),this.sending=!1,void(this.inputMessage=t);const s=void 0!==this.currentContact.sendUserType?this.currentContact.sendUserType:1,i={content:t,type:1,email:this.currentContact.name,receiveUserType:s,roomId:this.currentContactId};this.stompClient.send("/point/send/message/to/user",{},JSON.stringify(i));const a=(new Date).toISOString(),n=`local_${Date.now()}_${Math.random().toString(36).substr(2,9)}`;console.log("📤 发送消息 - 立即添加到本地:",{currentContactId:this.currentContactId,currentContactName:this.currentContact?.name,messageContent:t,currentTime:a,localMessageId:n}),this.addMessageToChat({id:n,sender:this.$t("chat.my")||"我",avatar:"iconfont icon-icon28",content:t,time:a,isSelf:!0,isImage:!1,type:1,roomId:this.currentContactId,isLocalMessage:!0},!0),this.updateContactLastMessage({roomId:this.currentContactId,content:t,isImage:!1,time:a});const o=this.contacts.find((t=>t.roomId===this.currentContactId));o&&(o.unread=0),this.sending=!1,this.$nextTick((()=>{this.scrollToBottom()}))}catch(e){if(console.error("客服发送消息失败:",e),this.sending=!1,this.isConnectionError(e))console.log("检测到客服连接错误,开始重连..."),this.handleConnectionErrorInSend(e);else{const{code:t}=this.parseSocketError(e);if(["1020","1021","1022","1023"].includes(t))return;console.error("💬 客服发送消息错误详情:",e),e.message&&(e.message.includes("connection")||e.message.includes("WebSocket")||e.message.includes("STOMP"))?console.log("🔄 发送失败,触发自动重连机制"):(console.error("💬 发送消息失败,需要用户重试"),this.$message.error(this.$t("chat.failInSend")||"发送失败,请重试"))}}},formatMessageContent(t){return t?t.replace(/\n/g,"
"):""},subscribeToPersonalMessages(){this.stompClient&&this.wsConnected&&this.stompClient.subscribe(`/user/queue/${this.userEmail}`,this.handleIncomingMessage)},async handleIncomingMessage(t){try{console.log("🎉 客服收到消息,标记连接已验证"),this.markConnectionVerified(),this.updateLastActivityTime(),this.lastHeartbeatTime=Date.now(),this.isWebSocketConnected=!0,this.connectionStatus="connected";const e=JSON.parse(t.body);console.log("客服收到的消息",e);const s=e.createTime||e.sendTime;let i;i=s?"string"===typeof s&&s.includes("T")?s:"number"===typeof s||/^\d+$/.test(s)?new Date(parseInt(s)).toISOString():new Date(s).toISOString():(new Date).toISOString();const a={id:e.id,sender:e.sendUserType===this.userType&&e.sendEmail===this.userEmail?this.$t("chat.my")||"我":e.sendEmail||this.$t("chat.unknownSender")||"未知发送者",avatar:2===e.sendUserType?"iconfont icon-icon28":"iconfont icon-user",content:e.content,time:i,isSelf:e.sendUserType===this.userType&&e.sendEmail===this.userEmail,isImage:2===e.type,type:e.type,roomId:e.roomId,sendUserType:e.sendUserType,isCreate:e.isCreate,clientReadNum:e.clientReadNum};if(a.isSelf){const t=this.messages[a.roomId]||[],e=t.findIndex((t=>{if(!t.isLocalMessage||t.content!==a.content)return!1;const e=new Date(t.time).getTime(),s=new Date(a.time).getTime(),i=Math.abs(s-e);return i<3e4}));if(-1!==e)return void this.$set(t,e,{...t[e],id:a.id,time:a.time,isLocalMessage:!1});const s=this.checkDuplicateMessage(a);if(s)return}const n=this.contacts.find((t=>t.roomId===a.roomId));if(n)n.lastMessage=a.isImage?this.$t("chat.picture2")||"[图片]":a.content,n.lastTime=a.time;else{const t={roomId:a.roomId,name:a.sender,lastMessage:a.isImage?this.$t("chat.picture2")||"[图片]":a.content,lastTime:a.time,unread:a.isSelf?0:1,important:!1,isGuest:0===e.sendUserType,sendUserType:a.sendUserType,isManualCreated:!0};this.contacts.push(t),this.$set(this.messages,a.roomId,[])}if(this.messages[a.roomId]||this.$set(this.messages,a.roomId,[]),this.messages[a.roomId].push({id:a.id,sender:a.sender,avatar:a.avatar,content:a.content,time:a.time,isSelf:a.isSelf,isImage:a.isImage,type:a.type,roomId:a.roomId}),this.needsResort(this.messages[a.roomId])&&(this.messages[a.roomId]=this.sortMessages(this.messages[a.roomId])),a.roomId===this.currentContactId)if(this.userViewHistory){const t=this.contacts.find((t=>t.roomId===a.roomId));t&&(t.unread=a.clientReadNum||t.unread+1||1,this.setUnreadCount(a.roomId,t.unread))}else await this.markMessagesAsRead(a.roomId);else if(!a.isSelf){const t=this.contacts.find((t=>t.roomId===a.roomId));t&&(t.unread=a.clientReadNum||t.unread+1||1,this.setUnreadCount(a.roomId,t.unread))}this.sortContacts()}catch(e){console.error("处理新消息失败:",e)}},handleContactListScroll(t){const e=t.target;e.scrollHeight-e.scrollTop-e.clientHeight<2&&this.loadMoreContacts()},async loadMoreContacts(){if(this.isLoadingMoreContacts)return;const t=this.contacts[this.contacts.length-1];if(t){this.isLoadingMoreContacts=!0;try{const e=t=>{if(!t)return null;const e=new Date(t),s=e.getFullYear(),i=String(e.getMonth()+1).padStart(2,"0"),a=String(e.getDate()).padStart(2,"0"),n=String(e.getHours()).padStart(2,"0"),o=String(e.getMinutes()).padStart(2,"0"),r=String(e.getSeconds()).padStart(2,"0");return`${s}-${i}-${a} ${n}:${o}:${r}`},s={sendDateTime:e(t.lastTime),userType:2,email:this.userEmail},a=await(0,i.getRoomList)(s);if(200===a?.code){const t=a.rows.map((t=>{const e=this.contacts.find((e=>e.roomId===t.id)),s=this.manualCreatedRooms.find((e=>e.roomId===t.id)),i=1===t.flag||0!==t.flag&&(1===t.important||!!e&&e.important),a=t.lastUserSendTime;let n;return n=a?"string"===typeof a&&a.includes("T")?a:"number"===typeof a||/^\d+$/.test(a)?new Date(parseInt(a)).toISOString():new Date(a).toISOString():(new Date).toISOString(),{roomId:t.id,name:t.userEmail||this.$t("chat.Unnamed")||"未命名聊天室",avatar:this.getDefaultAvatar(t.roomName||this.$t("chat.Unnamed")||"未命名聊天室"),lastMessage:t.lastMessage||(e?e.lastMessage:this.$t("chat.noNewsAtTheMoment")||"暂无消息"),lastTime:n,unread:e?.unread??t.clientReadNum??0,important:i,isManualCreated:!!s,sendUserType:t.sendUserType,isGuest:0===t.sendUserType}})),e=t.filter((t=>!this.contacts.some((e=>e.roomId===t.roomId))));e.length>0&&(this.contacts=[...this.contacts,...e],this.sortContacts())}else this.$message({message:this.$t("chat.contactFailed")||"加载更多联系人失败",type:"error",duration:3e3,showClose:!0})}catch(e){console.error("5858",e)}finally{this.isLoadingMoreContacts=!1}}},handleNewChatRoom(t){const e=this.contacts.find((e=>e.roomId===t.roomId));if(!e){const e={roomId:t.roomId,name:t.sender,lastMessage:t.isImage?this.$t("chat.picture2")||"[图片]":t.content,lastTime:t.time,unread:1,important:!1,isGuest:0===t.sendUserType,sendUserType:t.sendUserType,isManualCreated:!0,clientReadNum:t.clientReadNum};this.contacts.push(e),this.$set(this.messages,t.roomId,[]),this.messages[t.roomId].push({id:t.id,sender:t.sender,avatar:2===t.sendUserType?"iconfont icon-icon28":"iconfont icon-user",content:t.content,time:t.time,isSelf:!1,isImage:2===t.type,type:t.type,roomId:t.roomId}),this.needsResort(this.messages[t.roomId])&&(this.messages[t.roomId]=this.sortMessages(this.messages[t.roomId])),this.manualCreatedRooms.push(e),this.saveManualCreatedRooms(),this.sortContacts()}},saveManualCreatedRooms(){localStorage.setItem("manualCreatedRooms",JSON.stringify(this.manualCreatedRooms))},async loadManualCreatedRooms(){try{const t=localStorage.getItem("manualCreatedRooms");if(t){this.manualCreatedRooms=JSON.parse(t);for(const t of this.manualCreatedRooms){const e=this.contacts.find((e=>e.roomId===t.roomId));e||(this.contacts.push({...t,lastTime:t.lastTime||(new Date).toISOString()}),this.messages[t.roomId]||(this.$set(this.messages,t.roomId,[]),await this.loadMessages(t.roomId)))}this.sortContacts()}}catch(t){console.error("加载手动创建的聊天室失败:",t)}},async createNewChatRoom(t){try{const e=await createChatRoom({userEmail:t.sender,userType:t.sendUserType});if(e&&200===e.code){const s={userEmail:t.sender,roomId:e.data.roomId,lastMessage:t.content,lastMessageTime:t.time,unreadCount:t.clientReadNum||0,userType:t.sendUserType};return this.chatRooms.unshift(s),s}}catch(e){throw console.error("创建新聊天室失败:",e),e}},updateChatRoomList(t){const e=this.chatRooms.findIndex((e=>e.roomId===t.roomId));if(-1!==e){this.chatRooms[e]={...this.chatRooms[e],lastMessage:t.content,lastMessageTime:t.time,unreadCount:t.clientReadNum||this.chatRooms[e].unreadCount};const s=this.chatRooms.splice(e,1)[0];this.chatRooms.unshift(s)}},async markMessagesAsRead(t=this.currentContactId){if(t)try{const e={roomId:t,userType:2},s=await(0,i.getReadMessage)(e);if(s&&200===s.code){console.log("消息已标记为已读");const e=this.contacts.find((e=>e.roomId===t));e&&(e.unread=0,this.setUnreadCount(t,0))}else console.warn("标记消息已读失败",s)}catch(e){console.error("标记消息已读出错:",e)}},parseUTCTime(t){if(!t)return new Date;try{return new Date(t)}catch(e){return console.error("解析时间错误:",e),new Date}},async fetchRoomList(){try{this.loadingRooms=!0;const t={lastTime:null,userType:2,email:this.userEmail},e=await(0,i.getRoomList)(t);if(200===e?.code){const t=e.rows.map((t=>{const e=this.contacts.find((e=>e.roomId===t.id)),s=this.manualCreatedRooms.find((e=>e.roomId===t.id)),i=1===t.flag||0!==t.flag&&(1===t.important||!!e&&e.important),a=t.lastUserSendTime||t.createTime;let n;return n=a?"string"===typeof a&&a.includes("T")?a:"number"===typeof a||/^\d+$/.test(a)?new Date(parseInt(a)).toISOString():new Date(a).toISOString():(new Date).toISOString(),{roomId:t.id,name:t.userEmail||this.$t("chat.Unnamed")||"未命名聊天室",avatar:this.getDefaultAvatar(t.roomName||this.$t("chat.Unnamed")||"未命名聊天室"),lastMessage:t.lastMessage||(e?e.lastMessage:this.$t("chat.noNewsAtTheMoment")||"暂无消息"),lastTime:n,unread:e?.unread??t.clientReadNum??0,important:i,isManualCreated:!!s,sendUserType:t.sendUserType,isGuest:0===t.sendUserType}}));this.contacts=t,this.sortContacts()}}catch(t){if(t&&("canceled"===t.message||"Cancel"===t.message||t.message?.includes("canceled")))return;console.error("获取聊天室列表异常:",t),this.$message({message:this.$t("chat.listException")||"获取聊天室列表异常",type:"error",duration:3e3,showClose:!0})}finally{this.loadingRooms=!1}},async loadMoreHistory(){if(!this.currentContactId)return;const t=this.messages[this.currentContactId]||[];if(0===t.length)return this.hasMoreHistory=!1,void(this.noMoreHistoryMessage=this.$t("chat.noMoreHistory")||"没有更多历史消息");const e=this.getEarliestMessage(t);if(!e||!e.id)return this.hasMoreHistory=!1,void(this.noMoreHistoryMessage=this.$t("chat.noMoreHistory")||"没有更多历史消息");this.history7Params.id=e.id,this.history7Params.roomId=this.currentContactId,this.history7Params.email=this.userEmail;try{this.messagesLoading=!0;const t=await(0,i.getHistory7)(this.history7Params);if(!t||200!==t.code||!t.data||0===t.data.length)return this.hasMoreHistory=!1,void(this.noMoreHistoryMessage=this.$t("chat.noMoreHistory")||"没有更多历史消息");const e=t.data.filter((t=>t.roomId==this.currentContactId||String(t.roomId)===String(this.currentContactId)));if(0===e.length)return this.hasMoreHistory=!1,void(this.noMoreHistoryMessage=this.$t("chat.noMoreHistory")||"没有更多历史消息");let s=e.map((t=>({id:t.id,sender:1===t.isSelf?this.$t("chat.my")||"我":t.sendEmail||this.$t("chat.unknownSender")||"未知发送者",avatar:"iconfont icon-icon28",content:t.content,time:t.createTime,isSelf:1===t.isSelf,isImage:2===t.type,isRead:1===t.isRead,type:t.type,roomId:t.roomId})));const a=(this.messages[this.currentContactId]||[]).map((t=>t.id)),n=s.filter((t=>!a.includes(t.id)));if(0===n.length)return this.hasMoreHistory=!1,void(this.noMoreHistoryMessage=this.$t("chat.noMoreHistory")||"没有更多历史消息");s=this.sortMessages(n);const o=this.messages[this.currentContactId]||[];this.$set(this.messages,this.currentContactId,[...s,...o])}catch(s){console.error("加载更多历史消息失败:",s),this.$message.error(this.$t("chat.historicalFailure")||"加载更多历史消息失败")}finally{this.messagesLoading=!1}},async selectContact(t){if(this.currentContactId!==t){this.updateLastActivityTime();try{this.messagesLoading=!0,this.currentContactId=t,this.userViewHistory=!1,this.hasMoreHistory=!0,this.noMoreHistoryMessage="",this.history7Params={id:"",roomId:t,userType:2},await this.loadMessages(t),await this.markMessagesAsRead(t)}catch(e){console.error("选择联系人失败:",e),this.$message({message:this.$t("chat.loadFailed")||"加载失败",type:"error",duration:3e3,showClose:!0})}finally{this.messagesLoading=!1,this.$nextTick((()=>{this.scrollToBottom()}))}}},isAtBottom(){const t=this.$refs.messageContainer;return!t||t.scrollHeight-t.scrollTop-t.clientHeight<2},async loadMessages(t){if(t)try{console.log(this.userEmail,"加载聊天消息"),this.history7Params.email=this.userEmail,this.history7Params.roomId=t;const e=await(0,i.getHistory7)(this.history7Params);if(200===e?.code&&e.data){let s=e.data.filter((e=>e.roomId==t)).map((t=>({id:t.id,sender:1===t.isSelf?this.$t("chat.my")||"我":t.sendEmail||this.$t("chat.unknownSender")||"未知发送者",avatar:2==t.sendUserType?"iconfont icon-icon28":"iconfont icon-user",content:t.content,time:t.createTime,isSelf:1===t.isSelf,isImage:2===t.type,isRead:1===t.isRead,type:t.type,roomId:t.roomId,sendUserType:t.sendUserType})));s=this.sortMessages(s),this.$set(this.messages,t,s);const i=this.contacts.find((e=>e.roomId===t));if(i&&s.length>0){const t=s[s.length-1].time;i.lastTime=t}i&&(i.unread=0)}else this.$set(this.messages,t,[]),200!==e?.code&&this.$message({message:this.$t("chat.recordFailed")||"加载聊天记录失败",type:"error",duration:3e3,showClose:!0})}catch(e){console.error("加载消息异常:",e),this.$set(this.messages,t,[])}},checkDuplicateMessage(t){const e=this.messages[t.roomId];if(!e)return!1;if(t.id&&e.some((e=>e.id===t.id)))return console.log("🔍 发现相同ID的消息,判定为重复:",t.id),!0;const s=Date.now()-3e4,i=new Date(t.time).getTime();return e.some((e=>{if(e.isLocalMessage)return!1;if(!e.isSelf||e.content!==t.content)return!1;const a=new Date(e.time).getTime(),n=Math.abs(a-i),o=a>s,r=n<3e4;return!(!o||!r)&&(console.log("🔍 发现重复消息:",{existingTime:e.time,newTime:t.time,timeDiff:n,content:t.content.substring(0,50)}),!0)}))},addMessageToChat(t,e=!1){const s=t.roomId||this.currentContactId;this.messages[s]||this.$set(this.messages,s,[]);const i={id:t.id||Date.now(),sender:t.sender,avatar:t.avatar||(t.isSelf?"iconfont icon-icon28":"iconfont icon-user"),content:t.content,time:t.time||new Date,isSelf:t.isSelf,isImage:t.isImage||!1,type:t.type||1,roomId:s,isRead:t.isRead||!1,isLocalMessage:t.isLocalMessage||!1};this.messages[s].push(i),this.updateContactLastMessage({roomId:s,content:i.isImage?this.$t("chat.picture2")||"[图片]":i.content,isImage:i.isImage,time:i.time}),s===this.currentContactId&&(e?this.$nextTick((()=>{this.scrollToBottom(!0),this.userViewHistory=!1})):this.userViewHistory||this.$nextTick((()=>{this.scrollToBottom()})))},async handleImageUpload(t){if(!this.currentContact)return void this.$message({message:this.$t("chat.chooseFirst")||"请先选择联系人",type:"error",duration:3e3,showClose:!0});if(!this.stompClient||!this.isWebSocketConnected)return void this.$message({message:this.$t("chat.chatDisconnected")||"聊天连接已断开,请刷新页面重试",type:"error",duration:3e3,showClose:!0});const e=t.target.files[0];if(!e)return;if(!e.type.startsWith("image/"))return void this.$message({message:this.$t("chat.onlyImages")||"只能上传图片文件!",type:"error",duration:3e3,showClose:!0});const s=5242880;if(e.size>s)this.$message({message:this.$t("chat.imageTooLarge")||"图片大小不能超过5MB!",type:"error",duration:3e3,showClose:!0});else{this.sending=!0;try{console.log("📤 正在上传图片...");const t=new FormData;t.append("file",e);const s=await this.$axios({method:"post",url:"https://test.m2pool.com/api/pool/ticket/uploadFile",data:t,headers:{"Content-Type":"multipart/form-data"}});if(200!==s.data.code)throw new Error(s.data.msg||"上传失败");{const t=s.data.data.url;this.sendImageMessage(t),console.log("✅ 图片发送成功")}}catch(i){console.error("上传图片异常:",i),this.$message({message:this.$t("chat.pictureFailed")||"图片发送失败,请重试",type:"error",duration:3e3,showClose:!0})}finally{this.sending=!1,this.$refs.imageInput.value=""}}},async sendImageMessage(t){try{const e=await this.checkAndEnsureConnection();if(!e)return console.log("客服图片发送连接检查失败"),void console.error("❌ 连接异常,图片发送失败");const s={type:2,email:this.currentContact.name,receiveUserType:this.currentContact.sendUserType||1,roomId:this.currentContactId,content:t};this.stompClient.send("/point/send/message/to/user",{},JSON.stringify(s));const i=(new Date).toISOString(),a=`local_img_${Date.now()}_${Math.random().toString(36).substr(2,9)}`;console.log("📤 发送图片 - 立即添加到本地:",{currentContactId:this.currentContactId,imageUrl:t,currentTime:i,localImageId:a}),this.addMessageToChat({id:a,sender:this.$t("chat.my")||"我",avatar:"iconfont icon-icon28",content:t,time:i,isSelf:!0,isImage:!0,type:2,roomId:this.currentContactId,isLocalMessage:!0},!0),this.updateContactLastMessage({roomId:this.currentContactId,content:t,isImage:!0,time:i})}catch(e){console.error("发送图片消息失败:",e),this.isConnectionError(e)?(console.log("图片发送时检测到连接错误,开始重连..."),this.handleConnectionErrorInSend(e)):(console.error("💬 图片发送失败,需要用户重试"),this.$message.error(this.$t("chat.pictureFailed")||"发送图片消息失败,请重试"))}},updateContactLastMessage(t){let e=this.contacts.find((e=>e.roomId===t.roomId));if(e||"string"!==typeof t.roomId||(e=this.contacts.find((e=>e.name&&e.name.includes(t.roomId)||e.roomId&&e.roomId.includes(t.roomId)))),e){const s=e.lastTime,i=t.time||(new Date).toISOString();e.lastMessage=t.isImage?this.$t("chat.picture2")||"[图片]":t.content,e.lastTime=i,console.log("⚡ updateContactLastMessage - 执行时间更新:",{contactName:e.name,roomId:t.roomId,oldTime:s,newTime:i,messageTime:t.time,isImage:t.isImage,contactsTotal:this.contacts.length}),this.$set(e,"lastTime",i),this.$set(e,"lastMessage",e.lastMessage),this.sortContacts(),this.$nextTick((()=>{this.$forceUpdate()}))}else console.error("❌ updateContactLastMessage - 未找到联系人:",{searchRoomId:t.roomId,messageContent:t.content,allContacts:this.contacts.map((t=>({roomId:t.roomId,name:t.name,lastTime:t.lastTime})))})},incrementUnreadCount(t,e=1){const s=this.contacts.find((e=>e.roomId===t));s&&(s.unread=e>1?e:(s.unread||0)+1)},previewImage(t){this.previewImageUrl=t,this.previewVisible=!0},async toggleImportant(t,e){if(t)try{const s=await(0,i.getUpdateRoom)({id:t,flag:e?1:0});if(s&&200===s.code){const s=this.contacts.find((e=>e.roomId===t));s&&(s.important=e),this.sortContacts(),console.log(e?"✅ 已标记为重要聊天":"✅ 已取消重要标记")}else this.$message({message:s?.msg||this.$t("chat.markingFailed")||"标记操作失败",type:"error",duration:3e3,showClose:!0})}catch(s){console.error("标记聊天状态异常:",s)}},parseTimeForSort(t){if(!t)return Date.now();let e;if("string"===typeof t){let s=t;s.includes("Z")||s.includes("+")||s.includes("-")||(s+="Z"),e=new Date(s).getTime()}else e=t instanceof Date?t.getTime():Date.now();return isNaN(e)&&(e=Date.now()),e},fixContactTimes(){this.contacts.forEach((t=>{if(!t.lastTime){const e=(new Date).toISOString();console.warn("🔧 修复联系人空时间:",{contactName:t.name,roomId:t.roomId,fixedTime:e}),this.$set(t,"lastTime",e)}}))},sortContacts(){this.fixContactTimes(),this.contacts=this.sortContactsByTime(this.contacts)},scrollToBottom(t=!1){const e=this.$refs.messageContainer;e&&this.$nextTick((()=>{setTimeout((()=>{const s={top:e.scrollHeight,behavior:t?"auto":"smooth"};try{e.scrollTo(s)}catch(i){e.scrollTop=e.scrollHeight}t&&(this.showScrollButton=!1)}),100)}))},showMessageTime(t){if(0===t)return!0;const e=this.currentMessages[t],s=this.currentMessages[t-1];if(!e.time||!s.time)return!1;const i=new Date(e.time).getTime(),a=new Date(s.time).getTime(),n=(i-a)/6e4;return n>5},formatTime(t){if(!t)return"";let e="";if("string"===typeof t&&t.includes("T"))e=t;else if(t instanceof Date)e=t.toISOString();else if("number"===typeof t||/^\d+$/.test(t))try{const s=new Date(parseInt(t));if(isNaN(s.getTime()))return String(t);e=s.toISOString()}catch(d){return String(t)}else try{const s=new Date(t);if(isNaN(s.getTime()))return String(t);e=s.toISOString()}catch(d){return String(t)}const[s,i]=e.split("T");if(!i)return e;const[a,n]=i.split(":"),o=new Date,r=o.toISOString().split("T")[0],l=s;if(r===l)return`UTC ${this.$t("chat.today")} ${a}:${n}`;const c=new Date(Date.now()-864e5).toISOString().split("T")[0];return c===l?`UTC ${this.$t("chat.yesterday")} ${a}:${n}`:`UTC ${s} ${a}:${n}`},formatLastTime(t){if(!t)return"";try{if("string"===typeof t&&t.includes("T")){const[e,s]=t.split("T");if(e&&s){const t=s.split(":").slice(0,2).join(":");return`UTC ${e} ${t}`}}else if(t instanceof Date){const e=t.toISOString(),[s,i]=e.split("T");if(s&&i){const t=i.split(":").slice(0,2).join(":");return`UTC ${s} ${t}`}}else if("number"===typeof t||/^\d+$/.test(t)){const e=new Date(parseInt(t));if(!isNaN(e.getTime())){const t=e.toISOString(),[s,i]=t.split("T");if(s&&i){const t=i.split(":").slice(0,2).join(":");return`UTC ${s} ${t}`}}}const e=new Date(t);if(!isNaN(e.getTime())){const t=e.toISOString(),[s,i]=t.split("T");if(s&&i){const t=i.split(":").slice(0,2).join(":");return`UTC ${s} ${t}`}}return String(t)}catch(e){return console.error("格式化时间失败:",e),String(t)}},getDefaultAvatar(t){if(!t)return"";const e=["#4CAF50","#9C27B0","#FF5722","#2196F3","#FFC107","#607D8B","#E91E63"],s=Math.abs(t.charCodeAt(0))%e.length,i=(e[s],t.charAt(0).toUpperCase());return i},handleScroll(){const t=this.$refs.messageContainer;t&&(this.updateLastActivityTime(),this.showScrollButton=!this.isAtBottom(),this.isAtBottom()?(this.userViewHistory=!1,this.markMessagesAsRead(this.currentContactId)):this.userViewHistory=!0)},async loadHistory(){if(this.loadingHistory=!0,this.userViewHistory=!0,this.currentContactId)try{this.messagesLoading=!0;const t=this.messages[this.currentContactId]||[];if(0===t.length)return void this.$message({message:this.$t("chat.noMoreHistory")||"没有更多历史消息",type:"warning",duration:3e3,showClose:!0});const e=this.getEarliestMessage(t);if(!e||!e.id)return void this.$message({message:this.$t("chat.noMoreHistory")||"没有更多历史消息",type:"warning",duration:3e3,showClose:!0});this.history7Params.id=e.id,console.log("🕐 小时钟加载历史消息 - 使用最早消息ID:",{totalMessages:t.length,earliestMessageId:e.id,earliestMessageTime:e.time}),this.history7Params.roomId=this.currentContactId,this.history7Params.email=this.userEmail;const s=await(0,i.getHistory7)(this.history7Params);if(console.log("📡 loadHistory - 小时钟接口响应详情:",{responseCode:s?.code,hasData:!!s?.data,dataLength:s?.data?.length||0,currentContactId:this.currentContactId,requestParams:this.history7Params}),s&&200===s.code&&s.data){console.log("📦 loadHistory - 小时钟原始数据:",s.data);const t=s.data.filter((t=>t.roomId==this.currentContactId||String(t.roomId)===String(this.currentContactId)));console.log("🔍 loadHistory - 小时钟过滤后数据:",{originalCount:s.data.length,filteredCount:t.length,targetRoomId:this.currentContactId,messageRoomIds:s.data.map((t=>t.roomId)).slice(0,5)});let e=t.map((t=>({id:t.id,sender:t.sendEmail,avatar:"iconfont icon-icon28",content:t.content,time:t.createTime,isSelf:1===t.isSelf,isImage:2===t.type,isRead:1===t.isRead,type:t.type,roomId:t.roomId})));console.log("🔄 loadHistory - 小时钟处理后消息:",{processedCount:e.length,messageIds:e.map((t=>t.id)),messageTimes:e.map((t=>t.time)).slice(0,3)});const i=(this.messages[this.currentContactId]||[]).map((t=>t.id)),a=e.map((t=>t.id)),n=a.filter((t=>i.includes(t)));if(console.log("🔍 loadHistory - 小时钟重复消息检查:",{currentMessageCount:i.length,newHistoryCount:a.length,duplicateCount:n.length,duplicateIds:n}),0===e.length)return console.warn("⚠️ loadHistory - 小时钟过滤后无消息,设置无更多历史状态"),this.hasMoreHistory=!1,void(this.noMoreHistoryMessage=this.$t("chat.noMoreHistory")||"没有更多历史消息");const o=e.filter((t=>!i.includes(t.id)));if(console.log("✂️ loadHistory - 小时钟去重后消息:",{originalCount:e.length,uniqueCount:o.length,removedDuplicates:e.length-o.length}),0===o.length)return console.warn("⚠️ loadHistory - 小时钟去重后无新消息,设置无更多历史状态"),this.hasMoreHistory=!1,void(this.noMoreHistoryMessage=this.$t("chat.noMoreHistory")||"没有更多历史消息");e=o,e=this.sortMessages(e);const r=this.messages[this.currentContactId]||[];this.$set(this.messages,this.currentContactId,[...e,...r]),console.log("✅ loadHistory - 小时钟历史消息加载完成:",{loadedCount:e.length,totalCount:this.messages[this.currentContactId].length})}else console.warn("⚠️ loadHistory - 小时钟接口返回无数据,设置无更多历史状态"),this.hasMoreHistory=!1,this.noMoreHistoryMessage=this.$t("chat.noMoreHistory")||"没有更多历史消息"}catch(t){console.error("加载历史消息异常:",t),this.$message({message:this.$t("chat.historicalFailure")||"加载历史消息失败,请重试",type:"error",duration:3e3,showClose:!0})}finally{this.messagesLoading=!1,this.loadingHistory=!1}},async refreshMessages(){this.currentContactId&&await this.loadMessages(this.currentContactId)},openImageUpload(){this.currentContact&&this.$refs.imageInput.click()},convertToUTC(t){if(!t)return null;const e=new Date(t);return new Date(e.getTime()-6e4*e.getTimezoneOffset())},convertToLocal(t){if(!t)return null;const e=new Date(t);return new Date(e.getTime()+6e4*e.getTimezoneOffset())},fixToUTC(t){return"string"!==typeof t||t.endsWith("Z")||/[+-]\d{2}:?\d{2}$/.test(t)?t:t+"Z"},sortMessages(t){return!t||t.length<=1?t:t.sort(((t,e)=>{if(t.id&&e.id){const s=parseInt(t.id),i=parseInt(e.id);if(!isNaN(s)&&!isNaN(i)){const t=s-i;if(0!==t)return t}}const s=t.time?new Date(t.time).getTime():0,i=e.time?new Date(e.time).getTime():0;return s-i}))},needsResort(t){if(!t||t.length<=1)return!1;const e=Math.min(5,t.length),s=t.slice(-e);for(let i=1;iparseInt(e.id))return!0}else{const s=new Date(t.time).getTime(),i=new Date(e.time).getTime();if(s>i)return!0}}return!1},getEarliestMessage(t){if(!t||0===t.length)return console.warn("⚠️ getEarliestMessage: 消息数组为空"),null;console.log("🔍 查找最早消息:",{totalCount:t.length,messageIds:t.map((t=>t.id)).slice(0,5),messageTimes:t.map((t=>t.time)).slice(0,3)});const e=t.filter((t=>{const e=parseInt(t.id);return t.id&&!isNaN(e)&&e>0}));if(e.length>0){const t=e.reduce(((t,e)=>{const s=parseInt(t.id),i=parseInt(e.id);return i{const s=new Date(t.time||0).getTime(),i=new Date(e.time||0).getTime();return i{if(t.important&&!e.important)return-1;if(!t.important&&e.important)return 1;const s=this.parseTimeForSort(t.lastTime),i=this.parseTimeForSort(e.lastTime);return i-s}))},debugHistoryLoading(){console.log("🔍 历史消息加载调试信息:"),console.log("当前联系人ID:",this.currentContactId,typeof this.currentContactId),console.log("当前消息数量:",this.messages[this.currentContactId]?.length||0),console.log("历史消息状态:",{hasMoreHistory:this.hasMoreHistory,noMoreHistoryMessage:this.noMoreHistoryMessage}),console.log("请求参数:",this.history7Params);const t=this.messages[this.currentContactId]||[];if(t.length>0){const e=this.getEarliestMessage(t);console.log("最早消息:",e),console.log("消息ID分布:",t.map((t=>({id:t.id,time:t.time}))).slice(0,10))}return{currentContactId:this.currentContactId,messageCount:t.length,hasMoreHistory:this.hasMoreHistory,noMoreHistoryMessage:this.noMoreHistoryMessage,requestParams:this.history7Params,earliestMessage:this.getEarliestMessage(t)}},getUnreadStorageKey(t){return`cs_unread_${t}`},getUnreadCount(t){const e=this.getUnreadStorageKey(t);return parseInt(localStorage.getItem(e),10)||0},setUnreadCount(t,e){const s=this.getUnreadStorageKey(t);localStorage.setItem(s,String(e))},handleStorageChange(t){if(console.log("监听所有窗口状态统一 666",t),t.key&&t.key.startsWith("cs_unread_")){const e=t.key.replace("cs_unread_",""),s=parseInt(t.newValue,10)||0,i=this.contacts.find((t=>t.roomId==e));i&&(i.unread=s)}else{if("cs_disconnect_all"===t.key&&t.newValue)return console.log("收到断开所有连接通知"),void this.disconnectWebSocket();"userEmail"!==t.key||!t.oldValue||t.newValue&&"null"!==t.newValue||this.handleLogoutSync()}},handleLogoutSync(){try{this.forceDisconnectAll(),this.userEmail="",this.currentContactId=null,this.contacts=[],this.messages={},this.inputMessage="",this.isWebSocketConnected=!1,this.connectionStatus="disconnected",this.$router.replace("/")}catch(t){this.$router.replace("/")}},handleNetworkChange(){this.networkStatus=navigator.onLine?"online":"offline",navigator.onLine&&location.reload()}},beforeDestroy(){this.stompClient&&this.stompClient.connected&&this.stompClient.disconnect((()=>{console.log("WebSocket 已断开连接")})),this.disconnectWebSocket(),this.$refs.messageContainer&&this.$refs.messageContainer.removeEventListener("scroll",this.handleScroll),this.visibilityHandler&&document.removeEventListener("visibilitychange",this.visibilityHandler),this.activityCheckInterval&&clearInterval(this.activityCheckInterval),this.reconnectTimer&&clearTimeout(this.reconnectTimer),this.activityEvents&&this.activityHandler&&this.activityEvents.forEach((t=>{document.removeEventListener(t,this.activityHandler,!0)})),this.clearConnectionVerifyTimer(),this.stopHeartbeat(),this.stopConnectionCheck(),window.removeEventListener("storage",this.handleStorageChange),window.removeEventListener("online",this.handleNetworkChange),window.removeEventListener("offline",this.handleNetworkChange)}}},6062:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return a.B},default:function(){return l}});var i=s(67426),a=s(78006),n=a.A,o=s(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"9a80418e",null),l=r.exports},13821:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.broadcastLoading,expression:"broadcastLoading"}]},[e("div",{staticClass:"main-title-box"},[e("div",{staticClass:"main-title"},[t._v(t._s(t.$t("backendSystem.publishedBroadcast")))]),e("el-button",{staticClass:"add-btn",on:{click:t.handelAddBroadcast}},[t._v(t._s(t.$t("backendSystem.addBroadcast"))+" "),e("i",{staticClass:"iconfont icon-youjiantou1 arrow"})])],1),e("el-table",{staticStyle:{width:"100%","margin-bottom":"18px"},attrs:{data:t.tableData,border:"","header-cell-style":{"text-align":"center"},"cell-style":{"text-align":"center"},height:"60vh"}},[e("el-table-column",{attrs:{prop:"id",label:"ID",width:"60","show-overflow-tooltip":""}}),e("el-table-column",{attrs:{prop:"createTime",label:t.$t("backendSystem.createTime"),width:"160","show-overflow-tooltip":""},scopedSlots:t._u([{key:"default",fn:function(e){return[t._v(" "+t._s(t.handelTime(e.row.createTime))+" ")]}}])}),e("el-table-column",{attrs:{prop:"content",label:t.$t("backendSystem.content"),"show-overflow-tooltip":""}}),e("el-table-column",{attrs:{prop:"createUser",label:t.$t("backendSystem.createUser"),width:"160","show-overflow-tooltip":""}}),e("el-table-column",{attrs:{prop:"buttonContent",label:t.$t("backendSystem.bthContent2"),width:"200","show-overflow-tooltip":""},scopedSlots:t._u([{key:"default",fn:function(s){return[s.row.buttonContent?e("div",t._l(t.formatButtonContent(s.row.buttonContent),(function(s,i){return e("el-tag",{key:i,staticStyle:{margin:"2px"},attrs:{size:"small"}},[t._v(" "+t._s(s)+" ")])})),1):e("span",{staticStyle:{color:"#999"}},[t._v("无")])]}}])}),e("el-table-column",{attrs:{prop:"buttonPath",label:t.$t("backendSystem.bthPath2"),width:"250","show-overflow-tooltip":""},scopedSlots:t._u([{key:"default",fn:function(s){return[s.row.buttonPath?e("div",t._l(t.formatButtonPath(s.row.buttonPath),(function(s,i){return e("div",{key:i,staticClass:"path-item",staticStyle:{"font-size":"12px"}},[t._v(" "+t._s(i+1)+". "+t._s(s)+" ")])})),0):e("span",{staticStyle:{color:"#999"}},[t._v("无")])]}}])}),e("el-table-column",{attrs:{prop:"updateTime",label:t.$t("backendSystem.updateTime"),width:"160","show-overflow-tooltip":""},scopedSlots:t._u([{key:"default",fn:function(e){return[t._v(" "+t._s(t.handelTime(e.row.updateTime))+" ")]}}])}),e("el-table-column",{attrs:{prop:"updateUser",label:t.$t("backendSystem.updateUser"),width:"160","show-overflow-tooltip":""}}),e("el-table-column",{attrs:{label:t.$t("backendSystem.operation"),width:"160"},scopedSlots:t._u([{key:"default",fn:function(s){return[e("el-button",{attrs:{size:"mini"},on:{click:function(e){return t.handleEdit(s.row)}}},[t._v(t._s(t.$t("backendSystem.edit")))]),e("el-popconfirm",{attrs:{"confirm-button-text":t.$t("work.confirm"),"cancel-button-text":t.$t("work.cancel"),icon:"el-icon-info","icon-color":"red",title:t.$t("alerts.deleteRemind")},on:{confirm:function(e){return t.handelDelete(s.row)}}},[e("el-button",{staticClass:"elBtn",attrs:{slot:"reference",size:"mini"},slot:"reference"},[t._v(t._s(t.$t("personal.delete")))])],1)]}}])})],1),e("el-row",[e("el-col",{staticStyle:{display:"flex","justify-content":"center"},attrs:{span:24}},[e("el-pagination",{staticStyle:{margin:"0 auto","margin-top":"10px"},attrs:{"current-page":t.currentPage,"page-sizes":t.pageSizes,"page-size":t.listParams.pageSize,layout:"total, sizes, prev, pager, next, jumper",total:t.total},on:{"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange,"update:currentPage":function(e){t.currentPage=e},"update:current-page":function(e){t.currentPage=e}}})],1)],1),e("el-dialog",{attrs:{title:t.$t("backendSystem.dialogTitle"),visible:t.dialogVisible,width:"50%","before-close":t.handleClose,"close-on-click-modal":!1},on:{"update:visible":function(e){t.dialogVisible=e}}},[e("el-form",{ref:"addForm",attrs:{model:t.addParams}},[e("el-form-item",{attrs:{label:t.$t("backendSystem.broadcastContent"),prop:"content"}},[e("el-input",{attrs:{resize:"none",type:"textarea",rows:5},on:{input:e=>t.handleInput(e,"add")},model:{value:t.addParams.content,callback:function(e){t.$set(t.addParams,"content",e)},expression:"addParams.content"}}),e("div",{staticStyle:{color:"#999","font-size":"12px","margin-top":"4px",display:"flex","align-items":"center","justify-content":"space-between"}},[t.isOverLimit?e("span",[t._v(" "+t._s(t.$t("backendSystem.exceedingInput")))]):t._e(),e("span",[t._v(" "+t._s(t.$t("backendSystem.newlineInvalid")))])])],1),e("el-form-item",{attrs:{label:t.$t("backendSystem.bthContent"),prop:"buttonContent"}},[e("el-input",{attrs:{resize:"none",type:"text"},model:{value:t.addParams.buttonContent,callback:function(e){t.$set(t.addParams,"buttonContent",e)},expression:"addParams.buttonContent"}})],1),e("el-form-item",{attrs:{label:t.$t("backendSystem.bthPath"),prop:"buttonPath"}},[e("el-input",{attrs:{resize:"none",type:"textarea",rows:2},model:{value:t.addParams.buttonPath,callback:function(e){t.$set(t.addParams,"buttonPath",e)},expression:"addParams.buttonPath"}}),e("div",{staticStyle:{color:"#999","font-size":"12px","margin-top":"4px",display:"flex","align-items":"center","justify-content":"space-between"}},[t.isOverLimit?e("span",[t._v(" "+t._s(t.$t("backendSystem.exceedingInput")))]):t._e(),e("span",[t._v(" "+t._s(t.$t("backendSystem.bthPathStandard")))]),e("el-button",{attrs:{type:"text",size:"mini"},on:{click:t.showPathHelp}},[t._v(" 查看路径示例 ")])],1)],1)],1),e("div",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[e("el-button",{on:{click:t.handleClose}},[t._v(t._s(t.$t("backendSystem.cancel")))]),e("el-button",{attrs:{type:"primary",loading:t.bthLoading},on:{click:t.sureAddBroadcast}},[t._v(t._s(t.$t("backendSystem.publish")))])],1)],1),e("el-dialog",{attrs:{title:t.$t("backendSystem.editContent"),visible:t.editDialogVisible,width:"50%","before-close":t.handleEditClose,"close-on-click-modal":!1},on:{"update:visible":function(e){t.editDialogVisible=e}}},[e("el-form",{attrs:{model:t.editParams}},[e("el-form-item",{attrs:{label:t.$t("backendSystem.broadcastContent")}},[e("el-input",{attrs:{resize:"none",type:"textarea",rows:5},on:{input:e=>t.handleInput(e,"edit")},model:{value:t.editParams.content,callback:function(e){t.$set(t.editParams,"content",e)},expression:"editParams.content"}}),e("div",{staticStyle:{color:"#999","font-size":"12px","margin-top":"4px",display:"flex","align-items":"center","justify-content":"space-between"}},[t.isOverLimit?e("span",[t._v(" "+t._s(t.$t("backendSystem.exceedingInput")))]):t._e(),e("span",[t._v(" "+t._s(t.$t("backendSystem.newlineInvalid")))])])],1),e("el-form-item",{attrs:{label:t.$t("backendSystem.bthContent")}},[e("el-input",{attrs:{type:"text"},model:{value:t.editParams.buttonContent,callback:function(e){t.$set(t.editParams,"buttonContent",e)},expression:"editParams.buttonContent"}})],1),e("el-form-item",{attrs:{label:t.$t("backendSystem.bthPath")}},[e("el-input",{attrs:{type:"textarea",rows:2},model:{value:t.editParams.buttonPath,callback:function(e){t.$set(t.editParams,"buttonPath",e)},expression:"editParams.buttonPath"}}),e("div",{staticStyle:{color:"#999","font-size":"12px","margin-top":"4px",display:"flex","align-items":"center","justify-content":"space-between"}},[e("span",[t._v(t._s(t.$t("backendSystem.bthPathStandard")))]),e("el-button",{attrs:{type:"text",size:"mini"},on:{click:t.showPathHelp}},[t._v(" 查看路径示例 ")])],1)],1)],1),e("div",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[e("el-button",{on:{click:t.handleEditClose}},[t._v(t._s(t.$t("backendSystem.cancel")))]),e("el-button",{attrs:{type:"primary",loading:t.editLoading},on:{click:t.sureEditBroadcast}},[t._v(t._s(t.$t("backendSystem.editBroadcast")))])],1)],1)],1)},e.Yp=[]},17308:function(t,e,s){var i=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var a=i(s(77452));e.A={mixins:[a.default]}},17713:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,s(44114),s(18111),s(20116);var i=s(1652);e["default"]={name:"Announcements",data(){return{loading:!1,searchKeyword:"",currentPage:1,totalCount:0,announcements:[],searchTimer:null,showMarkdownGuide:!1,viewMode:"list",listParams:{type:"3",lang:this.$i18n.locale,pageNum:1,pageSize:10},announcementsLoading:!1}},mounted(){try{this.TypeList=JSON.parse(localStorage.getItem("TypeList"))}catch(t){console.log(t)}this.fetchAllList(this.listParams)},methods:{async fetchAllList(t){this.setLoading("announcementsLoading",!0);const e=await(0,i.documentsList)(t);console.log(e,"res"),200===e.code&&(this.announcements=e.rows,this.totalCount=e.total),this.setLoading("announcementsLoading",!1)},async loadAnnouncements(){this.loading=!0;try{await new Promise((t=>setTimeout(t,500)))}catch(t){console.error("加载公告失败:",t),this.$message.error(this.$t("announcements.loadError")||"加载公告失败")}finally{this.loading=!1}},handleSearchInput(){this.searchTimer&&clearTimeout(this.searchTimer),this.searchTimer=setTimeout((()=>{this.handleSearch()}),500)},handleSearch(){this.currentPage=1},handleCurrentChange(t){this.currentPage=t,this.listParams.pageNum=t,this.fetchAllList(this.listParams)},handleSizeChange(t){this.listParams.pageNum=1,this.currentPage=1,this.listParams.pageSize=t,this.fetchAllList(this.listParams)},handleAnnouncementClick(t){console.log(t,"announcement");let e=`/${this.$i18n.locale}/announcementDetails`;this.$router.push({path:e,query:{id:t.id}})},handleViewAll(){this.pageSize=20,this.loadAnnouncements()},toggleMarkdownGuide(){this.showMarkdownGuide=!this.showMarkdownGuide},switchMode(t){this.viewMode=t},goHome(){this.$router.push("/")},formatDate(t){try{return`${t.split("T")[0]} ${t.split("T")[1]}`}catch(e){return""}},handelType(t){try{let e=this.TypeList.find((e=>e.value==t)).label;return this.$t(e)}catch(e){return""}}},beforeDestroy(){this.searchTimer&&clearTimeout(this.searchTimer)}}},21906:function(t,e,s){var i=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var a=i(s(57270));e.A={mixins:[a.default]}},22093:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0;var i=s(1652);e["default"]={data(){return{params:{lang:"",type:0},infoParams:{lang:this.$i18n?.locale||"zh",childType:"1"},info:"",loading:!1}},mounted(){this.fetchDocumentsInfo(this.infoParams)},methods:{async fetchDocumentsInfo(t){this.setLoading("loading",!0);try{const e=await(0,i.findDataInfo)(t);e&&200===e.code?this.info=e.data.content||"":(console.warn("获取文档内容失败:",e),this.info="")}catch(e){console.error("获取文档内容失败:",e),this.info=""}this.setLoading("loading",!1)}}}},23389:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return a.B},default:function(){return l}});var i=s(23819),a=s(95664),n=a.A,o=s(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"7b2f7ae5",null),l=r.exports},23819:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"rate"},[t.$isMobile?e("section",{staticClass:"rateMobile"},[e("h4",[t._v(t._s(t.$t("course.allocationExplanation")))]),e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{attrs:{title:t.$t("course.currency")}},[t._v(t._s(t.$t("course.currency")))]),e("span",{attrs:{title:t.$t("course.condition")}},[t._v(t._s(t.$t("course.condition")))])]),e("el-collapse",{attrs:{accordion:""}},t._l(t.rateList,(function(s){return e("el-collapse-item",{key:s.value,attrs:{name:s.value}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",[e("img",{attrs:{src:s.img,alt:"coin",loading:"lazy"}}),t._v(" "+t._s(s.label))]),e("span",[t._v(t._s(t.$t(s.condition)))])])]),e("section",{staticClass:"contentBox2"},[e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("course.interval")))]),e("p",[t._v(t._s(t.$t(s.interval))+" ")])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("course.estimatedTime")))]),e("p",[t._v(t._s(t.$t(s.estimatedTime)))])])]),e("div",{staticClass:"belowTable describe"},[e("div",[e("p",[t._v(t._s(t.$t("course.describe")))]),e("p",[t._v(t._s(t.$t(s.describe))+" ")])])])])],2)})),1)],1)]):e("section",{staticClass:"rateBox"},[e("section",{staticClass:"rightText"},[e("h2",[t._v(t._s(t.$t("course.allocationExplanation")))]),e("section",{staticClass:"table"},[e("div",{staticClass:"tableTitle"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",[t._v(t._s(t.$t("course.condition")))]),e("span",[t._v(t._s(t.$t("course.interval")))]),e("span",[t._v(t._s(t.$t("course.estimatedTime")))]),e("span",{staticClass:"describe"},[t._v(t._s(t.$t("course.describe")))])]),e("ul",t._l(t.rateList,(function(s){return e("li",{key:s.value},[e("span",{staticClass:"coin"},[e("img",{attrs:{src:s.img,alt:"coin",loading:"lazy"}}),t._v(" "+t._s(s.label))]),e("span",[t._v(t._s(t.$t(s.condition)))]),e("span",[t._v(t._s(t.$t(s.interval)))]),e("span",[t._v(t._s(t.$t(s.estimatedTime)))]),e("span",{staticClass:"describe"},[t._v(t._s(t.$t(s.describe)))])])})),0)])])])])},e.Yp=[]},27244:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return a.B},default:function(){return l}});var i=s(32357),a=s(35899),n=a.A,o=s(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"af693de8",null),l=r.exports},29957:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",[e("section",{staticClass:"container"},[e("section",{staticClass:"leftNav"},t._l(t.problems,(function(s){return e("div",{key:s.id,staticClass:"leftNav-item",class:{active:t.DetailsParams.id==s.id},on:{click:function(e){return t.handleClick(s.id)}}},[t._v(" "+t._s(s.title)+" ")])})),0),e("section",{staticClass:"rightContent"},[t.problemLoading?e("div",{staticClass:"loading-container"},[e("span",{staticClass:"loading-text"},[t._v(t._s(t.$t("home.loadingContent")||"正在加载内容..."))])]):t.info&&t.info.trim()?e("div",{staticClass:"dynamic-content",domProps:{innerHTML:t._s(t.info)}}):e("div",{staticClass:"no-content"},[e("p",[t._v(t._s(t.$t("home.noContent")||"暂无内容"))])])])])])},e.Yp=[]},32357:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"ServiceTerms"},[e("section",{staticClass:"content"},[t.loading?e("div",{staticClass:"loading-container"},[e("el-icon",{staticClass:"is-loading"},[e("i",{staticClass:"el-icon-loading"})]),e("span",{staticClass:"loading-text"},[t._v("正在加载文档内容...")])],1):t.info&&t.info.trim()?e("div",{staticClass:"dynamic-content",domProps:{innerHTML:t._s(t.info)}}):e("div",{staticClass:"no-content"},[e("p",[t._v("暂无自定义文档内容")])])])])},e.Yp=[]},35899:function(t,e,s){var i=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var a=i(s(22093));e.A={mixins:[a.default],metaInfo:{meta:[{name:"keywords",content:"服务条款,用户权益,权利义务,Terms of Service, User Rights, Rights and Obligations"},{name:"description",content:window.vm.$t("seo.ServiceTerms")}]}}},41300:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return a.B},default:function(){return l}});var i=s(13821),a=s(21906),n=a.A,o=s(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"76d940dc",null),l=r.exports},43421:function(t,e,s){var i=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0,s(44114);var a=i(s(53667));e.A={mixins:[a.default],metaInfo:{meta:[{name:"keywords",content:"API 文档,认证 token,接口调用,API documentation, authentication tokens, interface calls"},{name:"description",content:window.vm.$t("seo.apiFile")}]},data(){return{}},mounted(){},methods:{handelJump(t){const e=this.$i18n.locale,s=t.startsWith("/")?t.slice(1):t;this.$router.push(`/${e}/${s}`)}}}},53667:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,s(18111),s(7588),s(61701),s(13579);var i=s(1652);e["default"]={name:"ApiFile",data(){return{listParams:{lang:`${this.$i18n.locale}`,childType:3,pageNum:1,pageSize:50},DetailsParams:{lang:`${this.$i18n.locale}`,childType:3},navContent:{},documentLoading:!0,documentContent:"",documentError:"",navList:[],info:""}},mounted(){this.getDocumentsList(this.listParams)},methods:{async getDocumentsList(t){try{const e=await(0,i.documentsList)(t);this.setLoading("documentLoading",!0),e&&200===e.code&&(this.navList=e.rows,this.$route.query.id?this.DetailsParams.id=this.$route.query.id:this.DetailsParams.id=e.rows[0].id,this.DetailsParams.id&&this.fetchProblemDetails(this.DetailsParams))}catch(e){console.error("获取文档列表失败:",e)}},async fetchProblemDetails(t){this.setLoading("documentLoading",!0);const e=await(0,i.findDataInfo)(t);e&&200===e.code&&(this.info=e.data.content||""),this.setLoading("documentLoading",!1)},markdownToHtml(t){if(!t)return"";let e=this.processMarkdownTables(t);e=e.replace(/^### (.*$)/gim,"

$1

").replace(/^## (.*$)/gim,"

$1

").replace(/^# (.*$)/gim,"

$1

").replace(/\*\*(.*?)\*\*/gim,"$1").replace(/\*(.*?)\*/gim,"$1").replace(/```([\s\S]*?)```/gim,"
$1
").replace(/`([^`]*)`/gim,"$1").replace(/\[([^\]]*)\]\(([^)]*)\)/gim,'$1');const s=e.split(/()/g);return e=s.map((t=>t.startsWith("

").replace(/\n/gim,"
"))).join(""),!e||e.startsWith("<")||e.includes(""+e+"

"),e},processMarkdownTables(t){const e=/(\|.*\|[\r\n]+)+/g;return t.replace(e,(t=>{const e=t.trim().split(/[\r\n]+/);if(e.length<2)return t;let s='\n';return e.forEach(((t,e)=>{if(t=t.trim(),!t.startsWith("|")||!t.endsWith("|"))return;const i=t.slice(1,-1),a=i.split("|").map((t=>t.trim()));if(a.some((t=>/^-+$/.test(t))))return;const n=0===e,o=n?"th":"td",r=n?' style="background: #f8f9fa; font-weight: 600; padding: 8px 12px; border: 1px solid #ddd; text-align: left;"':' style="padding: 8px 12px; border: 1px solid #ddd; text-align: left;"';s+=" \n",a.forEach((t=>{s+=` <${o}${r}>${t}\n`})),s+=" \n"})),s+="
\n",s}))},clickJump(t){this.DetailsParams.id=t.id,this.fetchProblemDetails(this.DetailsParams)}}}},57270:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,s(18111),s(22489),s(61701);var i=s(73723),a=s(34815);e["default"]={data(){return{tableData:[],listParams:{pageNum:1,pageSize:50},addParams:{content:"",buttonContent:"",buttonPath:""},editParams:{content:"",id:"",buttonContent:"",buttonPath:""},dialogVisible:!1,bthLoading:!1,broadcastLoading:!1,editDialogVisible:!1,editLoading:!1,byteCount:"",isOverLimit:!1,total:0,pageSizes:[50,100,300],currentPage:1}},mounted(){let t;try{t=JSON.parse(localStorage.getItem("token"))}catch(e){console.log(e)}t&&this.fetchList(this.listParams)},methods:{async fetchList(t){this.setLoading("broadcastLoading",!0);const e=await(0,i.listBroadcast)(t);200===e.code&&(this.tableData=e.rows,this.total=e.total),this.setLoading("broadcastLoading",!1)},async addBroadcast(t){this.setLoading("bthLoading",!0),console.log("发送广播请求的参数:",t);const e=await(0,i.getAddBroadcast)(t);200===e.code&&(this.$message.success(this.$t("backendSystem.addSuccess")),this.dialogVisible=!1,this.addParams.content="",this.addParams.buttonContent="",this.addParams.buttonPath="",this.fetchList(this.listParams)),this.setLoading("bthLoading",!1)},async getBroadcast(t){this.setLoading("editLoading",!0);const e=await(0,i.dataInfo)(t);200===e.code&&(this.editParams={...e.data,buttonPath:Array.isArray(e.data.buttonPath)?e.data.buttonPath.join(","):e.data.buttonPath||""},this.editDialogVisible=!0),this.setLoading("editLoading",!1)},async editBroadcast(t){this.setLoading("editLoading",!0),console.log("发送编辑广播请求的参数:",t);const e=await(0,i.updateBroadcast)(t);200===e.code&&(this.$message.success(this.$t("backendSystem.editSuccess")),this.editDialogVisible=!1,this.fetchList(this.listParams)),this.setLoading("editLoading",!1)},async deleteBroadcast(t){const e=await(0,i.DeleteBroadcast)(t);200===e.code&&(this.$message.success(this.$t("backendSystem.deleteSuccess")),this.fetchList(this.listParams))},handelAddBroadcast(){this.dialogVisible=!0},handleClose(){this.dialogVisible=!1,this.addParams.content="",this.addParams.buttonContent="",this.addParams.buttonPath="",this.setLoading("bthLoading",!1)},sureAddBroadcast(){if(this.addParams.content=this.addParams.content.trim(),this.addParams.content=this.addParams.content.replace(/[\r\n]/g,""),this.addParams.buttonPath=this.addParams.buttonPath.trim(),this.addParams.buttonPath=this.addParams.buttonPath.replace(/[\r\n]/g,""),this.addParams.content)if(this.addParams.buttonContent&&this.addParams.buttonPath||!this.addParams.buttonContent&&!this.addParams.buttonPath){if(this.addParams.buttonPath){let t=this.addParams.buttonPath.split(/[,,]/).map((t=>t.trim())).filter((t=>t));if(t.length>5)return void this.$message.warning(this.$t("backendSystem.max5"));if(0===t.length)return void this.$message.warning(this.$t("backendSystem.pleaseInputButtonContentAndPath"));if(this.addParams.buttonContent){let e=this.addParams.buttonContent.split(/[,,]/).map((t=>t.trim())).filter((t=>t));if(e.length>5)return void this.$message.warning(this.$t("backendSystem.max5"));if(0===e.length)return void this.$message.warning(this.$t("backendSystem.pleaseInputButtonContentAndPath"));if(this.addParams.buttonContent&&this.addParams.buttonPath&&t.length!==e.length)return void this.$message.warning(this.$t("backendSystem.pathNumberNotMatch"))}const e=t.filter((t=>!(0,a.isValidPath)(t)));if(e.length>0){const t=(0,a.getPathSuggestions)(e[0]);return void this.$message.error(`${this.$t("backendSystem.invalidPath")}: ${e.join(", ")}。${this.$t("backendSystem.invalidPathSuggestions")}: ${t.slice(0,3).join(", ")}`)}}this.addBroadcast(this.addParams)}else this.$message.warning(this.$t("backendSystem.pleaseInputButtonContentAndPath"));else this.$message.warning(this.$t("backendSystem.pleaseInputContent"))},sureEditBroadcast(){let t,e;if(this.editParams.content=this.editParams.content.trim(),this.editParams.content=this.editParams.content.replace(/[\r\n]/g,""),this.editParams.content){if(this.editParams.buttonContent){if(this.editParams.buttonContent=this.editParams.buttonContent.trim().replace(/[\r\n]/g,""),!(this.editParams.buttonContent&&this.editParams.buttonPath||!this.editParams.buttonContent&&!this.editParams.buttonPath))return void this.$message.warning(this.$t("backendSystem.pleaseInputButtonContentAndPath"));if(this.editParams.buttonContent){if(t=this.editParams.buttonContent.split(/[,,]/).map((t=>t.trim())).filter((t=>t)),t.length>5)return void this.$message.warning(this.$t("backendSystem.max5"));if(0===t.length)return void this.$message.warning(this.$t("backendSystem.pleaseInputButtonContentAndPath"))}if(this.editParams.buttonPath){if(this.editParams.buttonPath=this.editParams.buttonPath.trim().replace(/[\r\n]/g,""),!(this.editParams.buttonContent&&this.editParams.buttonPath||!this.editParams.buttonContent&&!this.editParams.buttonPath))return void this.$message.warning(this.$t("backendSystem.pleaseInputButtonContentAndPath"));if(this.editParams.buttonPath){if(e=this.editParams.buttonPath.split(/[,,]/).map((t=>t.trim())).filter((t=>t)),e.length>5)return void this.$message.warning(this.$t("backendSystem.max5"));if(0===e.length)return void this.$message.warning(this.$t("backendSystem.pleaseInputButtonContentAndPath"));const t=e.filter((t=>!(0,a.isValidPath)(t)));if(t.length>0){const e=(0,a.getPathSuggestions)(t[0]);return void this.$message.error(`${this.$t("backendSystem.invalidPath")}: ${t.join(", ")}。${this.$t("backendSystem.invalidPathSuggestions")}: ${e.slice(0,3).join(", ")}`)}}}if(this.editParams.buttonContent&&this.editParams.buttonPath&&t.length!==e.length)return void this.$message.warning(this.$t("backendSystem.pathNumberNotMatch"))}this.editBroadcast(this.editParams)}else this.$message.warning(this.$t("backendSystem.pleaseInputContent"))},handleEdit(t){this.getBroadcast({id:t.id})},handleEditClose(){this.editDialogVisible=!1,this.editParams.content="",this.editParams.buttonContent="",this.editParams.buttonPath="",this.setLoading("editLoading",!1)},handelDelete(t){this.deleteBroadcast({id:t.id})},getUtf8Bytes(t){let e=0;for(let s=0;s100){this.isOverLimit=!0;let i="",a=0;for(let e of t){let t=this.getUtf8Bytes(e);if(a+t>100)break;i+=e,a+=t}"add"===e?this.addParams.content=i:this.editParams.content=i,s=a}else this.isOverLimit=!1,"add"===e?this.addParams.content=t:this.editParams.content=t;this.byteCount=s},handelTime(t){return`${t.split("T")[0]} ${t.split("T")[1]}`},handleSizeChange(t){console.log(`每页 ${t} 条`),this.listParams.pageSize=t,this.listParams.pageNum=1,this.currentPage=1,this.fetchList(this.listParams)},handleCurrentChange(t){console.log(`当前页: ${t}`),this.listParams.pageNum=t,this.fetchList(this.listParams)},getValidPathSuggestions(){return(0,a.getPathSuggestions)("").slice(0,8)},showPathHelp(){const t=this.getValidPathSuggestions(),e=`\n 常用路径示例:\n ${t.slice(0,10).join("\n")}\n \n 路径规则:\n • 多个路径用逗号分隔\n • 路径必须以 / 开头\n • 支持动态路由参数\n • 不要包含域名,只写路径部分\n `;this.$alert(e,"路径格式说明",{confirmButtonText:"知道了",type:"info",customClass:"path-help-dialog"})},formatButtonContent(t){return t&&"string"===typeof t?t.split(",").map((t=>t.trim())).filter((t=>t)):[]},formatButtonPath(t){return t&&"string"===typeof t?t.split(",").map((t=>t.trim())).filter((t=>t)):[]}}}},59018:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0;var i=s(1652);e["default"]={data(){return{problems:[{id:1,title:"如何开始挖矿?",content:"详细步骤:注册、配置矿机、连接矿池。"},{id:2,title:"如何查看收益?",content:"登录后在个人中心查看收益统计。"},{id:3,title:"如何联系客服?",content:"可通过在线客服或提交工单联系我们。"}],listParams:{type:"3",lang:this.$i18n.locale,pageNum:1,pageSize:50},problemLoading:!1,DetailsParams:{id:"",lang:this.$i18n.locale},info:""}},mounted(){this.DetailsParams.id=this.$route.query.id,console.log(this.$route.query.id,"this.DetailsParams.id"),this.DetailsParams.id&&this.fetchProblemDetails(this.DetailsParams),this.fetchProblemsList(this.listParams)},methods:{async fetchProblemsList(t){this.setLoading("problemLoading",!0);const e=await(0,i.documentsList)(t);e&&200===e.code&&(this.problems=e.rows),this.setLoading("problemLoading",!1)},async fetchProblemDetails(t){this.setLoading("problemLoading",!0);const e=await(0,i.findDataInfo)(t);e&&200===e.code&&(console.log(e,"res"),this.info=e.data.content||""),this.setLoading("problemLoading",!1)},handleClick(t){this.DetailsParams.id=t,this.fetchProblemDetails(this.DetailsParams)}}}},63683:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return a.B},default:function(){return l}});var i=s(91312),a=s(17308),n=a.A,o=s(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"ec5988d8",null),l=r.exports},64852:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return a.B},default:function(){return l}});var i=s(29957),a=s(95935),n=a.A,o=s(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"578e33f5",null),l=r.exports},66888:function(t,e){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0;e["default"]={data(){return{rateList:[{value:"nexa",label:"nexa",img:`${this.$baseApi}img/nexa.png`,condition:"course.conditionNexa",interval:"course.intervalNexa",estimatedTime:"course.estimatedTimeNexa",describe:"course.describeNexa"},{value:"grs",label:"grs",img:`${this.$baseApi}img/grs.svg`,condition:"course.conditionGrs",interval:"course.intervalGrs",estimatedTime:"course.estimatedTimeGrs",describe:"course.describeGrs"},{value:"mona",label:"mona",img:`${this.$baseApi}img/mona.svg`,condition:"course.conditionMona",interval:"course.intervalMona",estimatedTime:"course.estimatedTimeMona",describe:"course.describeMona"},{value:"dgbs",label:"dgb(skein)",img:`${this.$baseApi}img/dgb.svg`,condition:"course.conditionDgbs",interval:"course.intervalDgbs",estimatedTime:"course.estimatedTimeDgbs",describe:"course.describeDgbs"},{value:"dgbq",label:"dgb(qubit)",img:`${this.$baseApi}img/dgb.svg`,condition:"course.conditionDgbq",interval:"course.intervalDgbq",estimatedTime:"course.estimatedTimeDgbq",describe:"course.describeDgbq"},{value:"dgbo",label:"dgb(odocrypt)",img:`${this.$baseApi}img/dgb.svg`,condition:"course.conditionDgbo",interval:"course.intervalDgbo",estimatedTime:"course.estimatedTimeDgbo",describe:"course.describeDgbo"},{value:"rxd",label:"radiant",img:`${this.$baseApi}img/rxd.png`,condition:"course.conditionRxd",interval:"course.intervalRxd",estimatedTime:"course.estimatedTimeRxd",describe:"course.describeRxd"},{value:"enx",label:"Entropyx(enx)",img:`${this.$baseApi}img/enx.svg`,condition:"course.conditionEnx",interval:"course.intervalEnx",estimatedTime:"course.estimatedTimeEnx",describe:"course.describeEnx"},{value:"alph",label:"alephium",img:`${this.$baseApi}img/alph.svg`,condition:"course.conditionAlph",interval:"course.intervalAlph",estimatedTime:"course.estimatedTimeAlph",describe:"course.describeAlph"}]}}}},67426:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"announcementDetails"},[e("section",{staticClass:"container"},[e("section",{staticClass:"leftNav"},t._l(t.problems,(function(s){return e("div",{key:s.id,staticClass:"leftNav-item",class:{active:t.DetailsParams.id==s.id},on:{click:function(e){return t.handleClick(s.id)}}},[t._v(" "+t._s(s.title)+" ")])})),0),e("section",{staticClass:"rightContent"},[t.problemLoading?e("div",{staticClass:"loading-container"},[e("span",{staticClass:"loading-text"},[t._v(t._s(t.$t("home.loadingContent")||"正在加载内容..."))])]):t.info&&t.info.trim()?e("div",{staticClass:"dynamic-content",domProps:{innerHTML:t._s(t.info)}}):e("div",{staticClass:"no-content"},[e("p",[t._v(t._s(t.$t("home.noContent")||"暂无内容"))])])])])])},e.Yp=[]},68022:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"rate"},[t.$isMobile?e("section",{staticClass:"rateMobile"},[e("section",{staticClass:"rightText"},[e("h3",[t._v(t._s(t.$t("apiFile.file")))]),e("div",{staticClass:"content"},[e("h4",[t._v(t._s(t.$t("apiFile.survey")))]),e("p",[t._v(t._s(t.$t("apiFile.survey1")))]),e("p",[t._v(t._s(t.$t("apiFile.survey2")))])]),e("div",{staticClass:"content"},[e("h3",[t._v(t._s(t.$t("apiFile.apiAuthentication")))]),e("p",[t._v(t._s(t.$t("apiFile.apiAuthentication1"))+" "),e("span",{staticStyle:{color:"#651FFF",cursor:"pointer"},on:{click:function(e){return t.handelJump("personalCenter/personalAPI")}}},[t._v(t._s(t.$t("apiFile.apiAuthentication5")))]),t._v(" "+t._s(t.$t("apiFile.apiAuthentication6")))]),e("p",[t._v(t._s(t.$t("apiFile.apiAuthentication2")))]),e("p",[t._v(t._s(t.$t("apiFile.apiAuthentication3")))]),e("p",[t._v(t._s(t.$t("apiFile.apiAuthentication4")))]),t._m(0)]),e("div",{staticClass:"ExampleTable"},[e("div",{staticClass:"title"},[e("span",[t._v(t._s(t.$t("apiFile.url")))]),t._v(" "),e("span",[t._v(t._s(t.$t("apiFile.explain")))])]),e("div",[e("code",[t._v("https://m2pool.com/oapi/v1/pool/watch?coin={coin}")]),e("span",[t._v(t._s(t.$t("apiFile.explain1")))])]),e("div",[e("code",[t._v("https://m2pool.com/oapi/v1/pool/ hashrate_history?coin={coin}&start={yyyy-MM-dd}&end={yyyy-MM-dd }")]),e("span",[t._v(t._s(t.$t("apiFile.explain2")))])])]),e("div",{staticClass:"text-container"},[e("p",[t._v(t._s(t.$t("apiFile.explain3")))]),e("div",{staticClass:"container"},[e("p",[t._v("{")]),e("p",{staticStyle:{color:"crimson"}},[t._v('"code": {ERR_CODE},')]),e("p",[t._v(' "msg": "'+t._s(t.$t("apiFile.explain4"))+'"')]),e("p",[t._v("}")])])]),e("div",{staticClass:"text-container"},[e("p",[t._v(t._s(t.$t("apiFile.explain5")))]),t._m(1),e("p",[t._v(t._s(t.$t("apiFile.explain6")))])]),e("section",{staticClass:"MiningPool",attrs:{id:"HashRate"}},[e("h3",[t._v(t._s(t.$t("apiFile.miningPoolInformation")))]),e("div",{staticClass:"Pool"},[e("p",[t._v(t._s(t.$t("apiFile.miningPoolInformation1")))]),e("p",{staticClass:"hash"},[t._v("HashRate")]),e("p",[t._v(t._s(t.$t("apiFile.miningPoolInformation2")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("date")]),e("td",[t._v("Date")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.powerStatistics")))])]),e("tr",[e("td",[t._v("hashrate")]),e("td",[t._v("double")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.power")))])])])]),e("div",{staticClass:"Pool",attrs:{id:"MinersList"}},[e("p",{staticClass:"hash"},[t._v("MinersList")]),e("p",[t._v(t._s(t.$t("apiFile.minersNum")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("total")]),e("td",[t._v("int")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.totalMiners")))])]),e("tr",[e("td",[t._v("online")]),e("td",[t._v("int")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.onLineMiners")))])]),e("tr",[e("td",[t._v("offline")]),e("td",[t._v("int")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.offLineMiners")))])])])]),e("div",{staticClass:"Pool"},[e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.overviewOfMiningPool")))]),e("p",{staticClass:"Interface"},[t._v("Get /oapi/v1/pool/watch")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.jurisdiction"))+" pool")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.parameter")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("coin")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.currency")))])])]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.response")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("pool_fee")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.serviceCharge")))])]),e("tr",[e("td",[t._v("min_pay")]),e("td",[t._v("double")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.minimumPaymentAmount")))])]),e("tr",[e("td",[t._v("miners")]),e("td",[t._v("int")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.onLineMiners")))])]),e("tr",[e("td",[t._v("history_last_7days")]),t._m(2),e("td",[t._v("repeated")]),e("td",[t._v(t._s(t.$t("apiFile.latelyPower24h")))])]),e("tr",[e("td",[t._v("hashrate")]),e("td",[t._v("Double")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.Power24h")))])]),e("tr",[e("td",[t._v("last_found")]),e("td",[t._v("int")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.height")))])])])]),e("div",{staticClass:"Pool"},[e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.currentMiners")))]),e("p",{staticClass:"Interface"},[t._v("Get /oapi/v1/pool/miners_list")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.jurisdiction"))+" pool")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.parameter")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("coin")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.currency")))])])]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.response")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("miners_list")]),t._m(3),e("td",[t._v("repeated")]),e("td",[t._v(t._s(t.$t("apiFile.eachState")))])])])]),e("div",{staticClass:"Pool"},[e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.realTimePower")))]),e("p",{staticClass:"Interface"},[t._v("Get /oapi/v1/pool/hashrate")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.jurisdiction"))+" pool")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.parameter")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("coin")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.currency")))])])]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.response")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("hashrate_realtime")]),e("td",[t._v("double")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.averagePower30m")))])]),e("tr",[e("td",[t._v("hashrate_24h")]),e("td",[t._v("double")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.averagePower24h")))])]),e("tr",[e("td",[t._v("unit")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.Company"))+" (h/s, kh/s, mh/s, gh/s …)")])])])]),e("div",{staticClass:"Pool"},[e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.historyPower")))]),e("p",{staticClass:"Interface"},[t._v("Get /oapi/v1/pool/hashrate_history")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.jurisdiction"))+" pool")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.parameter")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("coin")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.currency")))])]),e("tr",[e("td",[t._v("start")]),e("td",[t._v("string")]),e("td",[t._v(t._s(t.$t("apiFile.start2")))]),e("td",[t._v(t._s(t.$t("apiFile.start")))])]),e("tr",[e("td",[t._v("end")]),e("td",[t._v("string")]),e("td",[t._v(t._s(t.$t("apiFile.end2")))]),e("td",[t._v(t._s(t.$t("apiFile.end")))])])]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.response")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("hashrate_30m")]),t._m(4),e("td",[t._v("repeated")]),e("td",[t._v(t._s(t.$t("apiFile.historyPower30m")))])]),e("tr",[e("td",[t._v("hashrate_24h")]),t._m(5),e("td",[t._v("repeated")]),e("td",[t._v(t._s(t.$t("apiFile.historyPower24h")))])]),e("tr",[e("td",[t._v("unit")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.Company"))+"(h/s, kh/s, mh/s, gh/s …)")])])])])]),e("section",{staticClass:"MiningPool",attrs:{id:"accountHashRate"}},[e("h3",[t._v(t._s(t.$t("apiFile.miningAccount")))]),e("div",{staticClass:"Pool"},[e("p",[t._v(t._s(t.$t("apiFile.miningPoolInformation1")))]),e("p",{staticClass:"hash"},[t._v("HashRate")]),e("p",[t._v(t._s(t.$t("apiFile.miningPoolInformation2")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("date")]),e("td",[t._v("Date")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.powerStatistics")))])]),e("tr",[e("td",[t._v("hashrate")]),e("td",[t._v("double")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.power")))])])])]),e("div",{staticClass:"Pool",attrs:{id:"accountList"}},[e("p",{staticClass:"hash"},[t._v("MinersList")]),e("p",[t._v(t._s(t.$t("apiFile.minerData")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("total")]),e("td",[t._v("int")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.totalMiners")))])]),e("tr",[e("td",[t._v("online")]),e("td",[t._v("int")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.onLineMiners")))])]),e("tr",[e("td",[t._v("offline")]),e("td",[t._v("int")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.offLineMiners")))])])])]),e("div",{staticClass:"Pool",attrs:{id:"MinerInfo"}},[e("p",{staticClass:"hash"},[t._v("MinerInfo")]),e("p",[t._v(t._s(t.$t("apiFile.stateData")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("miner")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.minerId")))])]),e("tr",[e("td",[t._v("state")]),e("td",[t._v("int")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.minerStatus"))),e("br"),t._v(" "+t._s(t.$t("apiFile.minerStatus0"))),e("br"),t._v(" "+t._s(t.$t("apiFile.minerStatus1"))),e("br"),t._v(" "+t._s(t.$t("apiFile.minerStatus2")))])])])]),e("div",{staticClass:"Pool"},[e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.overviewOfMiners")))]),e("p",{staticClass:"Interface"},[t._v("Post /oapi/v1/account/watch")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.jurisdiction"))+" account")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.parameter")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("coin")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.currency")))])]),e("tr",[e("td",[t._v("mining_user")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.accountApiKey")))])])]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.response")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("miners_list")]),t._m(6),e("td",[t._v("repeated")]),e("td",[t._v(t._s(t.$t("apiFile.eachState")))])])])]),e("div",{staticClass:"Pool"},[e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.allMiners")))]),e("p",{staticClass:"Interface"},[t._v("Post /oapi/v1/account/miners_list")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.jurisdiction"))+" account")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.parameter")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("coin")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.currency")))])]),e("tr",[e("td",[t._v("mining_user")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.accountApiKey")))])])]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.response")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("miners_list")]),t._m(7),e("td",[t._v("repeated")]),e("td",[t._v(t._s(t.$t("apiFile.eachState")))])])])]),e("div",{staticClass:"Pool"},[e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.realTimeAccount")))]),e("p",{staticClass:"Interface"},[t._v("Post /oapi/v1/account/hashrate_real")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.jurisdiction"))+" account")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.parameter")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("coin")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.currency")))])]),e("tr",[e("td",[t._v("mining_user")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.accountApiKey")))])])]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.response")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("hashrate_realtime")]),e("td",[t._v("double")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.averagePower30m")))])]),e("tr",[e("td",[t._v("hashrate_24h")]),e("td",[t._v("double")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.averagePower24h")))])]),e("tr",[e("td",[t._v("unit")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.Company"))+"(h/s, kh/s, mh/s, gh/s …)")])])])]),e("div",{staticClass:"Pool"},[e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.account24h")))]),e("p",{staticClass:"Interface"},[t._v("Post /oapi/v1/account/hashrate_history")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.jurisdiction"))+" account")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.parameter")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("coin")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.currency")))])]),e("tr",[e("td",[t._v("mining_user")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.accountApiKey")))])]),e("tr",[e("td",[t._v("start")]),e("td",[t._v("string")]),e("td",[t._v(t._s(t.$t("apiFile.start2")))]),e("td",[t._v(t._s(t.$t("apiFile.start")))])]),e("tr",[e("td",[t._v("end")]),e("td",[t._v("string")]),e("td",[t._v(t._s(t.$t("apiFile.end2")))]),e("td",[t._v(t._s(t.$t("apiFile.end")))])])]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.response")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("hashrate_24h")]),t._m(8),e("td",[t._v("repeated")]),e("td",[t._v(t._s(t.$t("apiFile.historyPower24h")))])]),e("tr",[e("td",[t._v("unit")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.Company"))+"(h/s, kh/s, mh/s, gh/s …)")])])])]),e("div",{staticClass:"Pool"},[e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.account24h30m")))]),e("p",{staticClass:"Interface"},[t._v("Post /oapi/v1/account/hashrate_last24h")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.jurisdiction"))+" account")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.parameter")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("coin")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.currency")))])]),e("tr",[e("td",[t._v("mining_user")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.accountApiKey")))])])]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.response")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("hashrate_30m")]),t._m(9),e("td",[t._v("repeated")]),e("td",[t._v(t._s(t.$t("apiFile.average24h30m")))])]),e("tr",[e("td",[t._v("unit")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.Company"))+"(h/s, kh/s, mh/s, gh/s …)")])])])])]),e("section",{staticClass:"MiningPool",attrs:{id:"minerHashRate"}},[e("h3",[t._v(t._s(t.$t("apiFile.miningMachineInformation")))]),e("div",{staticClass:"Pool"},[e("p",[t._v(t._s(t.$t("apiFile.miningPoolInformation1")))]),e("p",{staticClass:"hash"},[t._v("HashRate")]),e("p",[t._v(t._s(t.$t("apiFile.miningPoolInformation2")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("date")]),e("td",[t._v("Date")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.powerStatistics")))])]),e("tr",[e("td",[t._v("hashrate")]),e("td",[t._v("double")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.power")))])])])]),e("div",{staticClass:"Pool"},[e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.realTimeMiningMachine")))]),e("p",{staticClass:"Interface"},[t._v("Post /oapi/v1/miner/hashrate_real")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.jurisdiction"))+" miner")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.parameter")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("coin")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.currency")))])]),e("tr",[e("td",[t._v("mining_user")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.accountApiKey")))])]),e("tr",[e("td",[t._v("miner")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.aCertainMiner")))])])]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.response")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("hashrate_realtime")]),e("td",[t._v("double")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.averagePower30m")))])]),e("tr",[e("td",[t._v("hashrate_24h")]),e("td",[t._v("double")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.averagePower24h")))])]),e("tr",[e("td",[t._v("unit")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.Company"))+"(h/s, kh/s, mh/s, gh/s …)")])])])]),e("div",{staticClass:"Pool"},[e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.miningMachineHistory24h")))]),e("p",{staticClass:"Interface"},[t._v("Post /oapi/v1/miner/hashrate_history")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.jurisdiction"))+" miner")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.parameter")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("coin")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.currency")))])]),e("tr",[e("td",[t._v("mining_user")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.accountApiKey")))])]),e("tr",[e("td",[t._v("miner")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.aCertainMiner")))])]),e("tr",[e("td",[t._v("start")]),e("td",[t._v("string")]),e("td",[t._v(t._s(t.$t("apiFile.start2")))]),e("td",[t._v(t._s(t.$t("apiFile.start")))])]),e("tr",[e("td",[t._v("end")]),e("td",[t._v("string")]),e("td",[t._v(t._s(t.$t("apiFile.end2")))]),e("td",[t._v(t._s(t.$t("apiFile.end")))])])]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.response")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("hashrate_24h")]),t._m(10),e("td",[t._v("repeated")]),e("td",[t._v(t._s(t.$t("apiFile.historyPower24h")))])]),e("tr",[e("td",[t._v("unit")]),e("td",[t._v(" string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.Company"))+"(h/s, kh/s, mh/s, gh/s …)")])])])]),e("div",{staticClass:"Pool"},[e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.realTimeMiningMachine24h30m")))]),e("p",{staticClass:"Interface"},[t._v("Post /oapi/v1/miner/hashrate_last24h")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.jurisdiction"))+" miner")]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.parameter")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("coin")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.currency")))])]),e("tr",[e("td",[t._v("mining_user")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.accountApiKey")))])]),e("tr",[e("td",[t._v("miner")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.aCertainMiner")))])])]),e("p",{staticClass:"hash"},[t._v(t._s(t.$t("apiFile.response")))]),e("table",{attrs:{border:"1"}},[e("tr",[e("th",[t._v(t._s(t.$t("apiFile.name")))]),e("th",[t._v(t._s(t.$t("apiFile.type")))]),e("th",[t._v(t._s(t.$t("apiFile.remarks")))]),e("th",[t._v(t._s(t.$t("apiFile.Explain")))])]),e("tr",[e("td",[t._v("hashrate_30m")]),t._m(11),e("td",[t._v("repeated")]),e("td",[t._v(t._s(t.$t("apiFile.average24h30m")))])]),e("tr",[e("td",[t._v("unit")]),e("td",[t._v("string")]),e("td"),e("td",[t._v(t._s(t.$t("apiFile.Company"))+"(h/s, kh/s, mh/s, gh/s …)")])])])])])])]):e("section",{staticClass:"rateBox"},[e("section",{staticClass:"leftMenu"},[e("ul",t._l(t.navList,(function(s){return e("li",{key:s.id,class:{navActive:String(s.id)===String(t.DetailsParams.id)},on:{click:function(e){return t.clickJump(s)}}},[e("i",{staticClass:"iconfont icon-baogao file"}),t._v(t._s(s.title)+" ")])})),0)]),e("section",{staticClass:"rightText"},[e("section",{staticClass:"rightContent"},[t.documentLoading?e("div",{staticClass:"loading-container"},[e("span",{staticClass:"loading-text"},[t._v(t._s(t.$t("home.loadingContent")||"正在加载内容..."))])]):t.info&&t.info.trim()?e("div",{staticClass:"dynamic-content",domProps:{innerHTML:t._s(t.info)}}):e("div",{staticClass:"no-content"},[e("p",[t._v(t._s(t.$t("home.noContent")||"暂无内容"))])])])])])])},e.Yp=[function(){var t=this,e=t._self._c;return e("ul",[e("li",[t._v("curl --request GET {url} \\")]),e("li",[t._v("--header 'Content-Type: application/json' \\")]),e("li",[t._v("--header 'API-KEY: {token}'")])])},function(){var t=this,e=t._self._c;return e("div",{staticClass:"container"},[e("p",[t._v("{")]),e("p",{staticStyle:{color:"green"}},[t._v('"code": 200,')]),e("p",[t._v('"data": object')]),e("p",[t._v("}")])])},function(){var t=this,e=t._self._c;return e("td",{staticClass:"active"},[e("a",{attrs:{href:"#HashRate"}},[t._v("HashRate")])])},function(){var t=this,e=t._self._c;return e("td",{staticClass:"active"},[e("a",{attrs:{href:"#MinersList"}},[t._v("MinersList")])])},function(){var t=this,e=t._self._c;return e("td",{staticClass:"active"},[e("a",{attrs:{href:"#HashRate"}},[t._v("HashRate")])])},function(){var t=this,e=t._self._c;return e("td",{staticClass:"active"},[e("a",{attrs:{href:"#HashRate"}},[t._v("HashRate")])])},function(){var t=this,e=t._self._c;return e("td",{staticClass:"active"},[e("a",{attrs:{href:"#accountList"}},[t._v("MinersList")])])},function(){var t=this,e=t._self._c;return e("td",{staticClass:"active"},[e("a",{attrs:{href:"#MinerInfo"}},[t._v("MinerInfo")])])},function(){var t=this,e=t._self._c;return e("td",{staticClass:"active"},[e("a",{attrs:{href:"#accountHashRate"}},[t._v("HashRate")])])},function(){var t=this,e=t._self._c;return e("td",{staticClass:"active"},[e("a",{attrs:{href:"#accountHashRate"}},[t._v("HashRate")])])},function(){var t=this,e=t._self._c;return e("td",{staticClass:"active"},[e("a",{attrs:{href:"#minerHashRate"}},[t._v("HashRate")])])},function(){var t=this,e=t._self._c;return e("td",{staticClass:"active"},[e("a",{attrs:{href:"#minerHashRate"}},[t._v("HashRate")])])}]},75690:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"announcements-container"},[e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.announcementsLoading,expression:"announcementsLoading"}],staticClass:"main-content"},[e("div",{staticClass:"page-header"},[e("div",{staticClass:"header-left"},[e("h1",{staticClass:"page-title"},[t._v(t._s(t.$t("home.announcements")||"公告中心"))])])]),t.showMarkdownGuide?e("div",{staticClass:"markdown-guide-section"},[e("transition",{attrs:{name:"slide-fade"}},[e("div",{directives:[{name:"show",rawName:"v-show",value:t.showMarkdownGuide,expression:"showMarkdownGuide"}],staticClass:"markdown-guide-content"},[e("div",{staticClass:"guide-container"},[e("h3",{staticClass:"guide-title"},[t._v("📝 Markdown 语法规则详解")]),e("div",{staticClass:"guide-section"},[e("h4",[t._v("1. 标题语法 (#符号)")]),e("div",{staticClass:"example-container"},[e("div",{staticClass:"syntax-example"},[e("pre",[e("code",[t._v("# 一级标题 (最大)\n## 二级标题 \n### 三级标题\n#### 四级标题\n##### 五级标题\n###### 六级标题 (最小)")])])]),e("div",{staticClass:"result-preview"},[e("h1",{staticStyle:{"font-size":"24px",margin:"8px 0"}},[t._v("一级标题")]),e("h2",{staticStyle:{"font-size":"20px",margin:"6px 0"}},[t._v("二级标题")]),e("h3",{staticStyle:{"font-size":"16px",margin:"4px 0"}},[t._v("三级标题")])])])]),e("div",{staticClass:"guide-section"},[e("h4",[t._v("2. 文本格式化")]),e("div",{staticClass:"example-container"},[e("div",{staticClass:"syntax-example"},[e("pre",[e("code",[t._v("**粗体文本**\n*斜体文本*\n***粗斜体***\n~~删除线~~\n`行内代码`")])])]),e("div",{staticClass:"result-preview"},[e("p",[e("strong",[t._v("粗体文本")])]),e("p",[e("em",[t._v("斜体文本")])]),e("p",[e("strong",[e("em",[t._v("粗斜体")])])]),e("p",[e("del",[t._v("删除线")])]),e("p",[e("code",[t._v("行内代码")])])])])]),e("div",{staticClass:"guide-section"},[e("h4",[t._v("3. 列表语法")]),e("div",{staticClass:"example-container"},[e("div",{staticClass:"syntax-example"},[e("pre",[e("code",[t._v("- 无序列表项 1\n- 无序列表项 2\n - 子列表项 2.1\n - 子列表项 2.2\n\n1. 有序列表项 1\n2. 有序列表项 2\n3. 有序列表项 3")])])]),e("div",{staticClass:"result-preview"},[e("ul",[e("li",[t._v("无序列表项 1")]),e("li",[t._v("无序列表项 2 "),e("ul",[e("li",[t._v("子列表项 2.1")]),e("li",[t._v("子列表项 2.2")])])])]),e("ol",[e("li",[t._v("有序列表项 1")]),e("li",[t._v("有序列表项 2")]),e("li",[t._v("有序列表项 3")])])])])]),e("div",{staticClass:"guide-section"},[e("h4",[t._v("4. 链接和图片")]),e("div",{staticClass:"example-container"},[e("div",{staticClass:"syntax-example"},[e("pre",[e("code",[t._v("[链接文本](https://example.com)\n![图片描述](https://example.com/image.png)\n\n参考式链接:\n[链接文本][1]\n[1]: https://example.com")])])]),e("div",{staticClass:"result-preview"},[e("p",[e("a",{staticStyle:{color:"#5721E4"},attrs:{href:"#"}},[t._v("链接文本")])]),e("p",[t._v("📷 图片会在这里显示")]),e("p",[e("a",{staticStyle:{color:"#5721E4"},attrs:{href:"#"}},[t._v("参考式链接")])])])])]),e("div",{staticClass:"guide-section"},[e("h4",[t._v("5. 代码块")]),e("div",{staticClass:"example-container"},[e("div",{staticClass:"syntax-example"},[e("pre",[e("code",[t._v('```javascript\nfunction hello() {\n console.log("Hello World!");\n}\n```\n\n```python\ndef hello():\n print("Hello World!")\n```')])])]),e("div",{staticClass:"result-preview"},[e("pre",{staticStyle:{background:"#f8f9fa",padding:"12px","border-radius":"4px"}},[e("code",[t._v('function hello() {\n console.log("Hello World!");\n}')])])])])]),e("div",{staticClass:"guide-section"},[e("h4",[t._v("6. 表格语法")]),e("div",{staticClass:"example-container"},[e("div",{staticClass:"syntax-example"},[e("pre",[e("code",[t._v("| 列标题1 | 列标题2 | 列标题3 |\n|---------|---------|---------|\n| 单元格1 | 单元格2 | 单元格3 |\n| 数据A | 数据B | 数据C |\n\n对齐方式:\n| 左对齐 | 居中对齐 | 右对齐 |\n|:-------|:--------:|-------:|\n| 左 | 中 | 右 |")])])]),e("div",{staticClass:"result-preview"},[e("table",{staticStyle:{"border-collapse":"collapse",width:"100%"}},[e("thead",[e("tr",{staticStyle:{background:"#f8f9fa"}},[e("th",{staticStyle:{border:"1px solid #ddd",padding:"8px"}},[t._v("列标题1")]),e("th",{staticStyle:{border:"1px solid #ddd",padding:"8px"}},[t._v("列标题2")]),e("th",{staticStyle:{border:"1px solid #ddd",padding:"8px"}},[t._v("列标题3")])])]),e("tbody",[e("tr",[e("td",{staticStyle:{border:"1px solid #ddd",padding:"8px"}},[t._v("单元格1")]),e("td",{staticStyle:{border:"1px solid #ddd",padding:"8px"}},[t._v("单元格2")]),e("td",{staticStyle:{border:"1px solid #ddd",padding:"8px"}},[t._v("单元格3")])])])])])])]),e("div",{staticClass:"guide-section"},[e("h4",[t._v("7. 引用语法")]),e("div",{staticClass:"example-container"},[e("div",{staticClass:"syntax-example"},[e("pre",[e("code",[t._v("> 这是一个引用块\n> 可以包含多行内容\n> \n> > 嵌套引用\n> > 可以多层嵌套")])])]),e("div",{staticClass:"result-preview"},[e("blockquote",{staticStyle:{"border-left":"4px solid #5721E4","padding-left":"16px",margin:"16px 0",color:"#666"}},[e("p",[t._v("这是一个引用块"),e("br"),t._v("可以包含多行内容")]),e("blockquote",{staticStyle:{"border-left":"4px solid #ccc","padding-left":"16px"}},[e("p",[t._v("嵌套引用"),e("br"),t._v("可以多层嵌套")])])])])])]),e("div",{staticClass:"guide-section"},[e("h4",[t._v("8. 分隔线")]),e("div",{staticClass:"example-container"},[e("div",{staticClass:"syntax-example"},[e("pre",[e("code",[t._v("--- (三个或更多短横线)\n*** (三个或更多星号) \n___ (三个或更多下划线)")])])]),e("div",{staticClass:"result-preview"},[e("hr",{staticStyle:{border:"none","border-top":"1px solid #ddd",margin:"16px 0"}})])])]),e("div",{staticClass:"guide-section"},[e("h4",[t._v("9. 任务列表")]),e("div",{staticClass:"example-container"},[e("div",{staticClass:"syntax-example"},[e("pre",[e("code",[t._v("- [x] 已完成任务\n- [ ] 待完成任务\n- [x] 另一个已完成任务")])])]),e("div",{staticClass:"result-preview"},[e("ul",{staticStyle:{"list-style":"none","padding-left":"0"}},[e("li",[t._v("☑️ 已完成任务")]),e("li",[t._v("☐ 待完成任务")]),e("li",[t._v("☑️ 另一个已完成任务")])])])])]),e("div",{staticClass:"guide-section"},[e("h4",[t._v("10. 转义字符")]),e("div",{staticClass:"example-container"},[e("div",{staticClass:"syntax-example"},[e("pre",[e("code",[t._v("\\* 显示星号而不是斜体\n\\# 显示井号而不是标题\n\\` 显示反引号\n\\\\ 显示反斜杠")])])]),e("div",{staticClass:"result-preview"},[e("p",[t._v("* 显示星号而不是斜体")]),e("p",[t._v("# 显示井号而不是标题")]),e("p",[t._v("` 显示反引号")]),e("p",[t._v("\\ 显示反斜杠")])])])]),e("div",{staticClass:"guide-section tips-section"},[e("h4",[t._v("💡 实用提示")]),e("div",{staticClass:"tips-grid"},[e("div",{staticClass:"tip-item"},[e("strong",[t._v("标题层级:")]),t._v("按逻辑顺序使用,不跳级 ")]),e("div",{staticClass:"tip-item"},[e("strong",[t._v("空行:")]),t._v("在不同元素之间添加空行提高可读性 ")]),e("div",{staticClass:"tip-item"},[e("strong",[t._v("列表缩进:")]),t._v("子列表用2个空格缩进 ")]),e("div",{staticClass:"tip-item"},[e("strong",[t._v("代码语言:")]),t._v("指定代码块语言以获得语法高亮 ")]),e("div",{staticClass:"tip-item"},[e("strong",[t._v("表格对齐:")]),t._v("保持表格列的对齐美观 ")]),e("div",{staticClass:"tip-item"},[e("strong",[t._v("链接描述:")]),t._v("使用有意义的链接文本 ")])])]),e("div",{staticClass:"guide-section"},[e("h4",[t._v("⌨️ 编辑器快捷键")]),e("div",{staticClass:"shortcuts-grid"},[e("div",{staticClass:"shortcut-item"},[e("kbd",[t._v("Ctrl")]),t._v(" + "),e("kbd",[t._v("B")]),t._v(" → 粗体 ")]),e("div",{staticClass:"shortcut-item"},[e("kbd",[t._v("Ctrl")]),t._v(" + "),e("kbd",[t._v("I")]),t._v(" → 斜体 ")]),e("div",{staticClass:"shortcut-item"},[e("kbd",[t._v("Ctrl")]),t._v(" + "),e("kbd",[t._v("K")]),t._v(" → 插入链接 ")]),e("div",{staticClass:"shortcut-item"},[e("kbd",[t._v("Ctrl")]),t._v(" + "),e("kbd",[t._v("`")]),t._v(" → 行内代码 ")]),e("div",{staticClass:"shortcut-item"},[e("kbd",[t._v("Ctrl")]),t._v(" + "),e("kbd",[t._v("1-6")]),t._v(" → 标题 ")]),e("div",{staticClass:"shortcut-item"},[e("kbd",[t._v("Ctrl")]),t._v(" + "),e("kbd",[t._v("Z")]),t._v(" → 撤销 ")])])])])])])],1):t._e(),e("div",{staticClass:"latest-section"},[e("h2",{staticClass:"section-title"},[t._v(t._s(t.$t("home.latestTitle")||"最新公告"))])]),!t.loading&&t.announcements.length>0?e("div",{staticClass:"announcement-list"},t._l(t.announcements,(function(s){return e("div",{key:s.id,staticClass:"announcement-item",on:{click:function(e){return t.handleAnnouncementClick(s)}}},[e("div",{staticClass:"announcement-content"},[e("h3",{staticClass:"announcement-title"},[t._v(t._s(s.title))]),e("div",{staticClass:"announcement-meta"},[e("span",{staticClass:"announcement-date"},[t._v(t._s(t.formatDate(s.createTime)))]),s.type?e("span",{staticClass:"announcement-type"},[t._v(t._s(t.handelType(s.type)))]):t._e()]),s.summary?e("p",{staticClass:"announcement-summary"},[t._v(" "+t._s(s.summary)+" ")]):t._e()]),t._m(0,!0)])})),0):t.loading||0!==t.announcements.length?t._e():e("div",{staticClass:"empty-state"},[e("div",{staticClass:"empty-content"},[e("i",{staticClass:"el-icon-document"}),e("p",[t._v(t._s(t.$t("home.noData")||"暂无公告"))])])]),t.announcements.length>0?e("div",{staticClass:"pagination-section"},[e("el-pagination",{staticClass:"pagination",attrs:{"current-page":t.currentPage,"page-sizes":[10,50,100,400],total:t.totalCount,layout:"total, sizes, prev, pager, next, jumper"},on:{"current-change":t.handleCurrentChange,"size-change":t.handleSizeChange}})],1):t._e()])])},e.Yp=[function(){var t=this,e=t._self._c;return e("div",{staticClass:"announcement-arrow"},[e("i",{staticClass:"el-icon-arrow-right"})])}]},77452:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0;var i=s(90929),a=s(82908);e["default"]={data(){return{receiveData:{img:"",maId:"",coin:"",ma:""},dialogVisible:!1,params:{email:"",remark:"",code:"",maId:""},tableData:[{email:"5656"}],alertsLoading:!1,addMinerLoading:!1,btnDisabled:!1,btnDisabledClose:!1,btnDisabledPassword:!1,bthText:"user.obtainVerificationCode",bthTextClose:"user.obtainVerificationCode",bthTextPassword:"user.obtainVerificationCode",time:"",countDownTime:60,timer:null,countDownTimeClose:60,timerclose:null,countDownTimePassword:60,timerPassword:null,listParams:{maId:"",limit:10,page:1},modifyDialogVisible:!1,modifyRemark:"",modifyParams:{id:"",remark:""},deleteLoading:!1,userEmail:""}},computed:{countDownPassword(){Math.floor(this.countDownTimePassword/60);const t=this.countDownTimePassword%60,e=t<10?"0"+t:t;return`${e}`}},created(){window.sessionStorage.getItem("alerts_time")&&(this.countDownTimePassword=Number(window.sessionStorage.getItem("alerts_time")),this.startCountDownPassword(),this.btnDisabledPassword=!0,this.bthTextPassword="user.again")},mounted(){let t=localStorage.getItem("userEmail");this.userEmail=JSON.parse(t),window.addEventListener("setItem",(()=>{let t=localStorage.getItem("userEmail");this.userEmail=JSON.parse(t)})),this.params.email=this.userEmail,this.$route.query&&(this.receiveData=this.$route.query,this.listParams.maId=this.receiveData.id,this.params.maId=this.receiveData.id),this.fetchList(this.listParams),this.registerRecoveryMethod("fetchList",this.listParams)},methods:{getImageUrl(t){return(0,a.getImageUrl)(t)},async fetchAddNoticeEmail(t){this.setLoading("addMinerLoading",!0);const e=await(0,i.getAddNoticeEmail)(t);if(e&&200==e.code){this.$message({type:"success",message:this.$t("alerts.addedSuccessfully")}),this.fetchList(this.listParams),this.dialogVisible=!1;for(const t in this.params)"maId"!==t&&(this.params[t]="")}this.setLoading("addMinerLoading",!1)},async fetchList(t){this.setLoading("alertsLoading",!0);const e=await(0,i.getList)(t);e&&200==e.code&&(this.tableData=e.rows),this.setLoading("alertsLoading",!1)},async fetchCode(t){const e=await(0,i.getCode)(t);e&&200==e.code&&this.$message({type:"success",message:this.$t("user.verificationCodeSuccessful")})},async fetchUpdateInfo(t){this.setLoading("addMinerLoading",!0);const e=await(0,i.getUpdateInfo)(t);e&&200==e.code&&(this.$message({type:"success",message:this.$t("alerts.modifiedSuccessfully")}),this.modifyDialogVisible=!1,this.fetchList(this.listParams)),this.setLoading("addMinerLoading",!1)},async fetchDeleteEmail(t){this.setLoading("deleteLoading",!0);const e=await(0,i.deleteEmail)(t);e&&200==e.code&&(this.$message({type:"success",message:this.$t("alerts.deleteSuccessfully")}),this.fetchList(this.listParams)),this.setLoading("deleteLoading",!1)},add(){this.dialogVisible=!0},confirmAdd(){const t=/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,}$/;this.params.email=this.params.email.trim();let e=t.test(this.params.email);this.params.email&&e?this.params.code?this.fetchAddNoticeEmail(this.params):this.$message({message:this.$t("personal.eCode"),type:"error",customClass:"messageClass",showClose:!0}):this.$message({message:this.$t("user.emailVerification"),type:"error",customClass:"messageClass",showClose:!0})},modify(t){this.modifyParams.id=t.id,this.modifyParams.remark=t.remark,this.modifyDialogVisible=!0},confirmModify(){this.modifyParams.remark?this.fetchUpdateInfo(this.modifyParams):this.$message({message:this.$t("alerts.modificationReminder"),type:"error",customClass:"messageClass",showClose:!0})},handelDelete(t){this.fetchDeleteEmail({id:t.id})},handelCode(){const t=/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,}$/;this.params.email=this.params.email.trim();let e=t.test(this.params.email);this.params.email&&e?0===this.listParams.maId||this.listParams.maId?(this.fetchCode({email:this.params.email,maId:this.listParams.maId}),null==window.sessionStorage.getItem("alerts_time")||(this.countDownTimePassword=Number(window.sessionStorage.getItem("alerts_time"))),this.startCountDownPassword()):this.$message({message:this.$t("alerts.acquisitionFailed"),type:"error",customClass:"messageClass",showClose:!0}):this.$message({message:this.$t("user.emailVerification"),type:"error",customClass:"messageClass",showClose:!0})},startCountDownPassword(){this.timerPassword=setInterval((()=>{this.countDownTimePassword<=1?(clearInterval(this.timerPassword),sessionStorage.removeItem("alerts_time"),this.countDownTimePassword=60,this.btnDisabledPassword=!1,this.bthTextPassword="user.obtainVerificationCode"):this.countDownTimePassword>0&&(this.countDownTimePassword--,this.btnDisabledPassword=!0,this.bthTextPassword="user.again",window.sessionStorage.setItem("alerts_time",this.countDownTimePassword))}),1e3)}}}},78006:function(t,e,s){var i=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var a=i(s(59018));e.A={mixins:[a.default]}},86465:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0;var i=s(1652);e["default"]={data(){return{problems:[],listParams:{type:"2",lang:this.$i18n.locale,pageNum:1,pageSize:50},problemLoading:!1,DetailsParams:{id:"",lang:this.$i18n.locale},info:""}},mounted(){this.fetchProblemsList(this.listParams)},methods:{async fetchProblemsList(t){this.setLoading("problemLoading",!0);const e=await(0,i.documentsList)(t);e&&200===e.code&&(this.problems=e.rows,this.$route.query.id?this.DetailsParams.id=this.$route.query.id:this.problems.length>0&&(this.DetailsParams.id=this.problems[0].id),this.fetchProblemDetails(this.DetailsParams)),this.setLoading("problemLoading",!1)},async fetchProblemDetails(t){this.setLoading("problemLoading",!0);const e=await(0,i.findDataInfo)(t);e&&200===e.code&&(console.log(e,"res"),this.info=e.data.content||""),this.setLoading("problemLoading",!1)},handleClick(t){this.DetailsParams.id=t,this.fetchProblemDetails(this.DetailsParams)}}}},87188:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return a.B},default:function(){return l}});var i=s(2086),a=s(4710),n=a.A,o=s(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"7b09cda6",null),l=r.exports},91312:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.alertsLoading,expression:"alertsLoading"}],staticClass:"alerts"},[t.$isMobile?e("section",{staticClass:"mobileMain"},[e("div",{staticClass:"accountInformation"},[e("img",{attrs:{src:t.receiveData.img,alt:"coin",loading:"lazy"}}),e("span",{staticClass:"coin"},[t._v(t._s(t.receiveData.coin))]),e("i",{staticClass:"iconfont icon-youjiantou"}),e("span",{staticClass:"ma"},[t._v(" "+t._s(t.receiveData.ma))])]),e("h4",[t._v(t._s(t.$t("alerts.Alarm")))]),e("p",{staticClass:"explain"},[e("i",{staticClass:"iconfont icon-zhuyi"}),t._v(" "+t._s(t.$t("alerts.beCareful")))]),e("p",{staticClass:"explain"},[e("i",{staticClass:"iconfont icon-zhuyi"}),t._v(" "+t._s(t.$t("alerts.beCareful1")))]),e("section",{staticClass:"BthBox"},[e("el-button",{staticClass:"addBth",on:{click:t.add}},[t._v(" "+t._s(t.$t("alerts.add"))+" "),e("i",{staticClass:"iconfont icon-youjiantou1 arrow",attrs:{"data-v-76e7f323":""}})])],1),e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("user.Account")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("work.operation")))])]),e("el-collapse",t._l(t.tableData,(function(s){return e("el-collapse-item",{key:s.id,attrs:{name:"1"}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",{staticClass:"coinBox"},[t._v(t._s(s.email))]),e("div",{staticClass:"operationBox"},[e("el-button",{staticClass:"modifyBth",attrs:{size:"small"},nativeOn:{click:function(e){return t.modify(s)}}},[t._v(" "+t._s(t.$t("personal.modify"))+" ")]),e("el-popconfirm",{attrs:{"confirm-button-text":t.$t("work.confirm"),"cancel-button-text":t.$t("work.cancel"),icon:"el-icon-info","icon-color":"red",title:t.$t("alerts.deleteRemind")},on:{confirm:function(e){return t.handelDelete(t.scope.row)}}},[e("el-button",{staticClass:"elBtn",attrs:{slot:"reference",loading:t.deleteLoading,size:"small"},slot:"reference"},[t._v(t._s(t.$t("personal.delete")))])],1)],1)])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("user.Account")))]),e("p",[t._v(t._s(s.email))])]),e("div",[e("p",[t._v(t._s(t.$t("apiFile.remarks")))]),e("p",[t._v(t._s(s.remark))])])])],2)})),1)],1),e("el-dialog",{attrs:{visible:t.dialogVisible,width:"45%","close-on-click-modal":!1},on:{"update:visible":function(e){t.dialogVisible=e}}},[e("section",{staticClass:"dialogBox"},[e("div",{staticClass:"title",staticStyle:{"font-size":"1.3em"}},[t._v(t._s(t.$t("alerts.addAlarmEmail")))]),e("div",{staticClass:"inputBox"},[e("div",{staticClass:"inputItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("user.Account")))]),e("el-input",{staticClass:"input",attrs:{type:"email",placeholder:t.$t("personal.pleaseEnter")},model:{value:t.params.email,callback:function(e){t.$set(t.params,"email",e)},expression:"params.email"}})],1),e("div",{staticClass:"inputItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("personal.verificationCode")))]),e("div",{staticClass:"verificationCode"},[e("el-input",{attrs:{type:"text",autocomplete:"off",placeholder:t.$t("user.verificationCode")},model:{value:t.params.code,callback:function(e){t.$set(t.params,"code",e)},expression:"params.code"}}),e("el-button",{staticClass:"codeBtn",attrs:{disabled:t.btnDisabledPassword},on:{click:t.handelCode}},[t.countDownTimePassword<60&&t.countDownTimePassword>0?e("span",[t._v(t._s(t.countDownTimePassword))]):t._e(),t._v(t._s(t.$t(t.bthTextPassword)))])],1)]),e("div",{staticClass:"inputItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("apiFile.remarks")))]),e("el-input",{staticClass:"input",attrs:{placeholder:t.$t("personal.pleaseEnter")},model:{value:t.params.remark,callback:function(e){t.$set(t.params,"remark",e)},expression:"params.remark"}})],1)]),e("el-button",{staticStyle:{width:"30%","font-size":"1.1em"},attrs:{loading:t.addMinerLoading,type:"primary"},on:{click:t.confirmAdd}},[t._v(t._s(t.$t("personal.determine")))])],1)]),e("el-dialog",{attrs:{visible:t.modifyDialogVisible,width:"35%","close-on-click-modal":!1},on:{"update:visible":function(e){t.modifyDialogVisible=e}}},[e("section",{staticClass:"dialogBox"},[e("div",{staticClass:"title",staticStyle:{"font-size":"1.3em"}},[t._v(t._s(t.$t("alerts.modifyRemarks")))]),e("div",{staticClass:"inputBox"},[e("div",{staticClass:"inputItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("apiFile.remarks")))]),e("el-input",{staticClass:"input",attrs:{placeholder:t.$t("personal.pleaseEnter")},model:{value:t.modifyParams.remark,callback:function(e){t.$set(t.modifyParams,"remark",e)},expression:"modifyParams.remark"}})],1)]),e("el-button",{staticStyle:{width:"30%","font-size":"1.1em"},attrs:{loading:t.addMinerLoading,type:"primary"},on:{click:t.confirmModify}},[t._v(t._s(t.$t("personal.determine")))])],1)])],1):e("section",{staticClass:"pcMain"},[e("div",{staticClass:"accountInformation"},[e("img",{attrs:{src:t.receiveData.img,alt:"coin",loading:"lazy"}}),e("span",{staticClass:"coin"},[t._v(t._s(t.receiveData.coin))]),e("i",{staticClass:"iconfont icon-youjiantou"}),e("span",{staticClass:"ma"},[t._v(" "+t._s(t.receiveData.ma))])]),e("section",{staticClass:"content"},[e("h2",[t._v(t._s(t.$t("alerts.Alarm")))]),e("p",{staticClass:"explain"},[e("i",{staticClass:"iconfont icon-zhuyi"}),t._v(" "+t._s(t.$t("alerts.beCareful")))]),e("p",{staticClass:"explain"},[e("i",{staticClass:"iconfont icon-zhuyi"}),t._v(" "+t._s(t.$t("alerts.beCareful1")))]),e("section",{staticClass:"BthBox"},[e("el-button",{staticClass:"addBth",on:{click:t.add}},[t._v(" "+t._s(t.$t("alerts.add"))+" "),e("i",{staticClass:"iconfont icon-youjiantou1 arrow",attrs:{"data-v-76e7f323":""}})])],1),e("el-table",{staticClass:"table",staticStyle:{width:"100%","text-transform":"none","border-radius":"5px","margin-top":"18px"},attrs:{height:"500","header-cell-style":{"text-align":"center",background:"#D2C3EA",color:"#36246F",height:"60px"},"cell-style":{"text-align":"center"},data:t.tableData,"max-height":"600",stripe:""}},[e("el-table-column",{attrs:{prop:"email",label:t.$t("user.Account"),width:"230"}}),e("el-table-column",{attrs:{prop:"remark",label:t.$t("apiFile.remarks"),"show-overflow-tooltip":!0}}),e("el-table-column",{attrs:{fixed:"right",label:t.$t("work.operation"),width:"230"},scopedSlots:t._u([{key:"default",fn:function(s){return[e("el-button",{staticClass:"modifyBth",attrs:{size:"small"},on:{click:function(e){return t.modify(s.row)}}},[t._v(" "+t._s(t.$t("personal.modify"))+" ")]),e("el-popconfirm",{attrs:{"confirm-button-text":t.$t("work.confirm"),"cancel-button-text":t.$t("work.cancel"),icon:"el-icon-info","icon-color":"red",title:t.$t("alerts.deleteRemind")},on:{confirm:function(e){return t.handelDelete(s.row)}}},[e("el-button",{staticClass:"elBtn",attrs:{slot:"reference",loading:t.deleteLoading,size:"small"},slot:"reference"},[t._v(t._s(t.$t("personal.delete")))])],1)]}}])})],1)],1),e("el-dialog",{attrs:{visible:t.dialogVisible,width:"45%","close-on-click-modal":!1},on:{"update:visible":function(e){t.dialogVisible=e}}},[e("section",{staticClass:"dialogBox"},[e("div",{staticClass:"title",staticStyle:{"font-size":"1.3em"}},[t._v(t._s(t.$t("alerts.addAlarmEmail")))]),e("div",{staticClass:"inputBox"},[e("div",{staticClass:"inputItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("user.Account")))]),e("el-input",{staticClass:"input",attrs:{type:"email",placeholder:t.$t("personal.pleaseEnter")},model:{value:t.params.email,callback:function(e){t.$set(t.params,"email",e)},expression:"params.email"}})],1),e("div",{staticClass:"inputItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("personal.verificationCode")))]),e("div",{staticClass:"verificationCode"},[e("el-input",{attrs:{type:"text",autocomplete:"off",placeholder:t.$t("user.verificationCode")},model:{value:t.params.code,callback:function(e){t.$set(t.params,"code",e)},expression:"params.code"}}),e("el-button",{staticClass:"codeBtn",attrs:{disabled:t.btnDisabledPassword},on:{click:t.handelCode}},[t.countDownTimePassword<60&&t.countDownTimePassword>0?e("span",[t._v(t._s(t.countDownTimePassword))]):t._e(),t._v(t._s(t.$t(t.bthTextPassword)))])],1)]),e("div",{staticClass:"inputItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("apiFile.remarks")))]),e("el-input",{staticClass:"input",attrs:{placeholder:t.$t("personal.pleaseEnter")},model:{value:t.params.remark,callback:function(e){t.$set(t.params,"remark",e)},expression:"params.remark"}})],1)]),e("el-button",{staticStyle:{width:"30%","font-size":"1.1em"},attrs:{loading:t.addMinerLoading,type:"primary"},on:{click:t.confirmAdd}},[t._v(t._s(t.$t("personal.determine")))])],1)]),e("el-dialog",{attrs:{visible:t.modifyDialogVisible,width:"35%","close-on-click-modal":!1},on:{"update:visible":function(e){t.modifyDialogVisible=e}}},[e("section",{staticClass:"dialogBox"},[e("div",{staticClass:"title",staticStyle:{"font-size":"1.3em"}},[t._v(t._s(t.$t("alerts.modifyRemarks")))]),e("div",{staticClass:"inputBox"},[e("div",{staticClass:"inputItem"},[e("span",{staticClass:"title"},[t._v(t._s(t.$t("apiFile.remarks")))]),e("el-input",{staticClass:"input",attrs:{placeholder:t.$t("personal.pleaseEnter")},model:{value:t.modifyParams.remark,callback:function(e){t.$set(t.modifyParams,"remark",e)},expression:"modifyParams.remark"}})],1)]),e("el-button",{staticStyle:{width:"30%","font-size":"1.1em"},attrs:{loading:t.addMinerLoading,type:"primary"},on:{click:t.confirmModify}},[t._v(t._s(t.$t("personal.determine")))])],1)])],1)])},e.Yp=[]},95546:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return a.B},default:function(){return l}});var i=s(68022),a=s(43421),n=a.A,o=s(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"34314eb3",null),l=r.exports},95664:function(t,e,s){var i=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var a=i(s(66888));e.A={metaInfo:{meta:[{name:"keywords",content:"分配、转账说明,矿池分配,转账说明,Allocation,Transfer,Mining Pool,Pool allocation,Transfer instructions"},{name:"description",content:window.vm.$t("seo.allocationExplanation")}]},mixins:[a.default]}},95935:function(t,e,s){var i=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var a=i(s(86465));e.A={mixins:[a.default]}},98327:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return a.B},default:function(){return l}});var i=s(75690),a=s(4447),n=a.A,o=s(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"7ee09dfe",null),l=r.exports}}]); \ No newline at end of file diff --git a/mining-pool/test/js/app-45954fd3.88a2b2bc.js.gz b/mining-pool/test/js/app-45954fd3.88a2b2bc.js.gz new file mode 100644 index 0000000..36246df Binary files /dev/null and b/mining-pool/test/js/app-45954fd3.88a2b2bc.js.gz differ diff --git a/mining-pool/test/js/app-5c551db8.6078f6e3.js b/mining-pool/test/js/app-5c551db8.6078f6e3.js new file mode 100644 index 0000000..0f3f6de --- /dev/null +++ b/mining-pool/test/js/app-5c551db8.6078f6e3.js @@ -0,0 +1 @@ +"use strict";(self["webpackChunkmining_pool"]=self["webpackChunkmining_pool"]||[]).push([[774],{9526:function(e,t,o){var n=o(3999)["default"];Object.defineProperty(t,"__esModule",{value:!0}),t.loadingRecoveryDirective=void 0;var r=n(o(66848));const a=t.loadingRecoveryDirective={inserted(e,t,o){const n=o.context,{loading:r,recovery:a}=t.value||{};if(!r||!a||!Array.isArray(a))return;const i=()=>{n[r]&&(n[r]=!1)};e._loadingRecovery=i,window.addEventListener("network-retry-complete",i),console.log(`[LoadingRecovery] 添加加载状态恢复: ${r}`)},unbind(e){e._loadingRecovery&&(window.removeEventListener("network-retry-complete",e._loadingRecovery),delete e._loadingRecovery)}};r.default.directive("loading-recovery",a)},19526:function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t["default"]=void 0;t["default"]={401:"认证失败,无法访问系统资源,请重新登录",403:"当前操作没有权限",404:"访问资源不存在",default:"系统未知错误,请反馈给管理员"}},34815:function(e,t,o){function n(){const e=["/","/home","/miningAccount","/readOnlyDisplay","/reportBlock","/broadcast","/userManagement","/userDetails","/rate","/allocationExplanation","/apiFile","/customerService","/ServiceTerms","/submitWorkOrder","/workOrderRecords","/userWorkDetails","/workOrderBackend","/BKWorkDetails","/dataDisplay","/alerts","/personalCenter","/personalCenter/personalMining","/personalCenter/readOnly","/personalCenter/securitySetting","/personalCenter/personal","/personalCenter/miningReport","/personalCenter/personalAPI","/AccessMiningPool","/AccessMiningPool/nexaAccess","/AccessMiningPool/rxdAccess","/AccessMiningPool/monaAccess","/AccessMiningPool/grsAccess","/AccessMiningPool/dgbqAccess","/AccessMiningPool/dgboAccess","/AccessMiningPool/dgbsAccess","/AccessMiningPool/enxAccess","/AccessMiningPool/alphminingPool","/login","/register","/simulation","/resetPassword","/404"];return e}function r(e){if(!e||"string"!==typeof e)return!1;const t=e.trim();if("/"===t||""===t)return!0;const o=t.startsWith("/")?t.substring(1):t,r=n(),a=r.map((e=>e.replace(/^\//,""))).filter((e=>""!==e));return a.includes(o)}function a(e){if(!e)return n().slice(0,10);const t=n(),o=e.toLowerCase().trim();return t.filter((e=>e.toLowerCase().includes(o))).slice(0,5)}Object.defineProperty(t,"__esModule",{value:!0}),t.getAllValidPaths=n,t.getPathSuggestions=a,t.isValidPath=r,o(18111),o(22489),o(61701)},35720:function(e,t,o){var n=o(3999)["default"];Object.defineProperty(t,"__esModule",{value:!0}),t["default"]=void 0,o(44114),o(18111),o(7588);var r=n(o(86425)),a=n(o(19526)),i=o(89143),s=n(o(84994)),l=n(o(37465));const c=new Map;function d(e){const{url:t,method:o,params:n,data:r}=e;return[t,o,JSON.stringify(n),JSON.stringify(r)].join("&")}const u=r.default.create({baseURL:"https://test.m2pool.com/api/",timeout:1e4}),m=6e4;let p=new Map,h={online:0,offline:0},g=!1;window.addEventListener("online",(()=>{const e=Date.now();if(g)return void console.log("[网络] 网络恢复处理已在进行中,忽略重复事件");if(g=!0,e-h.online>3e4){h.online=e;try{window.vm&&window.vm.$message&&(window.vm.$message({message:window.vm.$i18n.t("home.networkReconnected")||"网络已重新连接,正在恢复数据...",type:"success",duration:5e3,showClose:!0}),console.log("[网络] 显示网络恢复提示, 时间:",(new Date).toLocaleTimeString()))}catch(o){console.error("[网络] 显示网络恢复提示失败:",o)}}else console.log("[网络] 抑制重复的网络恢复提示, 间隔过短:",e-h.online+"ms");const t=[];p.forEach((async(o,n)=>{if(e-o.timestamp<=m)try{const e=await u(o.config);t.push(e),o.callback&&"function"===typeof o.callback&&o.callback(e),window.vm&&(o.config.url.includes("getPoolPower")&&e&&e.data?window.dispatchEvent(new CustomEvent("chart-data-updated",{detail:{type:"poolPower",data:e.data}})):o.config.url.includes("getNetPower")&&e&&e.data?window.dispatchEvent(new CustomEvent("chart-data-updated",{detail:{type:"netPower",data:e.data}})):o.config.url.includes("getBlockInfo")&&e&&e.rows&&window.dispatchEvent(new CustomEvent("chart-data-updated",{detail:{type:"blockInfo",data:e.rows}}))),p.delete(n)}catch(r){console.error("重试请求失败:",r),p.delete(n)}else p.delete(n)})),Promise.allSettled(t).then((()=>{if(s.default&&s.default.resetAllLoadingStates(),window.vm){const e=["minerChartLoading","reportBlockLoading","apiPageLoading","MiningLoading","miniLoading","bthLoading","editLoading"];e.forEach((e=>{"undefined"!==typeof window.vm[e]&&(window.vm[e]=!1)})),Object.keys(window.vm).forEach((e=>{e.endsWith("Loading")&&(window.vm[e]=!1)}))}window.dispatchEvent(new CustomEvent("network-retry-complete")),setTimeout((()=>{g=!1}),5e3)}))})),window.addEventListener("offline",(()=>{window.vm&&window.vm.$message&&l.default.canShowError("networkOffline")&&window.vm.$message({message:window.vm.$i18n.t("home.networkOffline")||"网络连接已断开,系统将在恢复连接后自动重试",type:"error",duration:5e3,showClose:!0})})),u.defaults.retry=2,u.defaults.retryDelay=2e3,u.defaults.shouldRetry=e=>"Network Error"===e.message||e.message.includes("timeout"),localStorage.setItem("superReportError","");let f=localStorage.getItem("superReportError");window.addEventListener("setItem",(()=>{f=localStorage.getItem("superReportError")})),u.interceptors.request.use((e=>{let t;f="",localStorage.setItem("superReportError","");try{t=JSON.parse(localStorage.getItem("token"))}catch(a){console.log(a)}if(t&&(e.headers["Authorization"]=t),"get"==e.method&&e.data&&(e.params=e.data),"get"===e.method&&e.params){let t=e.url+"?";for(const n of Object.keys(e.params)){const r=e.params[n];var o=encodeURIComponent(n)+"=";if(null!==r&&"undefined"!==typeof r)if("object"===typeof r){for(const e of Object.keys(r))if(null!==r[e]&&"undefined"!==typeof r[e]){let o=n+"["+e+"]",a=encodeURIComponent(o)+"=";t+=a+encodeURIComponent(r[e])+"&"}}else t+=o+encodeURIComponent(r)+"&"}t=t.slice(0,-1),e.params={},e.url=t}const n=d(e);if(c.has(n)){const e=c.get(n);e(),c.delete(n)}return e.cancelToken=new r.default.CancelToken((e=>{c.set(n,e)})),e}),(e=>{Promise.reject(e)})),u.interceptors.response.use((e=>{const t=d(e.config);c.delete(t);const o=e.data.code||200,n=a.default[o]||e.data.msg||a.default["default"];return 421===o?(localStorage.setItem("cs_disconnect_all",Date.now().toString()),localStorage.removeItem("token"),f=localStorage.getItem("superReportError"),f||(f=421,localStorage.setItem("superReportError",f),i.MessageBox.confirm(window.vm.$i18n.t("user.loginExpired"),window.vm.$i18n.t("user.overduePrompt"),{distinguishCancelAndClose:!0,confirmButtonText:window.vm.$i18n.t("user.login"),cancelButtonText:window.vm.$i18n.t("user.Home"),closeOnClickModal:!1,showClose:!1,type:"warning"}).then((()=>{window.vm.$router.push(`/${window.vm.$i18n.locale}/login`),localStorage.removeItem("token")})).catch((()=>{window.vm.$router.push(`/${window.vm.$i18n.locale}/`),localStorage.removeItem("token")}))),Promise.reject("登录状态已过期")):o>=500&&!f?(f=500,localStorage.setItem("superReportError",f),void(0,i.Message)({dangerouslyUseHTMLString:!0,message:n,type:"error",showClose:!0})):200!==o?(i.Notification.error({title:n}),Promise.reject("error")):e.data}),(e=>{if("ERR_CANCELED"===e.code||e.message&&e.message.includes("canceled")||e.message?.includes("Request aborted"))return new Promise((()=>{}));if(e.config){const t=d(e.config);c.delete(t)}let{message:t}=e;if("Network Error"==t||t.includes("timeout"))if(navigator.onLine){if(e.config.__retryCount=e.config.__retryCount||0,e.config.__retryCount{setTimeout((()=>{t(u(e.config))}),u.defaults.retryDelay)}));console.log(`[请求失败] ${e.config.url} - 已达到最大重试次数`)}else{const t=JSON.stringify({url:e.config.url,method:e.config.method,params:e.config.params,data:e.config.data});let o=null;e.config.url.includes("getPoolPower")?o=e=>{window.vm&&(window.vm.minerChartLoading=!1)}:e.config.url.includes("getBlockInfo")&&(o=e=>{window.vm&&(window.vm.reportBlockLoading=!1)}),p.has(t)||(p.set(t,{config:e.config,timestamp:Date.now(),retryCount:0,callback:o}),console.log("请求已加入断网重连队列:",e.config.url))}return f||(f="error",localStorage.setItem("superReportError",f),l.default.canShowError(t)?"Network Error"==t?(0,i.Message)({message:window.vm.$i18n.t("home.NetworkError"),type:"error",duration:4e3,showClose:!0}):t.includes("timeout")?(0,i.Message)({message:window.vm.$i18n.t("home.requestTimeout"),type:"error",duration:5e3,showClose:!0}):t.includes("Request failed with status code")?(0,i.Message)({message:"系统接口"+t.substr(t.length-3)+"异常",type:"error",duration:5e3,showClose:!0}):(0,i.Message)({message:t,type:"error",duration:5e3,showClose:!0}):console.log("[错误提示] 已抑制重复错误:",t)),Promise.reject(e)}));t["default"]=u},37465:function(e,t,o){Object.defineProperty(t,"__esModule",{value:!0}),t["default"]=void 0,o(18111),o(7588);class n{constructor(){this.recentErrors=new Map,this.throttleTime=3e3,this.errorTypes={"Network Error":"network",timeout:"timeout","Request failed with status code":"statusCode",networkReconnected:"networkStatus",NetworkError:"network"}}getErrorType(e){for(const[t,o]of Object.entries(this.errorTypes))if(e.includes(t))return o;return"unknown"}canShowError(e){const t=this.getErrorType(e),o=Date.now();if(this.recentErrors.has(t)){const e=this.recentErrors.get(t);if(o-e{e-t>this.throttleTime&&this.recentErrors.delete(o)}))}}const r=new n;t["default"]=r},39325:function(e,t,o){var n=o(3999)["default"];Object.defineProperty(t,"__esModule",{value:!0}),t["default"]=void 0;var r=n(o(91774)),a=n(o(66848)),i=n(o(22484)),s=n(o(62277)),l=o(89143),c=n(o(58044));a.default.use(i.default);const d=[{path:"",name:"Home",component:()=>Promise.resolve().then((()=>(0,r.default)(o(15564)))),meta:{title:"首页",description:c.default.t("seo.Home"),allAuthority:["all"],keywords:{en:"M2Pool, cryptocurrency mining pool, bitcoin mining, DGB mining, mining pool service, 加密货币矿池, 比特币挖矿, DGB挖矿, 矿池服务",zh:"M2Pool, 加密货币矿池, 比特币挖矿, DGB挖矿, 矿池服务"}}},{path:"miningAccount",name:"MiningAccount",component:()=>Promise.resolve().then((()=>(0,r.default)(o(30751)))),meta:{title:"挖矿账户页面",description:c.default.t("seo.miningAccount"),allAuthority:["admin","registered","customer_service","back_admin"],keywords:{en:"M2Pool mining account, crypto mining stats, mining rewards, hashrate monitor, 矿池账户, 挖矿收益, 算力监控",zh:"M2Pool 挖矿账户, 加密挖矿统计, 挖矿奖励, 算力监控, 矿池账户, 挖矿收益, 算力监控"}}},{path:"readOnlyDisplay",name:"ReadOnlyDisplay",component:()=>Promise.resolve().then((()=>(0,r.default)(o(61969)))),meta:{title:"只读页面展示页",description:c.default.t("seo.readOnlyDisplay"),allAuthority:["all"],keywords:{en:"Read only page,Revenue situation,Mining Pool,Miner information",zh:"M2Pool 矿池,只读页面,收益状况,矿工信息"}}},{path:"reportBlock",name:"ReportBlock",component:()=>Promise.resolve().then((()=>(0,r.default)(o(58437)))),meta:{title:"报块页面",description:c.default.t("seo.reportBlock"),allAuthority:["admin","registered","customer_service","back_admin"],keywords:{en:"Block page,Lucky Value,block height,Mining Pool",zh:"M2Pool 矿池,报块页面,幸运值,区块高度"}}},{path:"helpCenter",name:"HelpCenter",component:()=>Promise.resolve().then((()=>(0,r.default)(o(32056)))),meta:{title:"帮助中心",description:c.default.t("seo.helpCenter"),allAuthority:["all"],keywords:{en:"Help Center,Beginner Guide,Mining Data,Frequently Asked Questions,Announcement Center,Other",zh:"帮助中心,新手入门,常见问题,公告中心"}}},{path:"editorDocument",name:"EditorDocument",component:()=>Promise.resolve().then((()=>(0,r.default)(o(42287)))),meta:{title:"编辑器测试",description:c.default.t("seo.helpCenter"),allAuthority:["all"],keywords:{en:"Help Center,Beginner Guide,Mining Data,Frequently Asked Questions,Announcement Center,Other",zh:"帮助中心,新手入门,常见问题,公告中心"}}},{path:"broadcast",name:"Broadcast",component:()=>Promise.resolve().then((()=>(0,r.default)(o(41300)))),meta:{title:"广播页面",description:c.default.t("seo.broadcast"),allAuthority:["back_admin"],keywords:{en:"broadcast",zh:"广播"}}},{path:"userManagement",name:"UserManagement",component:()=>Promise.resolve().then((()=>(0,r.default)(o(51993)))),meta:{title:"用户管理",description:c.default.t("seo.userManagement"),allAuthority:["back_admin"],keywords:{en:"userManagement",zh:"用户管理"}}},{path:"userDetails",name:"UserDetails",component:()=>Promise.resolve().then((()=>(0,r.default)(o(13537)))),meta:{title:"用户详情",description:c.default.t("seo.userManagement"),allAuthority:["back_admin"],keywords:{en:"userDetails",zh:"用户详情"}}},{path:"documentManagement",name:"DocumentManagement",component:()=>Promise.resolve().then((()=>(0,r.default)(o(64909)))),meta:{title:"文档管理",description:c.default.t("seo.documentManagement"),allAuthority:["back_admin"],keywords:{en:"documentManagement",zh:"文档管理"}}},{path:"addDocument",name:"AddDocument",component:()=>Promise.resolve().then((()=>(0,r.default)(o(70191)))),meta:{title:"新增文档",description:c.default.t("seo.documentManagement"),allAuthority:["back_admin"],keywords:{en:"documentManagement",zh:"文档管理"}}},{path:"modifyDocument",name:"ModifyDocument",component:()=>Promise.resolve().then((()=>(0,r.default)(o(34657)))),meta:{title:"修改文档",description:c.default.t("seo.documentManagement"),allAuthority:["back_admin"],keywords:{en:"documentManagement",zh:"文档管理"}}},{path:"rate",name:"Rate",component:()=>Promise.resolve().then((()=>(0,r.default)(o(96909)))),meta:{title:"费率页面",description:c.default.t("seo.rate"),allAuthority:["all"],keywords:{en:"Mining Pool,Rate,Mining fee rate,Profit calculation",zh:"M2Pool 矿池,费率页面,挖矿费率,收益计算"}}},{path:"allocationExplanation",name:"AllocationExplanation",component:()=>Promise.resolve().then((()=>(0,r.default)(o(23389)))),meta:{title:"分配说明页面",description:c.default.t("seo.rate"),allAuthority:["all"],keywords:{en:"Allocation,Transfer,Mining Pool,Pool allocation,Transfer instructions",zh:"分配、转账说明,矿池分配,转账说明"}}},{path:"apiFile",name:"ApiFile",component:()=>Promise.resolve().then((()=>(0,r.default)(o(95546)))),meta:{title:"API文档页面",description:c.default.t("seo.apiFile"),allAuthority:["all"],keywords:{en:"API file,authentication token,Interface call",zh:"M2Pool 矿池,API 文档,认证 token,接口调用"}}},{path:"customerService",name:"CustomerService",component:()=>Promise.resolve().then((()=>(0,r.default)(o(87188)))),meta:{title:"在线客服",description:c.default.t("seo.apiFile"),allAuthority:["customer_service","admin"],keywords:{en:"API file,authentication token,Interface call",zh:"M2Pool 矿池,API 文档,认证 token,接口调用"}}},{path:"/:lang/AccessMiningPool",name:"AccessMiningPool",component:()=>Promise.resolve().then((()=>(0,r.default)(o(25193)))),meta:{title:"接入矿池页面",description:c.default.t("seo.allocationExplanation"),allAuthority:["all"],keywords:{en:"Access to Mining Pools,Coin Access,Mining Guide",zh:"M2Pool 矿池,接入矿池,币种接入,挖矿指南"}},children:[{path:"nexaAccess",name:"NexaAccess",component:()=>Promise.resolve().then((()=>(0,r.default)(o(27048)))),meta:{title:"nexa 挖矿页面",description:c.default.t("seo.nexaAccess"),allAuthority:["all"],keepAlive:!0,requiresAuth:!1,keywords:{en:"Nexa Access,Mining Tutorial",zh:"nexa,挖矿教程,Nexa接入,Nexa Access,Mining Tutorial"}}},{path:"rxdAccess",name:"RxdAccess",component:()=>Promise.resolve().then((()=>(0,r.default)(o(11874)))),meta:{title:"rxd 挖矿页面",description:c.default.t("seo.rxdAccess"),allAuthority:["all"],keywords:{en:"rxd Access,Radiant Access,Mining Tutorial,radiant",zh:"rxd,矿池挖矿教程,Radiant接入,"}}},{path:"monaAccess",name:"MonaAccess",component:()=>Promise.resolve().then((()=>(0,r.default)(o(76177)))),meta:{title:"mona 挖矿页面",description:c.default.t("seo.monaAccess"),allAuthority:["all"],keywords:{en:"Mona Access,MONA Access,Mining Tutorial",zh:"mona,挖矿教程,mona接入,"}}},{path:"grsAccess",name:"GrsAccess",component:()=>Promise.resolve().then((()=>(0,r.default)(o(61034)))),meta:{title:"grs 挖矿页面",description:c.default.t("seo.grsAccess"),allAuthority:["all"],keywords:{en:"GRS Access,grs Access,Mining Tutorial",zh:"GRS,Grs接入,GRS挖矿教程"}}},{path:"dgbqAccess",name:"DgbqAccess",component:()=>Promise.resolve().then((()=>(0,r.default)(o(85278)))),meta:{title:"Dgbq 挖矿页面",description:c.default.t("seo.dgbAccess"),allAuthority:["all"],keywords:{en:"Dgb(qubit) Access,DGB(qubit) Access,Mining Tutorial,DGB",zh:"Dgbq,dgb(qubit)接入,dgb(qubit)挖矿教程"}}},{path:"dgboAccess",name:"DgboAccess",component:()=>Promise.resolve().then((()=>(0,r.default)(o(31863)))),meta:{title:"Dgbo 挖矿页面",description:c.default.t("seo.dgbAccess"),allAuthority:["all"],keywords:{en:"Dgb(odocrypt) Access,DGB(odocrypt) Access,Mining Tutorial,DGB",zh:"dgbo,dgb(odocrypt)接入,dgb(odocrypt)挖矿教程"}}},{path:"dgbsAccess",name:"DgbsAccess",component:()=>Promise.resolve().then((()=>(0,r.default)(o(89350)))),meta:{title:"Dgbs 挖矿页面",description:c.default.t("seo.dgbAccess"),allAuthority:["all"],keywords:{en:"Dgb(skein) Access,DGB(skein) Access,Mining Tutorial,DGB",zh:"dgbs,dgb(skein)接入,dgb(skein)挖矿教程"}}},{path:"enxAccess",name:"EnxAccess",component:()=>Promise.resolve().then((()=>(0,r.default)(o(29808)))),meta:{title:" Entropyx(enx) 挖矿页面",description:c.default.t("seo.enxAccess"),allAuthority:["all"],keywords:{en:"Entropyx(Enx), enx,ENX,Mining Tutorial",zh:"Entropyx(enx)接入,Entropyx挖矿教程"}}},{path:"alphminingPool",name:"AlphminingPool",component:()=>Promise.resolve().then((()=>(0,r.default)(o(65035)))),meta:{title:" alephium 挖矿页面",description:c.default.t("seo.alphAccess"),allAuthority:["all"],keywords:{en:"alephium(alph), Alephium,Mining Tutorial",zh:"alephium(alph)接入,alephium挖矿教程"}}}]},{path:"ServiceTerms",name:"ServiceTerms",component:()=>Promise.resolve().then((()=>(0,r.default)(o(27244)))),meta:{title:"服务条款页面",description:c.default.t("seo.ServiceTerms"),allAuthority:["all"],keywords:{en:"Terms of Service, User Rights, Rights and Obligations",zh:"M2Pool 矿池,服务条款,用户权益,权利义务"}}},{path:"submitWorkOrder",name:"SubmitWorkOrder",component:()=>Promise.resolve().then((()=>(0,r.default)(o(92879)))),meta:{title:"提交工单页面",description:c.default.t("seo.submitWorkOrder"),allAuthority:["admin","registered","customer_service","back_admin"],keywords:{en:"Mining Pool,Work Order Submission, Technical Support, Troubleshooting",zh:"M2Pool 矿池,提交工单,技术支持,问题处理"}}},{path:"workOrderRecords",name:"WorkOrderRecords",component:()=>Promise.resolve().then((()=>(0,r.default)(o(18311)))),meta:{title:"工单记录页面(用户)",description:c.default.t("seo.workOrderRecords"),allAuthority:["admin","registered","customer_service","back_admin"],keywords:{en:"User Work Order Records, Processing Status, Issue Progress",zh:"M2Pool 矿池,用户工单记录,处理状态,问题进度"}}},{path:"userWorkDetails",name:"UserWorkDetails",component:()=>Promise.resolve().then((()=>(0,r.default)(o(71995)))),meta:{title:"工单详情页面(用户)",description:c.default.t("seo.userWorkDetails"),allAuthority:["admin","registered","customer_service","back_admin"],keywords:{en:"User Work Order Details, Problem Description, Additional Submissions",zh:"M2Pool 矿池,用户工单详情,问题描述,补充提交"}}},{path:"workOrderBackend",name:"WorkOrderBackend",component:()=>Promise.resolve().then((()=>(0,r.default)(o(25225)))),meta:{title:"工单管理页面(后台)",description:"M2Pool 矿池后台工单管理页面,供 M2Pool 管理员查看和管理用户提交的工单记录,确保问题及时处理,提升用户体验。",allAuthority:["back_admin"],keywords:{en:"Back-office work order management, user work orders, timely processing",zh:"M2Pool 矿池,后台工单管理,用户工单,及时处理"}}},{path:"BKWorkDetails",name:"BKWorkDetails",component:()=>Promise.resolve().then((()=>(0,r.default)(o(86272)))),meta:{title:"工单详情页面(后台)",description:"M2Pool 矿池后台工单详情页面,管理员可在此查看提交工单的详细情况,包括提交时间、详细问题描述以及处理过程,并通过本页面对该工单进行回复处理。",allAuthority:["back_admin"],keywords:{en:"Backend Work Order Details, Problem Handling, Responding to Work Orders",zh:"M2Pool 矿池,后台工单详情,问题处理,回复工单"}}},{path:"dataDisplay",name:"DataDisplay",component:()=>Promise.resolve().then((()=>(0,r.default)(o(81475)))),meta:{title:"数据展示页面",description:"M2Pool 矿池数据展示页面",allAuthority:["all"],keywords:{en:"Mining Pool,Data Display",zh:"M2Pool 矿池,数据展示"}}},{path:"announcements",name:"Announcements",component:()=>Promise.resolve().then((()=>(0,r.default)(o(98327)))),meta:{title:"公告中心",description:c.default.t("seo.announcements")||"M2Pool 矿池公告中心,提供最新的公告、通知和重要信息,让用户及时了解矿池的最新动态和服务变更。",allAuthority:["all"],keywords:{en:"Announcement Center,Latest Announcements,Mining Pool News,Service Updates,Important Notices",zh:"M2Pool 矿池,公告中心,最新公告,矿池动态,服务更新,重要通知"}}},{path:"announcementDetails",name:"AnnouncementDetails",component:()=>Promise.resolve().then((()=>(0,r.default)(o(6062)))),meta:{title:"公告详情",allAuthority:["all"]}},{path:"commonProblem",name:"CommonProblem",component:()=>Promise.resolve().then((()=>(0,r.default)(o(64852)))),meta:{title:"常见问题",allAuthority:["all"]}},{path:"searchResult",name:"SearchResult",component:()=>Promise.resolve().then((()=>(0,r.default)(o(19821)))),meta:{title:"搜索结果",allAuthority:["all"]}},{path:"alerts",name:"Alerts",component:()=>Promise.resolve().then((()=>(0,r.default)(o(63683)))),meta:{title:"警报通知",description:c.default.t("seo.alerts"),allAuthority:["admin","registered","back_admin"],keywords:{en:"Mining Pool,Offline Alarm Setting,Mining Machine Offline",zh:"M2Pool 矿池,离线告警设置,矿机离线"}}},{path:"personalCenter",name:"PersonalCenter",component:()=>Promise.resolve().then((()=>(0,r.default)(o(66683)))),meta:{title:"个人中心页面",description:c.default.t("seo.personalCenter"),allAuthority:["admin","registered","customer_service","back_admin"],keywords:{en:"Personal Center,Mining Account,Read-Only Page Setup,Security Settings,API Key Generation",zh:"M2Pool 矿池,个人中心,挖矿账户,只读页面设置,安全设置,API密钥生成"}},children:[{path:"personalMining",name:"PersonalMining",component:()=>Promise.resolve().then((()=>(0,r.default)(o(4572)))),meta:{title:"挖矿账户设置页面",description:c.default.t("seo.personalMining"),allAuthority:["admin","registered","customer_service","back_admin"],keywords:{en:"Personal Center,Mining Account Settings,Coin Accounts",zh:"M2Pool 矿池,个人中心,挖矿账户设置,币种账户"}}},{path:"readOnly",name:"ReadOnly",component:()=>Promise.resolve().then((()=>(0,r.default)(o(7267)))),meta:{title:"只读页面设置",description:c.default.t("seo.readOnly"),allAuthority:["admin","registered","customer_service","back_admin"],keywords:{en:"Personal Center,Read-Only Page Setting,Mining Pool Sharing",zh:"M2Pool 矿池,个人中心,只读页面设置,矿池分享"}}},{path:"securitySetting",name:"SecuritySetting",component:()=>Promise.resolve().then((()=>(0,r.default)(o(81988)))),meta:{title:"安全设置页面",description:c.default.t("seo.securitySetting"),allAuthority:["admin","registered","customer_service","back_admin"],keywords:{en:"Security settings, password change",zh:"M2Pool 矿池,安全设置,密码修改"}}},{path:"personal",name:"personal",component:()=>Promise.resolve().then((()=>(0,r.default)(o(36155)))),meta:{title:"个人信息页面",description:c.default.t("seo.personal"),allAuthority:["admin","registered","customer_service","back_admin"],keywords:{en:"Personal Information, Login History",zh:"M2Pool 矿池,个人信息,登录历史"}}},{path:"miningReport",name:"MiningReport",component:()=>Promise.resolve().then((()=>(0,r.default)(o(65784)))),meta:{title:"挖矿报告页面",description:c.default.t("seo.miningReport"),allAuthority:["admin","registered","customer_service","back_admin"],keywords:{en:"Mining Report, Subscription Service",zh:"M2Pool 矿池,个人中心,挖矿报告,订阅服务"}}},{path:"personalAPI",name:"PersonalAPI",component:()=>Promise.resolve().then((()=>(0,r.default)(o(89175)))),meta:{title:"API页面",description:c.default.t("seo.personalAPI"),allAuthority:["admin","registered","customer_service","back_admin"],keywords:{en:"API Page,API Key Generation",zh:"M2Pool 矿池,个人中心,API 页面,API密钥生成"}}}]}],u=[{path:"/:lang/login",name:"Login",component:()=>Promise.resolve().then((()=>(0,r.default)(o(65418)))),meta:{title:"登录页面",description:"M2Pool 矿池登录页面",allAuthority:["all"],keywords:{en:"M2Pool Mining Pool,login page,account password",zh:"M2Pool 矿池,登录页面,账号密码,安全登录"}}},{path:"/:lang/register",name:"Register",component:()=>Promise.resolve().then((()=>(0,r.default)(o(99675)))),meta:{title:"注册页面",description:"M2Pool 矿池注册页面,新用户可在此便捷注册账号,加入 M2Pool 矿池大家庭。",allAuthority:["all"],keywords:{en:"M2Pool Mining Pool,register page,new user registration,account creation",zh:"M2Pool 矿池,注册页面,新用户注册,账号创建"}}},{path:"/:lang/simulation",name:"simulation",component:()=>Promise.resolve().then((()=>(0,r.default)(o(46763)))),meta:{title:"测试页面",description:"M2Pool 矿池测试页面,用于进行系统功能的模拟和测试,确保矿池稳定运行",allAuthority:["all"],keywords:{en:"M2Pool Mining Pool,test page,system test,stable operation",zh:"M2Pool 矿池,测试页面,系统测试,稳定运行"}}},{path:"/:lang/splitEditorDemo",name:"splitEditorDemo",component:()=>Promise.resolve().then((()=>(0,r.default)(o(73836)))),meta:{title:"分屏编辑器演示",description:"M2Pool 分屏编辑器演示页面,支持编辑、预览、分屏三种模式的富文本编辑器",allAuthority:["all"],keywords:{en:"split screen editor,rich text editor,real-time preview,WYSIWYG editor",zh:"分屏编辑器,富文本编辑器,实时预览,所见即所得编辑器"}}},{path:"/:lang/resetPassword",name:"ResetPassword",component:()=>Promise.resolve().then((()=>(0,r.default)(o(25422)))),meta:{title:"重置密码页面",description:"M2Pool 矿池重置密码页面,用户可在此修改矿池网站账号密码,保障账户安全。",allAuthority:["all"],keywords:{en:"M2Pool Mining Pool,reset password,modify password,account security",zh:"M2Pool 矿池,重置密码,修改密码,账户安全"}}},{path:"/:lang/404",component:()=>Promise.resolve().then((()=>(0,r.default)(o(91064)))),meta:{title:"404页面",description:"M2Pool 矿池 404 页面,当 URL 错误时将跳转至此页面,提示用户页面不存在。",allAuthority:["all"],keywords:{en:"M2Pool Mining Pool,404 page,page not found,error redirect",zh:"M2Pool 矿池,404 页面,页面不存在,错误跳转"}}}],m=[{path:"/:lang",component:s.default,beforeEnter:(e,t,o)=>{const n=e.params.lang,r=["zh","en"];return r.includes(n)?(c.default.locale!==n&&(c.default.locale=n,localStorage.setItem("lang",n)),o()):o(`/en${e.path}`)},children:d},{path:"/",redirect:()=>{const e=localStorage.getItem("lang")||"en";return`/${e}`}},...u,{path:"*",redirect:e=>{const t=localStorage.getItem("lang")||"en";return`/${t}/404`}}],p=new i.default({mode:"history",base:"/",routes:m,strict:!0,scrollBehavior(e,t,o){return o||{x:0,y:0,behavior:"smooth"}}});p.afterEach((()=>{a.default.nextTick((()=>{const e=document.querySelector(".el-main");e&&e.scrollTo({top:0,left:0,behavior:"smooth"}),window.scrollTo({top:0,left:0,behavior:"smooth"})}))})),p.beforeEach(((e,t,o)=>{const n=e.params.lang||localStorage.getItem("lang")||"en";let r=null;try{r=JSON.parse(localStorage.getItem("token"))}catch(i){r=null}let a=null;try{a=JSON.parse(localStorage.getItem("jurisdiction"))}catch(i){a=null}return r?a&&"back_admin"==a.roleKey?"Login"==e.name||"Register"==e.name||a&&a.roleKey&&e.meta.allAuthority.includes(a.roleKey)?o():e.path==`/${n}`?o({path:`/${n}/userManagement`}):((0,l.Message)({showClose:!0,message:"当前身份只能访问后台管理系统",type:"error"}),localStorage.setItem("activeIndex","1"),o({path:`/${n}/broadcast`})):"Login"===e.name||"Register"===e.name?o({path:`/${n}`}):e.meta.allAuthority&&("all"===e.meta.allAuthority[0]||a&&a.roleKey&&e.meta.allAuthority.includes(a.roleKey))?o():((0,l.Message)({showClose:!0,message:c.default.t("mining.jurisdiction"),type:"error"}),o({path:`/${n}/login`})):(console.log("未登录"),e.meta.allAuthority&&("all"===e.meta.allAuthority[0]||a&&a.roleKey&&e.meta.allAuthority.includes(a.roleKey))?o():((0,l.Message)({showClose:!0,message:c.default.t("mining.jurisdiction"),type:"error"}),o({path:`/${n}/login`})))}));const h=i.default.prototype.push;i.default.prototype.push=function(e){return h.call(this,e).catch((e=>e))};t["default"]=p},49704:function(e,t,o){var n=o(3999)["default"];Object.defineProperty(t,"__esModule",{value:!0}),t.encryption=void 0;var r=n(o(47522));const a="MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCwHkUfT2GAupZAL5DMnwETSywuPLIKUAR3hjhKvOls2u0YtIHlcfjhqGBfg0NEPi6Ig2GmK5KnjcdIppfNfBpSiJBEtMwM2E7WJbXBsYU0B4wB86XGW9fFQi0e8pGYvVbKvwP9MQeLnUC4xf2L+6Nw3xQZ9GAsE6GUJ4tUOSKK/QIDAQAB",i=e=>{const t=new r.default;t.setPublicKey(a);let o=t.encrypt(e);return o};t.encryption=i},54211:function(e,t,o){var n=o(3999)["default"];Object.defineProperty(t,"__esModule",{value:!0}),t["default"]=void 0,o(18111),o(7588);var r=n(o(84994));t["default"]={data(){return{componentId:this.$options.name||"unnamed-component"}},methods:{setLoading(e,t){this[e]=t,r.default.setLoading(this.componentId,e,t)},getLoading(e){return r.default.getLoading(this.componentId,e)}},mounted(){this._resetHandler=e=>{const{componentsToUpdate:t}=e.detail;t.forEach((e=>{e.componentId===this.componentId&&(this[e.stateKey]=!1)}))},window.addEventListener("reset-loading-states",this._resetHandler)},beforeDestroy(){window.removeEventListener("reset-loading-states",this._resetHandler);const e=r.default.resetComponentLoadingStates(this.componentId);e.forEach((e=>{this[e.stateKey]=!1}))}}},55129:function(e,t,o){var n=o(3999)["default"];Object.defineProperty(t,"__esModule",{value:!0}),t["default"]=void 0;var r=n(o(66848)),a=n(o(93518));r.default.use(a.default);t["default"]=new a.default.Store({state:{isLoggedIn:!1,userInfo:null},getters:{isLoggedIn:e=>e.isLoggedIn,userInfo:e=>e.userInfo},mutations:{SET_LOGIN_STATE(e,t){e.isLoggedIn=t},SET_USER_INFO(e,t){e.userInfo=t},CLEAR_USER_DATA(e){e.isLoggedIn=!1,e.userInfo=null}},actions:{async logout({commit:e}){try{return localStorage.removeItem("token"),localStorage.removeItem("userEmail"),localStorage.removeItem("jurisdiction"),e("CLEAR_USER_DATA"),r.default.prototype.$bus&&r.default.prototype.$bus.$emit("user-logged-out"),!0}catch(t){return console.error("退出登录失败:",t),!1}}},modules:{}})},82908:function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.$addStorageEvent=void 0,t.Debounce=n,t.getImageUrl=void 0,t.throttle=r;const o=function(e,t,o){if(1===e){var n=document.createEvent("StorageEvent");const e={setItem:function(e,t){localStorage.setItem(e,t),n.initStorageEvent("setItem",!1,!1,e,null,t,null,null),window.dispatchEvent(n)}};return e.setItem(t,o)}{n=document.createEvent("StorageEvent");const e={setItem:function(e,t){sessionStorage.setItem(e,t),n.initStorageEvent("setItem",!1,!1,e,null,t,null,null),window.dispatchEvent(n)}};return e.setItem(t,o)}};function n(e,t){let o=null;return function(){let n=this,r=arguments;clearTimeout(o),o=setTimeout((function(){e.apply(n,r)}),t)}}function r(e,t){let o,n,r;return function(){const a=this,i=arguments;o?(clearTimeout(n),n=setTimeout((function(){Date.now()-r>=t&&(e.apply(a,i),r=Date.now())}),Math.max(t-(Date.now()-r),0))):(e.apply(a,i),r=Date.now(),o=!0)}}t.$addStorageEvent=o;const a=e=>{const t="https://test.m2pool.com/";return e?e.startsWith("http")?e.replace("http://test.m2pool.com",t):`${t}${e.startsWith("/")?"":"/"}${e}`:""};t.getImageUrl=a},84403:function(e,t,o){Object.defineProperty(t,"__esModule",{value:!0}),t.line=t.bar=void 0;o(3574);t.line={legend:{right:100,formatter:function(e){return e}},tooltip:{trigger:"axis",textStyle:{align:"left"},animation:!1,axisPointer:{animation:!1,snap:!0,label:{precision:2},type:"cross",crossStyle:{width:.5},lineStyle:{}}},xAxis:{boundaryGap:!1,axisTick:{show:!1},axisLine:{show:!1},data:["Mon","Tue","Wed","Thu","Fri","Sat","Sun"]},yAxis:[{position:"left",type:"value"},{position:"right",splitNumber:"5",show:!0},{position:"right",splitNumber:"5",show:!1},{position:"right",splitNumber:"5",show:!1}],dataZoom:[{type:"inside",start:10,end:100,maxSpan:100,minSpan:2,animation:!1},{type:"inside",start:10,end:100}],series:[{name:"line",type:"line",smooth:!1,symbol:"circle",symbolSize:5,showSymbol:!1,itemStyle:{color:"#5721E4",borderColor:"rgba(221,220,107,0.1)",borderWidth:12},lineStyle:{color:"#5721E4",width:"2"},data:[150,230,224,218,135,147,260]}]},t.bar={tooltip:{trigger:"axis",axisPointer:{type:"shadow"}},grid:{left:"3%",right:"4%",bottom:"3%",containLabel:!0},xAxis:[{type:"category",data:["Mon","Tue","Wed","Thu","Fri","Sat","Sun"],axisTick:{alignWithLabel:!0}}],yAxis:[{type:"value",show:!0}],series:[{name:"Direct",type:"bar",barWidth:"60%",data:[10,52,200,334,390,330,220],itemStyle:{borderRadius:[100,100,0,0],color:"#7645EE"}}]}},84994:function(e,t,o){Object.defineProperty(t,"__esModule",{value:!0}),t["default"]=void 0,o(44114),o(18111),o(7588);class n{constructor(){this.loadingStates=new Map,this.setupListeners()}setupListeners(){window.addEventListener("network-retry-complete",(()=>{this.resetAllLoadingStates()}))}setLoading(e,t,o){const n=`${e}:${t}`;this.loadingStates.set(n,{value:o,timestamp:Date.now()})}getLoading(e,t){const o=`${e}:${t}`,n=this.loadingStates.get(o);return!!n&&n.value}resetAllLoadingStates(){const e=[];this.loadingStates.forEach(((t,o)=>{if(!0===t.value){const[t,n]=o.split(":");e.push({componentId:t,stateKey:n}),this.loadingStates.set(o,{value:!1,timestamp:Date.now()})}})),window.dispatchEvent(new CustomEvent("reset-loading-states",{detail:{componentsToUpdate:e}}))}resetComponentLoadingStates(e){const t=[];return this.loadingStates.forEach(((o,n)=>{if(n.startsWith(`${e}:`)&&!0===o.value){const o=n.split(":")[1];t.push({componentId:e,stateKey:o}),this.loadingStates.set(n,{value:!1,timestamp:Date.now()})}})),t}}const r=new n;t["default"]=r},98986:function(e,t,o){Object.defineProperty(t,"__esModule",{value:!0}),t["default"]=void 0,o(44114),o(18111),o(7588);t["default"]={data(){return{recoveryMethods:[],methodParams:{}}},methods:{registerRecoveryMethod(e,t){"function"!==typeof this[e]||this.recoveryMethods.includes(e)||(this.recoveryMethods.push(e),this.methodParams[e]=t,console.log(`[NetworkRecovery] 注册方法: ${e}`))},updateMethodParams(e,t){this.recoveryMethods.includes(e)&&(this.methodParams[e]=t)},handleNetworkRecovery(){console.log("[NetworkRecovery] 网络已恢复,正在刷新数据..."),this.recoveryMethods.forEach((e=>{if("function"===typeof this[e]){const t=this.methodParams[e];console.log(`[NetworkRecovery] 重新调用方法: ${e}`),this[e](t)}}))}},mounted(){window.addEventListener("network-retry-complete",this.handleNetworkRecovery)},beforeDestroy(){window.removeEventListener("network-retry-complete",this.handleNetworkRecovery)}}}}]); \ No newline at end of file diff --git a/mining-pool/test/js/app-5c551db8.6078f6e3.js.gz b/mining-pool/test/js/app-5c551db8.6078f6e3.js.gz new file mode 100644 index 0000000..b6753be Binary files /dev/null and b/mining-pool/test/js/app-5c551db8.6078f6e3.js.gz differ diff --git a/mining-pool/test/js/app-b4c4f6ec.c346427f.js b/mining-pool/test/js/app-b4c4f6ec.c346427f.js new file mode 100644 index 0000000..371e80c --- /dev/null +++ b/mining-pool/test/js/app-b4c4f6ec.c346427f.js @@ -0,0 +1 @@ +"use strict";(self["webpackChunkmining_pool"]=self["webpackChunkmining_pool"]||[]).push([[218],{2487:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"AccessMiningPoolMain"},[e("section",{staticClass:"nexaAccess"},[t.$isMobile?e("section",[e("div",{staticClass:"mainTitle",attrs:{id:"table"}},[e("span",[t._v(" "+t._s(t.$t("course.NEXAcourse")))])]),e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))])]),e("el-collapse",{model:{value:t.activeName,callback:function(e){t.activeName=e},expression:"activeName"}},[e("el-collapse-item",{attrs:{name:"1"}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",{staticClass:"coinBox"},[e("img",{staticStyle:{width:"20px"},attrs:{src:t.getImageUrl("img/nexa.png"),alt:"coin",loading:"lazy"}}),t._v("Nexa")]),e("span",[t._v("10000")])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("course.TCP")))]),e("p",[t._v(" stratum+tcp://nexa.m2pool.com:33333"),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy("stratum+tcp://nexa.m2pool.com:33333")}}},[t._v(t._s(t.$t("personal.copy")))])])]),e("div",[e("p",[t._v(t._s(t.$t("course.SSL")))]),e("p",[t._v(" stratum+ssl://nexa.m2pool.com:33335 "),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy("stratum+ssl://nexa.m2pool.com:33335")}}},[t._v(t._s(t.$t("personal.copy")))])])]),e("div",[e("p",[t._v(t._s(t.$t("course.GPU")))]),e("p",[t._v("bzminer、lolminer、Rigel、WildRig")])]),e("div",[e("p",[t._v(t._s(t.$t("course.ASIC")))]),e("p",[t._v(t._s(t.$t("course.dragonBall")))])])])],2)],1)],1),e("p",{attrs:{id:"careful"}},[t._v(" "+t._s(t.$t("course.careful"))),e("a",{staticClass:"mail",attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" (support@m2pool.com) "+t._s(t.$t("course.careful2"))+" ")]),e("section",{staticClass:"step",attrs:{id:"step1"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",[t._v("    "),e("span",[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))])]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://nexa.org/"}},[t._v("https://nexa.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText4")))]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.mxc.com/"}},[t._v("MEXC")]),t._v("、 "),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.coinex.com/zh-hans/"}},[t._v("CoinEx")]),t._v(" "+t._s(t.$t("course.bindWalletText5"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText6")))]),t._v(t._s(t.$t("course.bindWalletText7"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{staticClass:"mail",attrs:{href:"#table"}},[t._v(" "+t._s(t.$t("course.parameter5")))]),t._v(" "+t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))+" "),e("a",{staticClass:"mail",attrs:{href:"#step1"}},[t._v(" "+t._s(t.$t("course.parameter7")))]),t._v(" "+t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{staticClass:"mail",attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.miningIncome1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])]):e("section",{staticClass:"AccessMiningPool2"},[e("section",{directives:[{name:"show",rawName:"v-show",value:"nexa"==t.activeCoin,expression:"activeCoin == 'nexa'"}],staticClass:"table"},[e("div",{staticClass:"mainTitle"},[e("img",{attrs:{src:t.getImageUrl("img/nexa.png"),alt:"coin",loading:"lazy"}}),e("span",[t._v(" "+t._s(t.$t("course.NEXAcourse")))])]),e("div",{staticClass:"theServer",attrs:{id:"selectServer"}},[e("div",{staticClass:"title"},[t._v(t._s(t.$t("course.selectServer")))]),e("ul",[e("li",{staticClass:"liTitle"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.TCP")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.SSL")))])]),e("li",[e("span",{staticClass:"coin"},[e("img",{attrs:{src:t.getImageUrl("img/nexa.png"),alt:"coin",loading:"lazy"}}),e("span",[t._v("Nexa")])]),e("span",{staticClass:"coin quota"},[t._v("10000")]),e("span",{staticClass:"port"},[t._v(" stratum+tcp://nexa.m2pool.com:33333  "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+tcp://nexa.m2pool.com:33333")}}})]),e("span",{staticClass:"port"},[t._v("stratum+ssl://nexa.m2pool.com:33335   "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+ssl://nexa.m2pool.com:33335")}}})])])]),e("div",{staticClass:"title"},[t._v(t._s(t.$t("course.Adaptation")))]),e("ul",[e("li",{staticClass:"liTitle"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"}),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.GPU")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.ASIC")))])]),e("li",[e("span",{staticClass:"coin"},[e("img",{attrs:{src:t.getImageUrl("img/nexa.png"),alt:"coin",loading:"lazy"}}),e("span",[t._v("Nexa")])]),e("span",{staticClass:"coin quota"}),e("span",{staticClass:"port"},[t._v(" bzminer、lolminer、Rigel、WildRig  ")]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.dragonBall"))+"   ")])])])]),e("p",{staticClass:"careful"},[t._v(" "+t._s(t.$t("course.careful"))),e("a",{attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail"))+":support@m2pool.com ")]),t._v(t._s(t.$t("course.careful2"))+" ")]),e("section",{staticClass:"step",attrs:{id:"step2"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",[t._v("    "),e("span",[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))])]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://nexa.org/"}},[t._v("https://nexa.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText4")))]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.mxc.com/"}},[t._v("MEXC")]),t._v("、 "),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.coinex.com/zh-hans/"}},[t._v("CoinEx")]),t._v(" "+t._s(t.$t("course.bindWalletText5"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText6")))]),t._v(t._s(t.$t("course.bindWalletText7"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{attrs:{href:"#selectServer"}},[t._v(t._s(t.$t("course.parameter5")))]),t._v(t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))),e("a",{attrs:{href:"#step2"}},[t._v(t._s(t.$t("course.parameter7")))]),t._v(t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.miningIncome1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])])])])])},e.Yp=[]},4460:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(87716));e.A={mixins:[i.default]}},5136:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"AccessMiningPoolMain"},[e("section",{staticClass:"nexaAccess"},[t.$isMobile?e("section",[e("div",{staticClass:"mainTitle",attrs:{id:"table"}},[e("span",[t._v(" "+t._s(t.$t("course.RXDcourse")))])]),e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))])]),e("el-collapse",{model:{value:t.activeName,callback:function(e){t.activeName=e},expression:"activeName"}},[e("el-collapse-item",{attrs:{name:"1"}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",{staticClass:"coinBox"},[e("img",{staticStyle:{width:"20px"},attrs:{src:t.getImageUrl("img/rxd.png"),alt:"coin",loading:"lazy"}}),t._v("radiant")]),e("span",[t._v("100")])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("course.TCP")))]),e("p",[t._v(" stratum+tcp://rxd.m2pool.com:33370 "),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy(" stratum+tcp://rxd.m2pool.com:33370")}}},[t._v(t._s(t.$t("personal.copy")))])])]),e("div",[e("p",[t._v(t._s(t.$t("course.SSL")))]),e("p",[t._v(" stratum+ssl://rxd.m2pool.com:33375 "),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy("stratum+ssl://rxd.m2pool.com:33375")}}},[t._v(t._s(t.$t("personal.copy")))])])]),e("div",[e("p",[t._v(t._s(t.$t("course.GPU")))]),e("p",[t._v("lolminer")])]),e("div",[e("p",[t._v(t._s(t.$t("course.ASIC")))]),e("p",[t._v(t._s(t.$t("course.dragonBall"))+"、"+t._s(t.$t("course.RX0")))])])])],2)],1)],1),e("p",{attrs:{id:"careful"}},[t._v(" "+t._s(t.$t("course.careful"))),e("a",{staticClass:"mail",attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" (support@m2pool.com) "+t._s(t.$t("course.careful2"))+" ")]),e("section",{staticClass:"step",attrs:{id:"step1"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",[t._v("    "),e("span",[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))])]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://radiantblockchain.org/"}},[t._v("https://radiantblockchain.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText4")))]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.mxc.com/"}},[t._v("MEXC")]),t._v("、 "),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.coinex.com/zh-hans/"}},[t._v("CoinEx")]),t._v(" "+t._s(t.$t("course.bindWalletText5"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText6")))]),t._v(t._s(t.$t("course.bindWalletText7"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{staticClass:"mail",attrs:{href:"#table"}},[t._v(" "+t._s(t.$t("course.parameter5")))]),t._v(" "+t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))+" "),e("a",{staticClass:"mail",attrs:{href:"#step1"}},[t._v(" "+t._s(t.$t("course.parameter7")))]),t._v(" "+t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{staticClass:"mail",attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.rxdIncome1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])]):e("section",{staticClass:"AccessMiningPool2"},[e("section",{staticClass:"table"},[e("div",{staticClass:"mainTitle"},[e("img",{attrs:{src:t.getImageUrl("img/rxd.png"),alt:"coin",loading:"lazy"}}),e("span",[t._v(" "+t._s(t.$t("course.RXDcourse")))])]),e("div",{staticClass:"theServer"},[e("div",{staticClass:"title",attrs:{id:"Server"}},[t._v(t._s(t.$t("course.selectServer")))]),e("ul",[e("li",{staticClass:"liTitle"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.TCP")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.SSL")))])]),e("li",[e("span",{staticClass:"coin"},[e("img",{attrs:{src:t.getImageUrl("img/rxd.png"),alt:"coin",loading:"lazy"}}),e("span",[t._v("Rxd")])]),e("span",{staticClass:"coin quota"},[t._v("100")]),e("span",{staticClass:"port"},[t._v(" stratum+tcp://rxd.m2pool.com:33370  "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+tcp://rxd.m2pool.com:33370")}}})]),e("span",{staticClass:"port"},[t._v(" stratum+ssl://rxd.m2pool.com:33375   "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+ssl://rxd.m2pool.com:33375")}}})])])]),e("div",{staticClass:"title"},[t._v(t._s(t.$t("course.Adaptation")))]),e("ul",[e("li",{staticClass:"liTitle"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"}),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.GPU")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.ASIC")))])]),e("li",[e("span",{staticClass:"coin"},[e("img",{attrs:{src:t.getImageUrl("img/rxd.png"),alt:"coin",loading:"lazy"}}),e("span",[t._v("Rxd")])]),e("span",{staticClass:"coin quota"}),e("span",{staticClass:"port"},[t._v(" lolminer  ")]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.dragonBallA11"))+"  、 "+t._s(t.$t("course.RX0")))])])])]),e("p",{staticClass:"careful"},[t._v(" "+t._s(t.$t("course.careful"))),e("a",{attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail"))+":support@m2pool.com")]),t._v(t._s(t.$t("course.careful2"))+" ")]),e("section",{staticClass:"step",attrs:{id:"accountContent2"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",[t._v("    "),e("span",[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))])]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://radiantblockchain.org/"}},[t._v("https://radiantblockchain.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText4")))]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.mxc.com/"}},[t._v("MEXC")]),t._v("、 "),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.coinex.com/zh-hans/"}},[t._v("CoinEx")]),t._v(" "+t._s(t.$t("course.bindWalletText5"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText6")))]),t._v(t._s(t.$t("course.bindWalletText7"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{attrs:{href:"#Server"}},[t._v(t._s(t.$t("course.parameter5")))]),t._v(t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))),e("a",{attrs:{href:"#accountContent2"}},[t._v(t._s(t.$t("course.parameter7")))]),t._v(t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.rxdIncome1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])])])])])},e.Yp=[]},8705:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(68311));e.A={mixins:[i.default]}},9733:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(19559));e.A={mixins:[i.default],watch:{$route(t,e){this.handleRouteChange(t,e)}},methods:{handleRouteChange(t,e){t.name!==e.name&&this.$nextTick((()=>{this.$forceUpdate()}))}}}},11874:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return r}});var a=s(5136),i=s(86964),o=i.A,c=s(81656),l=(0,c.A)(o,a.XX,a.Yp,!1,null,"91fdfe0e",null),r=l.exports},16307:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"AccessMiningPoolMain"},[e("section",{staticClass:"nexaAccess"},[t.$isMobile?e("section",[e("div",{staticClass:"mainTitle",attrs:{id:"table"}},[e("span",[t._v(" "+t._s(t.$t("course.dgboCourse")))])]),e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))])]),e("el-collapse",{model:{value:t.activeName,callback:function(e){t.activeName=e},expression:"activeName"}},[e("el-collapse-item",{attrs:{name:"1"}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",{staticClass:"coinBox"},[e("img",{staticStyle:{width:"20px"},attrs:{src:t.getImageUrl("img/dgb.svg"),alt:"coin",loading:"lazy"}}),t._v("dgb(odocrypt)")]),e("span",[t._v("1")])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("course.TCP")))]),e("p",[t._v(" stratum+tcp://dgbo.m2pool.com:33340"),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy(" stratum+tcp://dgbo.m2pool.com:33340")}}},[t._v(t._s(t.$t("personal.copy")))])])]),e("div",[e("p",[t._v(t._s(t.$t("course.SSL")))]),e("p",[t._v(" stratum+ssl://dgbo.m2pool.com:33345 "),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy("stratum+ssl://dgbo.m2pool.com:33345")}}},[t._v(t._s(t.$t("personal.copy")))])])])])],2)],1)],1),e("section",{staticClass:"step",attrs:{id:"step1"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",[t._v("    "),e("span",[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))])]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.digibyte.org/"}},[t._v("https://www.digibyte.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+t._s(t.$t("course.Wallet1"))+" "),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://coinmarketcap.com/"}},[t._v("Coinmarketcap")]),t._v(", "+t._s(t.$t("course.Wallet2"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText4")))]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.binance.com/"}},[t._v("Binance")]),t._v("、 "),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.okx.com/"}},[t._v("okx")]),t._v(" "+t._s(t.$t("course.bindWalletText5"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText6")))]),t._v(t._s(t.$t("course.bindWalletText7"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{staticClass:"mail",attrs:{href:"#table"}},[t._v(" "+t._s(t.$t("course.parameter5")))]),t._v(" "+t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))+" "),e("a",{staticClass:"mail",attrs:{href:"#step1"}},[t._v(" "+t._s(t.$t("course.parameter7")))]),t._v(" "+t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{staticClass:"mail",attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.general4_1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])]):e("section",{staticClass:"AccessMiningPool2"},[e("section",{staticClass:"table"},[e("div",{staticClass:"mainTitle"},[e("img",{attrs:{src:t.getImageUrl("img/dgb.svg"),alt:"coin",loading:"lazy"}}),e("span",[t._v(" "+t._s(t.$t("course.dgboCourse")))])]),e("div",{staticClass:"theServer"},[e("div",{staticClass:"title",attrs:{id:"Server"}},[t._v(t._s(t.$t("course.selectServer")))]),e("ul",[e("li",{staticClass:"liTitle"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.TCP")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.SSL")))])]),e("li",[e("span",{staticClass:"coin"},[e("img",{attrs:{src:t.getImageUrl("img/dgb.svg"),alt:"coin",loading:"lazy"}}),e("span",[t._v("dgb(odocrypt)")])]),e("span",{staticClass:"coin quota"},[t._v("1")]),e("span",{staticClass:"port"},[t._v(" stratum+tcp://dgbo.m2pool.com:33340  "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+tcp://dgbo.m2pool.com:33340")}}})]),e("span",{staticClass:"port"},[t._v(" stratum+ssl://dgbo.m2pool.com:33345   "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+ssl://dgbo.m2pool.com:33345")}}})])])])]),e("section",{staticClass:"step",attrs:{id:"accountContent2"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))]),e("a",{attrs:{href:"https://www.digibyte.org/"}},[t._v("https://www.digibyte.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+t._s(t.$t("course.Wallet1"))+" "),e("a",{attrs:{href:"https://coinmarketcap.com/"}},[t._v("Coinmarketcap")]),t._v(", "+t._s(t.$t("course.Wallet2"))+" ")]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText4")))]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.binance.com/"}},[t._v("Binance")]),t._v("、"),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.okx.com/"}},[t._v("okx")]),t._v(" "+t._s(t.$t("course.bindWalletText5"))+" ")]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText6")))]),t._v(t._s(t.$t("course.bindWalletText7"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{attrs:{href:"#Server"}},[t._v(t._s(t.$t("course.parameter5")))]),t._v(t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))),e("a",{attrs:{href:"#accountContent2"}},[t._v(t._s(t.$t("course.parameter7")))]),t._v(t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.general4_1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])])])])])},e.Yp=[]},17279:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0;var a=s(82908);e["default"]={data(){return{activeItem:{path:"nexaAccess",value:"nexa",label:"nexa",imgUrl:`${this.$baseApi}img/nexa.png`,show:!0,name:"course.NEXAcourse",amount:1e4,tcp:"stratum+tcp://nexa.m2pool.com:33333",ssl:"stratum+ssl://nexa.m2pool.com:33335",Step1:"course.Step1",accountContent1:"course.accountContent1",accountContent2:"course.accountContent2",Step2:"course.Step2",bindWalletText1:"course.bindWalletText1",bindWalletText2:"course.bindWalletText2",walletAddr:"https://nexa.org/",bindWalletText3:"course.bindWalletText3",bindWalletText4:"course.bindWalletText4",exchangeAddr1:"https://www.mxc.com/",exchangeAddr1Label:"MEXC",exchangeAddr2:"https://www.coinex.com/zh-hans/",exchangeAddr2Label:"CoinEx",bindWalletText5:"course.bindWalletText5",bindWalletText6:"course.bindWalletText6",bindWalletText7:"course.bindWalletText7",bindWalletText8:"course.bindWalletText8",Step3:"course.Step3",miningIncome1:"course.miningIncome1",miningIncome2:"course.miningIncome2",GPU:"bzminer、lolminer、Rigel、WildRig",ASIC:"course.dragonBall",Step4:"course.Step4",parameter:"course.parameter",parameter2:"course.parameter2",parameter3:"course.parameter3",parameter4:"course.parameter4",parameter5:"course.parameter5",parameter6:"course.parameter6",parameter7:"course.parameter7",parameter8:"course.parameter8"},activeName:"1"}},mounted(){},methods:{getImageUrl(t){return(0,a.getImageUrl)(t)},clickJump(t){this.activeCoin=t.value,this.pageTitle=t.name,this.imgUrl=t.imgUrl,this.$addStorageEvent(1,"activeCoin",JSON.stringify(t.value)),console.log(this.activeCoin)},clickCopy(t){navigator.clipboard.writeText(t).then((()=>{this.$message({showClose:!0,message:this.$t("personal.copySuccessful"),type:"success"})})).catch((t=>{console.log("复制失败",t),this.$message({showClose:!0,message:this.$t("personal.copyFailed"),type:"error"})}))}}}},19559:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,s(44114),s(18111),s(20116);var a=s(1652);e["default"]={data(){return{menuList:[{path:"/AccessMiningPool",name:"course.NEXAcourse",value:"nexa",imgUrl:`${this.$baseApi}img/nexa.png`,show:!1},{path:"",name:"course.RXDcourse",value:"rxd",show:!0}],activeCoin:"nexa",params:{coin:"nexa"},activeItem:{path:"nexaAccess",value:"nexa",label:"nexa",img:s(95194),imgUrl:`${this.$baseApi}img/nexa.png`,show:!0,name:"course.NEXAcourse",amount:1e4,tcp:"stratum+tcp://nexa.m2pool.com:33333",ssl:"stratum+ssl://nexa.m2pool.com:33335",Step1:"course.Step1",accountContent1:"course.accountContent1",accountContent2:"course.accountContent2",Step2:"course.Step2",bindWalletText1:"course.bindWalletText1",bindWalletText2:"course.bindWalletText2",walletAddr:"https://nexa.org/",bindWalletText3:"course.bindWalletText3",bindWalletText4:"course.bindWalletText4",exchangeAddr1:"https://www.mxc.com/",exchangeAddr1Label:"MEXC",exchangeAddr2:"https://www.coinex.com/zh-hans/",exchangeAddr2Label:"CoinEx",bindWalletText5:"course.bindWalletText5",bindWalletText6:"course.bindWalletText6",bindWalletText7:"course.bindWalletText7",bindWalletText8:"course.bindWalletText8",Step3:"course.Step3",miningIncome1:"course.miningIncome1",miningIncome2:"course.miningIncome2",GPU:"bzminer、lolminer、Rigel、WildRig",ASIC:"course.dragonBall",Step4:"course.Step4",parameter:"course.parameter",parameter2:"course.parameter2",parameter3:"course.parameter3",parameter4:"course.parameter4",parameter5:"course.parameter5",parameter6:"course.parameter6",parameter7:"course.parameter7",parameter8:"course.parameter8"},pageTitle:"course.NEXAcourse",currencyList:[{path:"nexaAccess",value:"nexa",label:"nexa",img:s(95194),imgUrl:`${this.$baseApi}img/nexa.png`,show:!0,name:"course.NEXAcourse",amount:1e4,tcp:"stratum+tcp://nexa.m2pool.com:33333",ssl:"stratum+ssl://nexa.m2pool.com:33335",Step1:"course.Step1",accountContent1:"course.accountContent1",accountContent2:"course.accountContent2",Step2:"course.Step2",bindWalletText1:"course.bindWalletText1",bindWalletText2:"course.bindWalletText2",walletAddr:"https://nexa.org/",bindWalletText3:"course.bindWalletText3",bindWalletText4:"course.bindWalletText4",exchangeAddr1:"https://www.mxc.com/",exchangeAddr1Label:"MEXC",exchangeAddr2:"https://www.coinex.com/zh-hans/",exchangeAddr2Label:"CoinEx",bindWalletText5:"course.bindWalletText5",bindWalletText6:"course.bindWalletText6",bindWalletText7:"course.bindWalletText7",bindWalletText8:"course.bindWalletText8",Step3:"course.Step3",miningIncome1:"course.miningIncome1",miningIncome2:"course.miningIncome2",GPU:"bzminer、lolminer、Rigel、WildRig",ASIC:"course.dragonBall",Step4:"course.Step4",parameter:"course.parameter",parameter2:"course.parameter2",parameter3:"course.parameter3",parameter4:"course.parameter4",parameter5:"course.parameter5",parameter6:"course.parameter6",parameter7:"course.parameter7",parameter8:"course.parameter8"},{path:"grsAccess",value:"grs",label:"grs",imgUrl:`${this.$baseApi}img/grs.svg`,show:!0,name:"course.GRScourse",amount:1,tcp:"",ssl:""},{path:"monaAccess",value:"mona",label:"mona",imgUrl:`${this.$baseApi}img/mona.svg`,name:"course.MONAcourse",amount:1,tcp:"",show:!0,ssl:""},{path:"dgbsAccess",value:"dgbs",label:"dgb(skein)",img:s(94045),imgUrl:`${this.$baseApi}img/dgb.svg`,show:!1,name:"course.dgbsCourse",amount:1,tcp:"",ssl:""},{path:"dgbqAccess",value:"dgbq",label:"dgb(qubit)",imgUrl:`${this.$baseApi}img/dgb.svg`,show:!1,name:"course.dgbqCourse",amount:1,tcp:"",ssl:""},{path:"dgboAccess",value:"dgbo",label:"dgb(odocrypt)",imgUrl:`${this.$baseApi}img/dgb.svg`,show:!1,name:"course.dgboCourse",amount:1,tcp:"",ssl:""},{path:"rxdAccess",value:"rxd",label:"radiant",img:s(94158),imgUrl:`${this.$baseApi}img/rxd.png`,show:!0,name:"course.RXDcourse",amount:100,tcp:"stratum+tcp://rxd.m2pool.com:33370",ssl:"stratum+ssl://rxd.m2pool.com:33375",Step1:"course.Step1",accountContent1:"course.accountContent1",accountContent2:"course.accountContent2",Step2:"course.Step2",bindWalletText1:"course.bindWalletText1",bindWalletText2:"course.bindWalletText2",walletAddr:"https://radiantblockchain.org/",bindWalletText3:"course.bindWalletText3",bindWalletText4:"course.bindWalletText4",exchangeAddr1:"https://www.mxc.com/",exchangeAddr1Label:"MEXC",exchangeAddr2:"https://www.coinex.com/zh-hans/",exchangeAddr2Label:"CoinEx",bindWalletText5:"course.bindWalletText5",bindWalletText6:"course.bindWalletText6",bindWalletText7:"course.bindWalletText7",bindWalletText8:"course.bindWalletText8",Step3:"course.Step3",miningIncome1:"course.rxdIncome1",miningIncome2:"course.miningIncome2",GPU:"lolminer",ASIC:"course.dragonBallA11Move",Step4:"course.Step4",parameter:"course.parameter",parameter2:"course.parameter2",parameter3:"course.parameter3",parameter4:"course.parameter4",parameter5:"course.parameter5",parameter6:"course.parameter6",parameter7:"course.parameter7",parameter8:"course.parameter8"},{path:"enxAccess",value:"enx",label:"Entropyx(enx)",imgUrl:`${this.$baseApi}img/enx.svg`,show:!0,name:"course.ENXcourse",amount:5e3,tcp:"",ssl:""},{path:"alphminingPool",value:"alph",label:"Alephium(alph)",imgUrl:`${this.$baseApi}img/alph.svg`,show:!0,name:"course.alphCourse",amount:1,tcp:"",ssl:""}],currencyPath:`${this.$baseApi}img/nexa.png`,openAPI:!0,imgUrl:`${this.$baseApi}img/nexa.png`,activeName:"1",currentRoutePath:"",listParams:{type:"1",lang:this.$i18n.locale,pageNum:1,pageSize:50},tutorialLoading:!1,navList:[],DetailsParams:{id:"",lang:this.$i18n.locale},info:"",activeId:""}},watch:{$route:{immediate:!0,handler(t){this.currentRoutePath=t.path.split("/")[3]}}},mounted(){let t=this.$route.params&&this.$route.params.coin,e=localStorage.getItem("activeCoin")?JSON.parse(localStorage.getItem("activeCoin")):null,s=t||e||this.currencyList[0]&&this.currencyList[0].value;this.activeCoin=s,this.activeItem=this.currencyList.find((t=>t.value===s))||this.currencyList[0],this.params.coin=s,t&&localStorage.setItem("activeCoin",JSON.stringify(t)),this.fetchAllList(this.listParams)},methods:{async fetchAllList(t){this.setLoading("tutorialLoading",!0);const e=await(0,a.documentsList)(t);if(console.log(e,"res"),e&&200===e.code){this.navList=e.rows;const t=this.navList.find((t=>t.coin==this.params.coin));t&&t.coin?(this.DetailsParams.id=t.id,this.DetailsParams.coin=t.coin,this.clickJump(t)):this.$route.query.id?this.DetailsParams.id=this.$route.query.id:this.DetailsParams.id=e.rows[0].id,this.DetailsParams.id&&this.fetchProblemDetails(this.DetailsParams)}},async fetchProblemDetails(t){this.setLoading("tutorialLoading",!0);const e=await(0,a.findDataInfo)(t);e&&200===e.code&&(this.info=e.data.content||"",this.activeId=e.data.id),this.setLoading("tutorialLoading",!1)},toggleDropdown(t){if(!t)return;const e=t.currentTarget,s=e.querySelector(".dropdown"),a=e.querySelector(".arrow");s&&(s.classList.toggle("show"),a?.classList.toggle("up"))},changeMenuName(t,e){if(console.log("走移动端了?"),!t)return;if(!e.path)return;t.stopPropagation(),this.currentRoutePath=e.path,this.activeItem=e,this.activeCoin=e.value,this.$addStorageEvent(1,"activeItem",JSON.stringify(e));const s=document.getElementById("menu1");if(!s)return;const a=s.querySelector(".dropdown"),i=s.querySelector(".arrow");a?.classList.remove("show"),i?.classList.remove("up"),this.$addStorageEvent(1,"activeItemCoin",JSON.stringify(e)),this.$addStorageEvent(1,"activeCoin",JSON.stringify(e.value)),e.path&&this.$router.push(`/${this.$i18n.locale}/AccessMiningPool/${e.path}`)},clickJump(t){this.DetailsParams.id=t.id,this.DetailsParams.coin=t.coin,this.activeCoin=t.coin,localStorage.setItem("activeCoin",JSON.stringify(this.activeCoin)),this.fetchProblemDetails(this.DetailsParams)},clickCopy(t){navigator.clipboard.writeText(t).then((()=>{this.$message({showClose:!0,message:this.$t("personal.copySuccessful"),type:"success"})})).catch((t=>{console.log("复制失败",t),this.$message({showClose:!0,message:this.$t("personal.copyFailed"),type:"error"})}))},clickCurrency(t){this.currencyPath=t.imgUrl,this.params.coin=t.value,this.activeItem=t},handelCurrencyLabel(t){let e=this.currencyList.find((e=>e.value==t));return e?e.label:""}}}},24727:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0;var a=s(82908);e["default"]={data(){return{activeItem:{path:"nexaAccess",value:"nexa",label:"nexa",imgUrl:`${this.$baseApi}img/nexa.png`,show:!0,name:"course.NEXAcourse",amount:1e4,tcp:"stratum+tcp://nexa.m2pool.com:33333",ssl:"stratum+ssl://nexa.m2pool.com:33335",Step1:"course.Step1",accountContent1:"course.accountContent1",accountContent2:"course.accountContent2",Step2:"course.Step2",bindWalletText1:"course.bindWalletText1",bindWalletText2:"course.bindWalletText2",walletAddr:"https://nexa.org/",bindWalletText3:"course.bindWalletText3",bindWalletText4:"course.bindWalletText4",exchangeAddr1:"https://www.mxc.com/",exchangeAddr1Label:"MEXC",exchangeAddr2:"https://www.coinex.com/zh-hans/",exchangeAddr2Label:"CoinEx",bindWalletText5:"course.bindWalletText5",bindWalletText6:"course.bindWalletText6",bindWalletText7:"course.bindWalletText7",bindWalletText8:"course.bindWalletText8",Step3:"course.Step3",miningIncome1:"course.miningIncome1",miningIncome2:"course.miningIncome2",GPU:"bzminer、lolminer、Rigel、WildRig",ASIC:"course.dragonBall",Step4:"course.Step4",parameter:"course.parameter",parameter2:"course.parameter2",parameter3:"course.parameter3",parameter4:"course.parameter4",parameter5:"course.parameter5",parameter6:"course.parameter6",parameter7:"course.parameter7",parameter8:"course.parameter8"},activeName:"1"}},mounted(){},methods:{getImageUrl(t){return(0,a.getImageUrl)(t)},clickJump(t){this.activeCoin=t.value,this.pageTitle=t.name,this.imgUrl=t.imgUrl,this.$addStorageEvent(1,"activeCoin",JSON.stringify(t.value)),console.log(this.activeCoin)},clickCopy(t){navigator.clipboard.writeText(t).then((()=>{this.$message({showClose:!0,message:this.$t("personal.copySuccessful"),type:"success"})})).catch((t=>{console.log("复制失败",t),this.$message({showClose:!0,message:this.$t("personal.copyFailed"),type:"error"})}))}}}},25193:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return r}});var a=s(39601),i=s(9733),o=i.A,c=s(81656),l=(0,c.A)(o,a.XX,a.Yp,!1,null,"5dadff3c",null),r=l.exports},27048:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return r}});var a=s(2487),i=s(66496),o=i.A,c=s(81656),l=(0,c.A)(o,a.XX,a.Yp,!1,null,"089a61bb",null),r=l.exports},29808:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return r}});var a=s(79894),i=s(88125),o=i.A,c=s(81656),l=(0,c.A)(o,a.XX,a.Yp,!1,null,"415158a6",null),r=l.exports},30140:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"AccessMiningPoolMain"},[e("section",{staticClass:"nexaAccess"},[t.$isMobile?e("section",[e("div",{staticClass:"mainTitle",attrs:{id:"table"}},[e("span",[t._v(" "+t._s(t.$t("course.GRScourse")))])]),e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))])]),e("el-collapse",{model:{value:t.activeName,callback:function(e){t.activeName=e},expression:"activeName"}},[e("el-collapse-item",{attrs:{name:"1"}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",{staticClass:"coinBox"},[e("img",{staticStyle:{width:"20px"},attrs:{src:t.getImageUrl("img/grs.svg"),alt:"coin",loading:"lazy"}}),t._v("Grs")]),e("span",[t._v("1")])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("course.TCP")))]),e("p",[t._v(" stratum+tcp://grs.m2pool.com:33310"),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy("stratum+tcp://grs.m2pool.com:33310")}}},[t._v(t._s(t.$t("personal.copy")))])])]),e("div",[e("p",[t._v(t._s(t.$t("course.SSL")))]),e("p",[t._v(" stratum+ssl://grs.m2pool.com:33315 "),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy("stratum+ssl://grs.m2pool.com:33315")}}},[t._v(t._s(t.$t("personal.copy")))])])])])],2)],1)],1),e("section",{staticClass:"step",attrs:{id:"step1"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",[t._v("    "),e("span",[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))])]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.groestlcoin.org/"}},[t._v("https://www.groestlcoin.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+t._s(t.$t("course.Wallet1"))+" "),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://coinmarketcap.com/"}},[t._v("Coinmarketcap")]),t._v(", "+t._s(t.$t("course.Wallet2"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText4")))]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.coinex.com/zh-hans/"}},[t._v("CoinEx")]),t._v(" "+t._s(t.$t("course.bindWalletText5"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText6")))]),t._v(t._s(t.$t("course.bindWalletText7"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{staticClass:"mail",attrs:{href:"#table"}},[t._v(" "+t._s(t.$t("course.parameter5")))]),t._v(" "+t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))+" "),e("a",{staticClass:"mail",attrs:{href:"#step1"}},[t._v(" "+t._s(t.$t("course.parameter7")))]),t._v(" "+t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{staticClass:"mail",attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.general4_1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])]):e("section",{staticClass:"AccessMiningPool2"},[e("section",{staticClass:"table"},[e("div",{staticClass:"mainTitle"},[e("img",{attrs:{src:t.getImageUrl("img/grs.svg"),alt:"coin",loading:"lazy"}}),e("span",[t._v(" "+t._s(t.$t("course.GRScourse")))])]),e("div",{staticClass:"theServer"},[e("div",{staticClass:"title",attrs:{id:"Server"}},[t._v(t._s(t.$t("course.selectServer")))]),e("ul",[e("li",{staticClass:"liTitle"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.TCP")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.SSL")))])]),e("li",[e("span",{staticClass:"coin"},[e("img",{attrs:{src:t.getImageUrl("img/grs.svg"),alt:"coin",loading:"lazy"}}),e("span",[t._v("Grs")])]),e("span",{staticClass:"coin quota"},[t._v("1")]),e("span",{staticClass:"port"},[t._v(" stratum+tcp://grs.m2pool.com:33310  "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+tcp://grs.m2pool.com:33310")}}})]),e("span",{staticClass:"port"},[t._v(" stratum+ssl://grs.m2pool.com:33315   "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+ssl://grs.m2pool.com:33315")}}})])])])]),e("section",{staticClass:"step",attrs:{id:"accountContent2"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))]),e("a",{attrs:{href:"https://www.groestlcoin.org/"}},[t._v("https://www.groestlcoin.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+t._s(t.$t("course.Wallet1"))+" "),e("a",{attrs:{href:"https://coinmarketcap.com/"}},[t._v("Coinmarketcap")]),t._v(", "+t._s(t.$t("course.Wallet2"))+" ")]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText4")))]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.coinex.com/zh-hans/"}},[t._v("CoinEx")]),t._v(" "+t._s(t.$t("course.bindWalletText5"))+" ")]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText6")))]),t._v(t._s(t.$t("course.bindWalletText7"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{attrs:{href:"#Server"}},[t._v(t._s(t.$t("course.parameter5")))]),t._v(t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))),e("a",{attrs:{href:"#accountContent2"}},[t._v(t._s(t.$t("course.parameter7")))]),t._v(t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.general4_1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])])])])])},e.Yp=[]},30926:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.totalDetailsLoading,expression:"totalDetailsLoading"}],staticClass:"main"},[t.$isMobile?e("section",{staticClass:"MobileMain"},[e("h4",[t._v(t._s(t.$t("work.WKDetails")))]),e("div",{staticClass:"contentMobile"},[e("el-row",[e("el-col",{attrs:{xs:24,sm:10,md:10,lg:12,xl:12}},[e("p",[e("span",{staticClass:"orderTitle"},[t._v(" "+t._s(t.$t("work.WorkID"))+":")]),e("span",{staticClass:"orderContent"},[t._v(t._s(t.ticketDetails.id))])])]),e("el-col",{attrs:{xs:24,sm:10,md:10,lg:10,xl:10}},[e("p",[e("span",{staticClass:"orderTitle"},[t._v(t._s(t.$t("work.mailbox"))+":")]),e("span",{staticClass:"orderContent"},[t._v(t._s(t.ticketDetails.email))])])])],1),e("el-row",[e("el-col",{attrs:{xs:24,sm:10,md:10,lg:10,xl:10}},[e("p",[e("span",{staticClass:"orderTitle"},[t._v(" "+t._s(t.$t("work.status"))+":")]),e("span",{staticClass:"orderContent"},[t._v(t._s(t.$t(t.handelStatus2(t.ticketDetails.status))))])])])],1),e("el-row",{staticStyle:{"margin-top":"30px !important"}},[e("el-col",[e("h5",[t._v(t._s(t.$t("work.describe"))+":")]),e("div",{staticStyle:{border:"1px solid rgba(0, 0, 0, 0.1)",padding:"20px 10px","word-wrap":"break-word","overflow-wrap":"break-word","max-height":"200px","margin-top":"18px","overflow-y":"auto","border-radius":"5px"}},[t._v(" "+t._s(t.ticketDetails.desc)+" ")])])],1),e("h5",{staticStyle:{"margin-top":"30px"}},[t._v(t._s(t.$t("work.record"))+":")]),e("div",{staticClass:"submitContent"},[e("el-row",{staticStyle:{margin:"0"}},t._l(t.recordList,(function(s){return e("div",{key:s.time,staticStyle:{"margin-top":"20px"}},[e("div",{staticClass:"submitTitle"},[e("div",{staticClass:"userName"},[t._v(t._s(s.name))]),e("div",{staticClass:"time"},[t._v(" "+t._s(t.handelTime(s.time)))])]),e("div",{attrs:{id:"contentBox"}},[t._v(" "+t._s(s.content)+" ")]),e("span",{directives:[{name:"show",rawName:"v-show",value:s.files,expression:"item.files"}],staticClass:"downloadBox",on:{click:function(e){return t.handelDownload(s.files)}}},[t._v(t._s(t.$t("work.downloadFile")))])])})),0)],1),"10"!==t.ticketDetails.status?e("section",{staticStyle:{"margin-top":"30px"}},[e("div",[e("el-row",[e("el-col",[e("h5",{staticStyle:{"margin-bottom":"18px"}},[t._v(t._s(t.$t("work.ReplyContent"))+":")]),e("el-input",{attrs:{type:"textarea",placeholder:t.$t("work.input"),resize:"none",maxlength:"250","show-word-limit":"",autosize:{minRows:2,maxRows:6}},model:{value:t.replyParams.respon,callback:function(e){t.$set(t.replyParams,"respon",e)},expression:"replyParams.respon"}})],1)],1),e("el-form",[e("el-form-item",{staticStyle:{width:"100%"}},[e("div",{staticStyle:{width:"100%"}},[t._v(t._s(t.$t("work.enclosure")))]),e("div",{staticClass:"prompt"},[t._v(" "+t._s(t.$t("work.fileType"))+":jpg, jpeg, png, mp3, aif, aiff, wav, wma, mp4, avi, rmvb ")]),e("el-upload",{ref:"upload",staticClass:"upload-demo",attrs:{drag:"",action:"",multiple:"",limit:t.fileLimit,"on-exceed":t.handleExceed,"on-remove":t.handleRemove,"file-list":t.fileList,"on-change":t.handelChange,"show-file-list":"","auto-upload":!1}},[e("i",{staticClass:"el-icon-upload"}),e("div",{staticClass:"el-upload__text"},[t._v(" "+t._s(t.$t("work.fileCharacters"))),e("em",[t._v(" "+t._s(t.$t("work.fileCharacters2")))])])])],1),e("el-button",{staticClass:"elBtn",staticStyle:{"border-radius":"20px"},attrs:{type:"plain"},on:{click:t.handelResubmit}},[t._v(" "+t._s(t.$t("work.ReplyWork")))]),e("el-button",{staticClass:"elBtn",staticStyle:{"border-radius":"20px"},attrs:{type:"plain"},on:{click:t.handelEnd}},[t._v(" "+t._s(t.$t("work.endWork")))])],1)],1)]):t._e(),e("el-dialog",{attrs:{title:t.$t("work.Tips"),visible:t.closeDialogVisible,width:"70%","before-close":t.handleClose},on:{"update:visible":function(e){t.closeDialogVisible=e}}},[e("span",[t._v(t._s(t.$t("work.confirmClose")))]),e("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[e("el-button",{staticStyle:{"border-radius":"20px"},on:{click:function(e){t.closeDialogVisible=!1}}},[t._v(t._s(t.$t("work.cancel")))]),e("el-button",{staticClass:"elBtn",staticStyle:{border:"none","border-radius":"20px"},attrs:{type:"primary",loading:t.totalDetailsLoading},on:{click:t.confirmCols}},[t._v(t._s(t.$t("work.confirm")))])],1)])],1)]):e("div",{staticClass:"content"},[e("el-row",{attrs:{type:"flex",justify:"end"}},[e("el-col",{staticClass:"orderDetails"},[e("h3",[t._v(t._s(t.$t("work.WKDetails")))]),e("el-row",[e("el-col",{attrs:{span:12}},[e("p",[e("span",{staticClass:"orderTitle"},[t._v(" "+t._s(t.$t("work.WorkID"))+":")]),e("span",{staticClass:"orderContent"},[t._v(t._s(t.ticketDetails.id))])])]),e("el-col",{attrs:{span:12}},[e("p",[e("span",{staticClass:"orderTitle"},[t._v(t._s(t.$t("work.mailbox"))+":")]),e("span",{staticClass:"orderContent"},[t._v(t._s(t.ticketDetails.email))])])])],1),e("el-row",[e("el-col",{attrs:{span:12}},[e("p",[e("span",{staticClass:"orderTitle"},[t._v(" "+t._s(t.$t("work.status"))+":")]),e("span",{staticClass:"orderContent"},[t._v(t._s(t.$t(t.handelStatus2(t.ticketDetails.status))))])])])],1)],1)],1),e("el-row",{staticStyle:{"margin-top":"30px"}},[e("el-col",[e("h4",[t._v(t._s(t.$t("work.describe"))+":")]),e("p",{staticStyle:{border:"1px solid rgba(0, 0, 0, 0.1)",padding:"20px 10px","word-wrap":"break-word","overflow-wrap":"break-word","max-height":"200px","margin-top":"18px","overflow-y":"auto","border-radius":"5px"}},[t._v(" "+t._s(t.ticketDetails.desc)+" ")])])],1),e("h4",[t._v(t._s(t.$t("work.record"))+":")]),e("div",{staticClass:"submitContent"},[e("el-row",{staticStyle:{margin:"0"}},t._l(t.recordList,(function(s){return e("div",{key:s.time,staticStyle:{"margin-top":"20px"}},[e("div",{staticClass:"submitTitle"},[e("span",[t._v(t._s(t.$t("work.user1"))+":"+t._s(s.name))]),e("span",[t._v(" "+t._s(t.$t("work.time4"))+":"+t._s(t.handelTime(s.time)))])]),e("div",{staticClass:"contentBox"},[e("span",{staticStyle:{display:"inline-block",width:"100%","word-wrap":"break-word","overflow-wrap":"break-word","max-height":"200px","overflow-y":"auto"}},[t._v(t._s(s.content))])]),e("span",{directives:[{name:"show",rawName:"v-show",value:s.files,expression:"item.files"}],staticClass:"downloadBox",on:{click:function(e){return t.handelDownload(s.files)}}},[t._v(t._s(t.$t("work.downloadFile")))])])})),0)],1),"10"!==t.ticketDetails.status?e("section",[e("div",[e("el-row",[e("el-col",[e("h4",{staticStyle:{"margin-bottom":"18px"}},[t._v(t._s(t.$t("work.ReplyContent"))+":")]),e("el-input",{attrs:{type:"textarea",placeholder:t.$t("work.input"),resize:"none",maxlength:"250","show-word-limit":"",autosize:{minRows:2,maxRows:6}},model:{value:t.replyParams.respon,callback:function(e){t.$set(t.replyParams,"respon",e)},expression:"replyParams.respon"}})],1)],1),e("el-form",[e("el-form-item",{staticStyle:{width:"50%"}},[e("div",{staticStyle:{width:"100%"}},[t._v(t._s(t.$t("work.enclosure")))]),e("p",{staticClass:"prompt"},[t._v(" "+t._s(t.$t("work.fileType"))+":jpg, jpeg, png, mp3, aif, aiff, wav, wma, mp4, avi, rmvb ")]),e("el-upload",{ref:"upload",staticClass:"upload-demo",attrs:{drag:"",action:"",multiple:"",limit:t.fileLimit,"on-exceed":t.handleExceed,"on-remove":t.handleRemove,"file-list":t.fileList,"on-change":t.handelChange,"show-file-list":"","auto-upload":!1}},[e("i",{staticClass:"el-icon-upload"}),e("div",{staticClass:"el-upload__text"},[t._v(" "+t._s(t.$t("work.fileCharacters"))),e("em",[t._v(" "+t._s(t.$t("work.fileCharacters2")))])])])],1),e("el-button",{staticClass:"elBtn",staticStyle:{width:"200px","border-radius":"20px"},attrs:{type:"plain"},on:{click:t.handelResubmit}},[t._v(" "+t._s(t.$t("work.ReplyWork")))]),e("el-button",{staticClass:"elBtn",staticStyle:{width:"200px","border-radius":"20px"},attrs:{type:"plain"},on:{click:t.handelEnd}},[t._v(" "+t._s(t.$t("work.endWork")))])],1)],1)]):t._e(),e("el-dialog",{attrs:{title:t.$t("work.Tips"),visible:t.closeDialogVisible,width:"30%","before-close":t.handleClose},on:{"update:visible":function(e){t.closeDialogVisible=e}}},[e("span",[t._v(t._s(t.$t("work.confirmClose")))]),e("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[e("el-button",{staticStyle:{"border-radius":"20px"},on:{click:function(e){t.closeDialogVisible=!1}}},[t._v(t._s(t.$t("work.cancel")))]),e("el-button",{staticClass:"elBtn",staticStyle:{border:"none","border-radius":"20px"},attrs:{type:"primary",loading:t.totalDetailsLoading},on:{click:t.confirmCols}},[t._v(t._s(t.$t("work.confirm")))])],1)])],1)])},e.Yp=[]},31863:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return r}});var a=s(16307),i=s(43232),o=i.A,c=s(81656),l=(0,c.A)(o,a.XX,a.Yp,!1,null,"340a7930",null),r=l.exports},35221:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,s(44114),s(18111),s(22489),s(20116),s(13579);a(s(86425));var i=a(s(35720)),o=s(11503);e["default"]={data(){return{imgSrc:"https://studio.glassnode.com/images/crypto-icons/btc.png",navLabel:"Bitcoin (BTC)",userName:"LX",from:{title:"",kinds:"",description:"",radio:""},kindsList:[{value:"购买咨询",label:"购买咨询"},{value:"财务咨询",label:"财务咨询"},{value:"网页问题",label:"网页问题"},{value:"账户问题",label:"账户问题"},{value:"移动端问题",label:"移动端问题"},{value:"消息订阅",label:"消息订阅"},{value:"指标数据问题",label:"指标数据问题"},{value:"其他",label:"其他"}],params:[],input:1,tableData:[{num:1,time:"2022-09-01 16:00",problem:"账户问题",questionTitle:"账户不能登录",state:"已解决"}],textarea:"我是提交内容",textarea1:"我是回复内容",textarea2:"",replyInput:!0,ticketDetails:{id:"",type:"",title:"",userName:"",desc:"",responName:"",respon:"",submitTime:"",status:"",fileIds:"",files:"",responTime:""},fileList:[],fileType:["jpg","jpeg","png","mp3","aif","aiff","wav","wma","mp4","avi","rmvb"],fileSize:20,fileLimit:3,headers:{"Content-Type":"multipart/form-data"},FormDatas:null,filesId:[],paramsDownload:{id:""},paramsResponTicket:{id:"",files:"",respon:""},paramsAuditTicket:{id:"",msg:""},paramsSubmitAuditTicket:{id:""},identity:{},detailsID:"",downloadUrl:"",workOrderId:"",recordList:[],replyParams:{id:"",respon:"",files:""},totalDetailsLoading:!1,faultList:[],statusList:[{value:1,label:"work.pendingProcessing"},{value:2,label:"work.processed"},{value:10,label:"work.completeWK"}],typeList:[],machineCoding:"",warrantyList:[],closeDialogVisible:!1,lang:"zh"}},mounted(){this.lang=this.$i18n.locale,this.workOrderId=localStorage.getItem("totalID"),this.fetchTicketDetails({id:this.workOrderId}),this.registerRecoveryMethod("fetchTicketDetails",{id:this.workOrderId})},methods:{async fetchBKendTicket(t){this.setLoading("totalDetailsLoading",!0);const e=await(0,o.getBKendTicket)(t);e&&200==e.code&&(this.$message({message:this.$t("work.WKend"),type:"success"}),this.$router.push(`/${this.lang}/workOrderBackend`)),this.setLoading("totalDetailsLoading",!1)},async fetchReply(t){this.setLoading("totalDetailsLoading",!0);const e=await(0,o.getReply)(t);if(e&&200==e.code){this.$message({message:this.$t("work.submitted"),type:"success"});for(const t in this.replyParams)this.replyParams[t]="";this.fileList=[],this.fetchTicketDetails({id:this.workOrderId})}this.setLoading("totalDetailsLoading",!1)},handelType2(t){if(t)return this.typeList.find((e=>e.name==t)).label},handelStatus2(t){try{if(t){let e=this.statusList.find((e=>e.value==t)).label;return this.$t(e)}}catch{return""}},handelPhenomenon(t){if(t)return this.faultList.find((e=>e.id==t)).label},async fetchTicketDetails(t){this.setLoading("totalDetailsLoading",!0);const{data:e}=await(0,o.getDetails)(t);this.recordList=e.list,this.ticketDetails=e,this.setLoading("totalDetailsLoading",!1)},downloadExcel(t){this.downloadUrl=` ${i.default.defaults.baseURL}pool/ticket/downloadFile?ids=${t}`;let e=document.createElement("a");e.href=this.downloadUrl,e.click()},handelChange(t,e){const s=t.name.slice(t.name.lastIndexOf(".")+1).toLowerCase(),a=this.fileType.includes(s),i=t.size/1024/1024<=this.fileSize;if(!a)return this.$message.error(`${this.$t("work.notSupported")}${s}`),this.fileList=this.fileList.filter((e=>e.name!=t.name)),!1;if(!i)return this.fileList=this.fileList.filter((e=>e.name!=t.name)),this.$message.error(`${this.$t("work.notSupported2")} ${this.fileSize} MB.`),!1;let o=this.fileList.some((e=>e.name==t.name));if(o)return this.$message.warning(this.$t("work.notSupported3")),this.$refs.upload.handleRemove(t),!1;this.fileList.push(t.raw)},handleRemove(t,e){let s=this.fileList.indexOf(t);-1!==s&&this.fileList.splice(s,1)},handleExceed(){this.$message({type:"warning",message:this.$t("work.notSupported4")})},handelDownload(t){if(t){this.downloadUrl=` ${i.default.defaults.baseURL}pool/ticket/downloadFile?ids=${t}`;let e=document.createElement("a");e.href=this.downloadUrl,e.click()}},handleSuccess(){},handelTime(t){if(t&&t.includes("T"))return`${t.split("T")[0]} ${t.split("T")[1].split(".")[0]}`},handelResubmit(){if(!this.replyParams.respon)return console.log(),void this.$message({message:this.$t("work.replyContent2"),type:"error",customClass:"messageClass"});this.replyParams.id=this.ticketDetails.id,this.fetchReply(this.replyParams)},handelEnd(){this.closeDialogVisible=!0},handleClose(){this.closeDialogVisible=!1},confirmCols(){this.fetchBKendTicket({id:this.ticketDetails.id})}}}},39219:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"AccessMiningPoolMain"},[e("section",{staticClass:"nexaAccess"},[t.$isMobile?e("section",[e("div",{staticClass:"mainTitle",attrs:{id:"table"}},[e("span",[t._v(" "+t._s(t.$t("course.dgbqCourse")))])]),e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))])]),e("el-collapse",{model:{value:t.activeName,callback:function(e){t.activeName=e},expression:"activeName"}},[e("el-collapse-item",{attrs:{name:"1"}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",{staticClass:"coinBox"},[e("img",{staticStyle:{width:"20px"},attrs:{src:t.getImageUrl("img/dgb.svg"),alt:"coin",loading:"lazy"}}),t._v("Dgb(qubit)")]),e("span",[t._v("1")])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("course.TCP")))]),e("p",[t._v(" stratum+tcp://dgbq.m2pool.com:33360"),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy("stratum+tcp://dgbq.m2pool.com:33360")}}},[t._v(t._s(t.$t("personal.copy")))])])]),e("div",[e("p",[t._v(t._s(t.$t("course.SSL")))]),e("p",[t._v(" stratum+ssl://dgbq.m2pool.com:33365 "),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy(" stratum+ssl://dgbq.m2pool.com:33365 ")}}},[t._v(t._s(t.$t("personal.copy")))])])])])],2)],1)],1),e("section",{staticClass:"step",attrs:{id:"step1"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",[t._v("    "),e("span",[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))])]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.digibyte.org/"}},[t._v("https://www.digibyte.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+t._s(t.$t("course.Wallet1"))+" "),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://coinmarketcap.com/"}},[t._v("Coinmarketcap")]),t._v(", "+t._s(t.$t("course.Wallet2"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText4")))]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.binance.com/"}},[t._v("Binance")]),t._v("、 "),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.okx.com/"}},[t._v("okx")]),t._v(" "+t._s(t.$t("course.bindWalletText5"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText6")))]),t._v(t._s(t.$t("course.bindWalletText7"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{staticClass:"mail",attrs:{href:"#table"}},[t._v(" "+t._s(t.$t("course.parameter5")))]),t._v(" "+t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))+" "),e("a",{staticClass:"mail",attrs:{href:"#step1"}},[t._v(" "+t._s(t.$t("course.parameter7")))]),t._v(" "+t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{staticClass:"mail",attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.general4_1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])]):e("section",{staticClass:"AccessMiningPool2"},[e("section",{staticClass:"table"},[e("div",{staticClass:"mainTitle"},[e("img",{attrs:{src:t.getImageUrl("img/dgb.svg"),alt:"coin",loading:"lazy"}}),e("span",[t._v(" "+t._s(t.$t("course.dgbqCourse")))])]),e("div",{staticClass:"theServer"},[e("div",{staticClass:"title",attrs:{id:"Server"}},[t._v(t._s(t.$t("course.selectServer")))]),e("ul",[e("li",{staticClass:"liTitle"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.TCP")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.SSL")))])]),e("li",[e("span",{staticClass:"coin"},[e("img",{attrs:{src:t.getImageUrl("img/dgb.svg"),alt:"coin",loading:"lazy"}}),e("span",[t._v("Dgb(qubit)")])]),e("span",{staticClass:"coin quota"},[t._v("1")]),e("span",{staticClass:"port"},[t._v(" stratum+tcp://dgbq.m2pool.com:33360  "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+tcp://dgbq.m2pool.com:33360")}}})]),e("span",{staticClass:"port"},[t._v(" stratum+ssl://dgbq.m2pool.com:33365   "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+ssl://dgbq.m2pool.com:33365")}}})])])])]),e("section",{staticClass:"step",attrs:{id:"accountContent2"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))]),e("a",{attrs:{href:"https://www.digibyte.org/"}},[t._v("https://www.digibyte.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+t._s(t.$t("course.Wallet1"))+" "),e("a",{attrs:{href:"https://coinmarketcap.com/"}},[t._v("Coinmarketcap")]),t._v(", "+t._s(t.$t("course.Wallet2"))+" ")]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText4")))]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.binance.com/"}},[t._v("Binance")]),t._v("、"),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.okx.com/"}},[t._v("okx")]),t._v(" "+t._s(t.$t("course.bindWalletText5"))+" ")]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText6")))]),t._v(t._s(t.$t("course.bindWalletText7"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{attrs:{href:"#Server"}},[t._v(t._s(t.$t("course.parameter5")))]),t._v(t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))),e("a",{attrs:{href:"#accountContent2"}},[t._v(t._s(t.$t("course.parameter7")))]),t._v(t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.general4_1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])])])])])},e.Yp=[]},39601:function(t,e,s){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.tutorialLoading,expression:"tutorialLoading"}],staticClass:"AccessMiningPoolMain"},[t.openAPI?e("section",{staticClass:"openAPI"},[t.$isMobile?e("section",[e("div",{staticClass:"currencySelect"},[e("div",{staticClass:"nav"},[e("div",{staticClass:"nav-item",attrs:{id:"menu1"},on:{click:function(e){return e.stopPropagation(),t.toggleDropdown.apply(null,arguments)}}},[e("img",{staticClass:"itemImg",attrs:{src:t.activeItem.imgUrl||"",alt:t.activeItem.label||""}}),e("span",{staticStyle:{"text-transform":"capitalize"}},[t._v(" "+t._s(t.activeItem.label||""))]),e("i",{staticClass:"arrow"}),e("div",{staticClass:"dropdown"},t._l(t.currencyList,(function(s){return e("div",{key:s.value,staticClass:"option",class:{optionActive:t.$route.path.includes(s.path)},on:{click:function(e){return e.stopPropagation(),t.changeMenuName(e,s)}}},[e("img",{staticClass:"dropdownCoin",attrs:{src:s.imgUrl,alt:s.value}}),e("div",{staticClass:"dropdownText"},[t._v(t._s(s.label))])])})),0)])])]),e("section",[e("keep-alive",[e("router-view",{key:t.$route.fullPath})],1)],1)]):e("section",{staticClass:"AccessMiningPool"},[e("section",{staticClass:"menu"},[e("ul",t._l(t.navList,(function(s){return e("li",{key:s.id,class:{active:t.activeCoin==s.coin},on:{click:function(e){return t.clickJump(s)}}},[e("img",{attrs:{src:s.titleUrl,alt:"coin"}}),e("span",[t._v(" "+t._s(s.title)+" ")])])})),0)]),e("section",{staticClass:"tutorialContent"},[e("section",{staticClass:"rightContent"},[t.tutorialLoading?e("div",{staticClass:"loading-container"},[e("span",{staticClass:"loading-text"},[t._v(t._s(t.$t("home.loadingContent")||"正在加载内容..."))])]):t.info&&t.info.trim()?e("div",{staticClass:"dynamic-content",domProps:{innerHTML:t._s(t.info)}}):e("div",{staticClass:"no-content"},[e("p",[t._v(t._s(t.$t("home.noContent")||"暂无内容"))])])])])])]):e("section",[e("div",{staticClass:"notOpen"},[e("p",[t._v(t._s(t.$t("course.notOpenCurrency")))]),t._m(0)])])])},e.Yp=[function(){var t=this,e=t._self._c;return e("div",{staticClass:"imgBox"},[e("img",{attrs:{src:s(53263),alt:"Not open",loading:"lazy"}})])}]},41645:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(17279));e.A={mixins:[i.default]}},42440:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0;var a=s(82908);e["default"]={data(){return{activeName:"1"}},mounted(){},methods:{getImageUrl(t){return(0,a.getImageUrl)(t)},clickJump(t){this.activeCoin=t.value,this.pageTitle=t.name,this.imgUrl=t.imgUrl,this.$addStorageEvent(1,"activeCoin",JSON.stringify(t.value)),console.log(this.activeCoin)},clickCopy(t){navigator.clipboard.writeText(t).then((()=>{this.$message({showClose:!0,message:this.$t("personal.copySuccessful"),type:"success"})})).catch((t=>{console.log("复制失败",t),this.$message({showClose:!0,message:this.$t("personal.copyFailed"),type:"error"})}))}}}},43232:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(42440));e.A={mixins:[i.default]}},50736:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,s(18111),s(20116);var a=s(82908);e["default"]={data(){return{activeName:"1",activeItem:{path:"nexaAccess",value:"nexa",label:"nexa",imgUrl:`${this.$baseApi}img/nexa.png`,show:!0,name:"course.NEXAcourse",amount:1e4,tcp:"stratum+tcp://nexa.m2pool.com:33333",ssl:"stratum+ssl://nexa.m2pool.com:33335",Step1:"course.Step1",accountContent1:"course.accountContent1",accountContent2:"course.accountContent2",Step2:"course.Step2",bindWalletText1:"course.bindWalletText1",bindWalletText2:"course.bindWalletText2",walletAddr:"https://nexa.org/",bindWalletText3:"course.bindWalletText3",bindWalletText4:"course.bindWalletText4",exchangeAddr1:"https://www.mxc.com/",exchangeAddr1Label:"MEXC",exchangeAddr2:"https://www.coinex.com/zh-hans/",exchangeAddr2Label:"CoinEx",bindWalletText5:"course.bindWalletText5",bindWalletText6:"course.bindWalletText6",bindWalletText7:"course.bindWalletText7",bindWalletText8:"course.bindWalletText8",Step3:"course.Step3",miningIncome1:"course.miningIncome1",miningIncome2:"course.miningIncome2",GPU:"bzminer、lolminer、Rigel、WildRig",ASIC:"course.dragonBall",Step4:"course.Step4",parameter:"course.parameter",parameter2:"course.parameter2",parameter3:"course.parameter3",parameter4:"course.parameter4",parameter5:"course.parameter5",parameter6:"course.parameter6",parameter7:"course.parameter7",parameter8:"course.parameter8"}}},mounted(){this.$route.query.coin&&(this.activeCoin=this.$route.query.coin,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((t=>t.value==this.params.coin)));let t=localStorage.getItem("activeCoin");if(this.activeCoin=JSON.parse(t),window.addEventListener("setItem",(()=>{let t=localStorage.getItem("activeCoin");this.activeCoin=JSON.parse(t)})),this.activeCoin)if("nexa"==this.activeCoin||"rxd"==this.activeCoin){this.openAPI=!0;try{this.pageTitle=this.currencyList.find((t=>t.value==this.activeCoin)).name,this.imgUrl=this.currencyList.find((t=>t.value==this.activeCoin)).imgUrl}catch(e){console.log(e)}}else this.openAPI=!1;else 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=!0},methods:{getImageUrl(t){return(0,a.getImageUrl)(t)},clickJump(t){this.activeCoin=t.value,this.pageTitle=t.name,this.imgUrl=t.imgUrl,this.$addStorageEvent(1,"activeCoin",JSON.stringify(t.value)),console.log(this.activeCoin)},clickCopy(t){navigator.clipboard.writeText(t).then((()=>{this.$message({showClose:!0,message:this.$t("personal.copySuccessful"),type:"success"})})).catch((t=>{console.log("复制失败",t),this.$message({showClose:!0,message:this.$t("personal.copyFailed"),type:"error"})}))},clickCurrency(t){this.currencyPath=t.imgUrl,this.params.coin=t.value,this.activeItem=t},handelCurrencyLabel(t){let e=this.currencyList.find((e=>e.value==t));return e?e.label:""}}}},55603:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;a(s(86425));var i=a(s(35221));e.A={mixins:[i.default],mounted(){},methods:{}}},57196:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"AccessMiningPoolMain"},[e("section",{staticClass:"nexaAccess"},[t.$isMobile?e("section",[e("div",{staticClass:"mainTitle",attrs:{id:"table"}},[e("span",[t._v(" "+t._s(t.$t("course.dgbsCourse")))])]),e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))])]),e("el-collapse",{model:{value:t.activeName,callback:function(e){t.activeName=e},expression:"activeName"}},[e("el-collapse-item",{attrs:{name:"1"}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",{staticClass:"coinBox"},[e("img",{staticStyle:{width:"20px"},attrs:{src:t.getImageUrl("img/dgb.svg"),alt:"coin",loading:"lazy"}}),t._v("Dgb(skein)")]),e("span",[t._v("1")])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("course.TCP")))]),e("p",[t._v(" stratum+tcp://dgbs.m2pool.com:33350"),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy("stratum+tcp://dgbs.m2pool.com:33350")}}},[t._v(t._s(t.$t("personal.copy")))])])]),e("div",[e("p",[t._v(t._s(t.$t("course.SSL")))]),e("p",[t._v(" stratum+ssl://dgbs.m2pool.com:33355 "),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy("stratum+ssl://dgbs.m2pool.com:33355")}}},[t._v(t._s(t.$t("personal.copy")))])])])])],2)],1)],1),e("section",{staticClass:"step",attrs:{id:"step1"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",[t._v("    "),e("span",[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))])]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.digibyte.org/"}},[t._v("https://www.digibyte.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+t._s(t.$t("course.Wallet1"))+" "),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://coinmarketcap.com/"}},[t._v("Coinmarketcap")]),t._v(", "+t._s(t.$t("course.Wallet2"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText4")))]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.binance.com/"}},[t._v("Binance")]),t._v("、 "),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.okx.com/"}},[t._v("okx")]),t._v(" "+t._s(t.$t("course.bindWalletText5"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText6")))]),t._v(t._s(t.$t("course.bindWalletText7"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{staticClass:"mail",attrs:{href:"#table"}},[t._v(" "+t._s(t.$t("course.parameter5")))]),t._v(" "+t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))+" "),e("a",{staticClass:"mail",attrs:{href:"#step1"}},[t._v(" "+t._s(t.$t("course.parameter7")))]),t._v(" "+t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{staticClass:"mail",attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.general4_1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])]):e("section",{staticClass:"AccessMiningPool2"},[e("section",{staticClass:"table"},[e("div",{staticClass:"mainTitle"},[e("img",{attrs:{src:t.getImageUrl("img/dgb.svg"),alt:"coin",loading:"lazy"}}),e("span",[t._v(" "+t._s(t.$t("course.dgbsCourse")))])]),e("div",{staticClass:"theServer"},[e("div",{staticClass:"title",attrs:{id:"Server"}},[t._v(t._s(t.$t("course.selectServer")))]),e("ul",[e("li",{staticClass:"liTitle"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.TCP")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.SSL")))])]),e("li",[e("span",{staticClass:"coin"},[e("img",{attrs:{src:t.getImageUrl("img/dgb.svg"),alt:"coin",loading:"lazy"}}),e("span",[t._v("Dgb(skein)")])]),e("span",{staticClass:"coin quota"},[t._v("1")]),e("span",{staticClass:"port"},[t._v(" stratum+tcp://dgbs.m2pool.com:33350  "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+tcp://dgbs.m2pool.com:33350")}}})]),e("span",{staticClass:"port"},[t._v(" stratum+ssl://dgbs.m2pool.com:33355   "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+ssl://dgbs.m2pool.com:33355")}}})])])])]),e("section",{staticClass:"step",attrs:{id:"accountContent2"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))]),e("a",{attrs:{href:"https://www.digibyte.org/"}},[t._v("https://www.digibyte.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+t._s(t.$t("course.Wallet1"))+" "),e("a",{attrs:{href:"https://coinmarketcap.com/"}},[t._v("Coinmarketcap")]),t._v(", "+t._s(t.$t("course.Wallet2"))+" ")]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText4")))]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.binance.com/"}},[t._v("Binance")]),t._v("、"),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.okx.com/"}},[t._v("okx")]),t._v(" "+t._s(t.$t("course.bindWalletText5"))+" ")]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText6")))]),t._v(t._s(t.$t("course.bindWalletText7"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{attrs:{href:"#Server"}},[t._v(t._s(t.$t("course.parameter5")))]),t._v(t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))),e("a",{attrs:{href:"#accountContent2"}},[t._v(t._s(t.$t("course.parameter7")))]),t._v(t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.general4_1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])])])])])},e.Yp=[]},58204:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(61256));e.A={mixins:[i.default]}},61034:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return r}});var a=s(30140),i=s(58204),o=i.A,c=s(81656),l=(0,c.A)(o,a.XX,a.Yp,!1,null,"708f8544",null),r=l.exports},61256:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0;var a=s(82908);e["default"]={data(){return{activeItem:{path:"nexaAccess",value:"nexa",label:"nexa",imgUrl:`${this.$baseApi}img/nexa.png`,show:!0,name:"course.NEXAcourse",amount:1e4,tcp:"stratum+tcp://nexa.m2pool.com:33333",ssl:"stratum+ssl://nexa.m2pool.com:33335",Step1:"course.Step1",accountContent1:"course.accountContent1",accountContent2:"course.accountContent2",Step2:"course.Step2",bindWalletText1:"course.bindWalletText1",bindWalletText2:"course.bindWalletText2",walletAddr:"https://nexa.org/",bindWalletText3:"course.bindWalletText3",bindWalletText4:"course.bindWalletText4",exchangeAddr1:"https://www.mxc.com/",exchangeAddr1Label:"MEXC",exchangeAddr2:"https://www.coinex.com/zh-hans/",exchangeAddr2Label:"CoinEx",bindWalletText5:"course.bindWalletText5",bindWalletText6:"course.bindWalletText6",bindWalletText7:"course.bindWalletText7",bindWalletText8:"course.bindWalletText8",Step3:"course.Step3",miningIncome1:"course.miningIncome1",miningIncome2:"course.miningIncome2",GPU:"bzminer、lolminer、Rigel、WildRig",ASIC:"course.dragonBall",Step4:"course.Step4",parameter:"course.parameter",parameter2:"course.parameter2",parameter3:"course.parameter3",parameter4:"course.parameter4",parameter5:"course.parameter5",parameter6:"course.parameter6",parameter7:"course.parameter7",parameter8:"course.parameter8"},activeName:"1"}},mounted(){},methods:{getImageUrl(t){return(0,a.getImageUrl)(t)},clickJump(t){this.activeCoin=t.value,this.pageTitle=t.name,this.imgUrl=t.imgUrl,this.$addStorageEvent(1,"activeCoin",JSON.stringify(t.value)),console.log(this.activeCoin)},clickCopy(t){navigator.clipboard.writeText(t).then((()=>{this.$message({showClose:!0,message:this.$t("personal.copySuccessful"),type:"success"})})).catch((t=>{console.log("复制失败",t),this.$message({showClose:!0,message:this.$t("personal.copyFailed"),type:"error"})}))}}}},65035:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return r}});var a=s(98394),i=s(8705),o=i.A,c=s(81656),l=(0,c.A)(o,a.XX,a.Yp,!1,null,"0779e610",null),r=l.exports},65484:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"AccessMiningPoolMain"},[e("section",{staticClass:"nexaAccess"},[t.$isMobile?e("section",[e("div",{staticClass:"mainTitle",attrs:{id:"table"}},[e("span",[t._v(" "+t._s(t.$t("course.MONAcourse")))])]),e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))])]),e("el-collapse",{model:{value:t.activeName,callback:function(e){t.activeName=e},expression:"activeName"}},[e("el-collapse-item",{attrs:{name:"1"}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",{staticClass:"coinBox"},[e("img",{staticStyle:{width:"20px"},attrs:{src:t.getImageUrl("img/mona.svg"),alt:"coin",loading:"lazy"}}),t._v("Mona")]),e("span",[t._v("1")])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("course.TCP")))]),e("p",[t._v(" stratum+tcp://mona.m2pool.com:33320"),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy("stratum+tcp://mona.m2pool.com:33320")}}},[t._v(t._s(t.$t("personal.copy")))])])]),e("div",[e("p",[t._v(t._s(t.$t("course.SSL")))]),e("p",[t._v(" stratum+ssl://mona.m2pool.com:33325 "),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy("stratum+ssl://mona.m2pool.com:33325")}}},[t._v(t._s(t.$t("personal.copy")))])])])])],2)],1)],1),e("section",{staticClass:"step",attrs:{id:"step1"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",[t._v("    "),e("span",[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))])]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://monacoin.org/"}},[t._v("https://monacoin.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+t._s(t.$t("course.Wallet1"))+" "),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://coinmarketcap.com/"}},[t._v("Coinmarketcap")]),t._v(", "+t._s(t.$t("course.Wallet2"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText4")))]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.coinex.com/zh-hans/"}},[t._v("CoinEx")]),t._v(" "+t._s(t.$t("course.bindWalletText5"))+" ")]),e("p",[t._v("    "),e("span",[t._v(t._s(t.$t("course.bindWalletText6")))]),t._v(t._s(t.$t("course.bindWalletText7"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{staticClass:"mail",attrs:{href:"#table"}},[t._v(" "+t._s(t.$t("course.parameter5")))]),t._v(" "+t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))+" "),e("a",{staticClass:"mail",attrs:{href:"#step1"}},[t._v(" "+t._s(t.$t("course.parameter7")))]),t._v(" "+t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{staticClass:"mail",attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.general4_1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])]):e("section",{staticClass:"AccessMiningPool2"},[e("section",{staticClass:"table"},[e("div",{staticClass:"mainTitle"},[e("img",{attrs:{src:t.getImageUrl("img/mona.svg"),alt:"coin",loading:"lazy"}}),e("span",[t._v(" "+t._s(t.$t("course.MONAcourse")))])]),e("div",{staticClass:"theServer"},[e("div",{staticClass:"title",attrs:{id:"Server"}},[t._v(t._s(t.$t("course.selectServer")))]),e("ul",[e("li",{staticClass:"liTitle"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.TCP")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.SSL")))])]),e("li",[e("span",{staticClass:"coin"},[e("img",{attrs:{src:t.getImageUrl("img/mona.svg"),alt:"coin",loading:"lazy"}}),e("span",[t._v("Mona")])]),e("span",{staticClass:"coin quota"},[t._v("1")]),e("span",{staticClass:"port"},[t._v(" stratum+tcp://mona.m2pool.com:33320  "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+tcp://mona.m2pool.com:33320")}}})]),e("span",{staticClass:"port"},[t._v(" stratum+ssl://mona.m2pool.com:33325   "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+ssl://mona.m2pool.com:33325")}}})])])])]),e("section",{staticClass:"step",attrs:{id:"accountContent2"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))]),e("a",{attrs:{href:"https://monacoin.org/"}},[t._v("https://monacoin.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+t._s(t.$t("course.Wallet1"))+" "),e("a",{attrs:{href:"https://coinmarketcap.com/"}},[t._v("Coinmarketcap")]),t._v(", "+t._s(t.$t("course.Wallet2"))+" ")]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText4")))]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://www.coinex.com/zh-hans/"}},[t._v("CoinEx")]),t._v(" "+t._s(t.$t("course.bindWalletText5"))+" ")]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText6")))]),t._v(t._s(t.$t("course.bindWalletText7"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{attrs:{href:"#Server"}},[t._v(t._s(t.$t("course.parameter5")))]),t._v(t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))),e("a",{attrs:{href:"#accountContent2"}},[t._v(t._s(t.$t("course.parameter7")))]),t._v(t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.general4_1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])])])])])},e.Yp=[]},66496:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(94368));e.A={mixins:[i.default]}},68311:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0;var a=s(82908);e["default"]={data(){return{activeItem:{path:"nexaAccess",value:"nexa",label:"nexa",imgUrl:`${this.$baseApi}img/nexa.png`,show:!0,name:"course.NEXAcourse",amount:1e4,tcp:"stratum+tcp://nexa.m2pool.com:33333",ssl:"stratum+ssl://nexa.m2pool.com:33335",Step1:"course.Step1",accountContent1:"course.accountContent1",accountContent2:"course.accountContent2",Step2:"course.Step2",bindWalletText1:"course.bindWalletText1",bindWalletText2:"course.bindWalletText2",walletAddr:"https://nexa.org/",bindWalletText3:"course.bindWalletText3",bindWalletText4:"course.bindWalletText4",exchangeAddr1:"https://www.mxc.com/",exchangeAddr1Label:"MEXC",exchangeAddr2:"https://www.coinex.com/zh-hans/",exchangeAddr2Label:"CoinEx",bindWalletText5:"course.bindWalletText5",bindWalletText6:"course.bindWalletText6",bindWalletText7:"course.bindWalletText7",bindWalletText8:"course.bindWalletText8",Step3:"course.Step3",miningIncome1:"course.miningIncome1",miningIncome2:"course.miningIncome2",GPU:"bzminer、lolminer、Rigel、WildRig",ASIC:"course.dragonBall",Step4:"course.Step4",parameter:"course.parameter",parameter2:"course.parameter2",parameter3:"course.parameter3",parameter4:"course.parameter4",parameter5:"course.parameter5",parameter6:"course.parameter6",parameter7:"course.parameter7",parameter8:"course.parameter8"},activeName:"1"}},mounted(){},methods:{getImageUrl(t){return(0,a.getImageUrl)(t)},clickJump(t){this.activeCoin=t.value,this.pageTitle=t.name,this.imgUrl=t.imgUrl,this.$addStorageEvent(1,"activeCoin",JSON.stringify(t.value)),console.log(this.activeCoin)},clickCopy(t){navigator.clipboard.writeText(t).then((()=>{this.$message({showClose:!0,message:this.$t("personal.copySuccessful"),type:"success"})})).catch((t=>{console.log("复制失败",t),this.$message({showClose:!0,message:this.$t("personal.copyFailed"),type:"error"})}))}}}},70874:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0;var a=s(82908);e["default"]={data(){return{activeName:"1"}},mounted(){},methods:{getImageUrl(t){return(0,a.getImageUrl)(t)},clickJump(t){this.activeCoin=t.value,this.pageTitle=t.name,this.imgUrl=t.imgUrl,this.$addStorageEvent(1,"activeCoin",JSON.stringify(t.value)),console.log(this.activeCoin)},clickCopy(t){navigator.clipboard.writeText(t).then((()=>{this.$message({showClose:!0,message:this.$t("personal.copySuccessful"),type:"success"})})).catch((t=>{console.log("复制失败",t),this.$message({showClose:!0,message:this.$t("personal.copyFailed"),type:"error"})}))}}}},76177:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return r}});var a=s(65484),i=s(41645),o=i.A,c=s(81656),l=(0,c.A)(o,a.XX,a.Yp,!1,null,"ea469a34",null),r=l.exports},79894:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"AccessMiningPoolMain"},[e("section",{staticClass:"nexaAccess"},[t.$isMobile?e("section",[e("div",{staticClass:"mainTitle",attrs:{id:"table"}},[e("span",[t._v(" "+t._s(t.$t("course.ENXcourse")))])]),e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))])]),e("el-collapse",{model:{value:t.activeName,callback:function(e){t.activeName=e},expression:"activeName"}},[e("el-collapse-item",{attrs:{name:"1"}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",{staticClass:"coinBox"},[e("img",{staticStyle:{width:"20px"},attrs:{src:t.getImageUrl("img/enx.svg"),alt:"coin",loading:"lazy"}}),t._v("Entropyx(enx)")]),e("span",[t._v("5000")])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("course.TCP")))]),e("p",[t._v(" stratum+tcp://enx.m2pool.com:33380"),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy("stratum+tcp://enx.m2pool.com:33380")}}},[t._v(t._s(t.$t("personal.copy")))])])]),e("div",[e("p",[t._v(t._s(t.$t("course.SSL")))]),e("p",[t._v(" stratum+ssl://enx.m2pool.com:33385 "),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy("stratum+ssl://enx.m2pool.com:33385")}}},[t._v(t._s(t.$t("personal.copy")))])])])])],2)],1)],1),e("section",{staticClass:"step",attrs:{id:"step1"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",[t._v("    "),e("span",[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))])]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://entropyx.org/"}},[t._v("https://entropyx.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{staticClass:"mail",attrs:{href:"#table"}},[t._v(" "+t._s(t.$t("course.parameter5")))]),t._v(" "+t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))+" "),e("a",{staticClass:"mail",attrs:{href:"#step1"}},[t._v(" "+t._s(t.$t("course.parameter7")))]),t._v(" "+t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{staticClass:"mail",attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.general4_1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])]):e("section",{staticClass:"AccessMiningPool2"},[e("section",{staticClass:"table"},[e("div",{staticClass:"mainTitle"},[e("img",{attrs:{src:t.getImageUrl("img/enx.svg"),alt:"coin",loading:"lazy"}}),e("span",[t._v(" "+t._s(t.$t("course.ENXcourse")))])]),e("div",{staticClass:"theServer"},[e("div",{staticClass:"title",attrs:{id:"Server"}},[t._v(t._s(t.$t("course.selectServer")))]),e("ul",[e("li",{staticClass:"liTitle"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.TCP")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.SSL")))])]),e("li",[e("span",{staticClass:"coin"},[e("img",{attrs:{src:t.getImageUrl("img/enx.svg"),alt:"coin",loading:"lazy"}}),e("span",[t._v("Entropyx(enx)")])]),e("span",{staticClass:"coin quota"},[t._v("5000 ")]),e("span",{staticClass:"port"},[t._v(" stratum+tcp://enx.m2pool.com:33380  "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+tcp://enx.m2pool.com:33380")}}})]),e("span",{staticClass:"port"},[t._v(" stratum+ssl://enx.m2pool.com:33385   "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+ssl://enx.m2pool.com:33385")}}})])])])]),e("section",{staticClass:"step",attrs:{id:"accountContent2"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))]),e("a",{attrs:{href:"https://entropyx.org/"}},[t._v("https://entropyx.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{attrs:{href:"#Server"}},[t._v(t._s(t.$t("course.parameter5")))]),t._v(t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))),e("a",{attrs:{href:"#accountContent2"}},[t._v(t._s(t.$t("course.parameter7")))]),t._v(t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.general4_1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])])])])])},e.Yp=[]},82066:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(70874));e.A={mixins:[i.default]}},85278:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return r}});var a=s(39219),i=s(82066),o=i.A,c=s(81656),l=(0,c.A)(o,a.XX,a.Yp,!1,null,"76355f4e",null),r=l.exports},86272:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return r}});var a=s(30926),i=s(55603),o=i.A,c=s(81656),l=(0,c.A)(o,a.XX,a.Yp,!1,null,"10e0c45a",null),r=l.exports},86964:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(50736));e.A={mixins:[i.default]}},87716:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0;var a=s(82908);e["default"]={data(){return{activeItem:{path:"nexaAccess",value:"nexa",label:"nexa",imgUrl:`${this.$baseApi}img/nexa.png`,show:!0,name:"course.NEXAcourse",amount:1e4,tcp:"stratum+tcp://nexa.m2pool.com:33333",ssl:"stratum+ssl://nexa.m2pool.com:33335",Step1:"course.Step1",accountContent1:"course.accountContent1",accountContent2:"course.accountContent2",Step2:"course.Step2",bindWalletText1:"course.bindWalletText1",bindWalletText2:"course.bindWalletText2",walletAddr:"https://nexa.org/",bindWalletText3:"course.bindWalletText3",bindWalletText4:"course.bindWalletText4",exchangeAddr1:"https://www.mxc.com/",exchangeAddr1Label:"MEXC",exchangeAddr2:"https://www.coinex.com/zh-hans/",exchangeAddr2Label:"CoinEx",bindWalletText5:"course.bindWalletText5",bindWalletText6:"course.bindWalletText6",bindWalletText7:"course.bindWalletText7",bindWalletText8:"course.bindWalletText8",Step3:"course.Step3",miningIncome1:"course.miningIncome1",miningIncome2:"course.miningIncome2",GPU:"bzminer、lolminer、Rigel、WildRig",ASIC:"course.dragonBall",Step4:"course.Step4",parameter:"course.parameter",parameter2:"course.parameter2",parameter3:"course.parameter3",parameter4:"course.parameter4",parameter5:"course.parameter5",parameter6:"course.parameter6",parameter7:"course.parameter7",parameter8:"course.parameter8"},activeName:"1"}},mounted(){},methods:{getImageUrl(t){return(0,a.getImageUrl)(t)},clickJump(t){this.activeCoin=t.value,this.pageTitle=t.name,this.imgUrl=t.imgUrl,this.$addStorageEvent(1,"activeCoin",JSON.stringify(t.value)),console.log(this.activeCoin)},clickCopy(t){navigator.clipboard.writeText(t).then((()=>{this.$message({showClose:!0,message:this.$t("personal.copySuccessful"),type:"success"})})).catch((t=>{console.log("复制失败",t),this.$message({showClose:!0,message:this.$t("personal.copyFailed"),type:"error"})}))}}}},88125:function(t,e,s){var a=s(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var i=a(s(24727));e.A={mixins:[i.default]}},89350:function(t,e,s){s.r(e),s.d(e,{__esModule:function(){return i.B},default:function(){return r}});var a=s(57196),i=s(4460),o=i.A,c=s(81656),l=(0,c.A)(o,a.XX,a.Yp,!1,null,"5b6cc974",null),r=l.exports},94368:function(t,e,s){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,s(18111),s(20116);var a=s(82908);e["default"]={data(){return{activeCoin:"nexa",activeItem:{path:"nexaAccess",value:"nexa",label:"nexa",imgUrl:`${this.$baseApi}img/nexa.png`,show:!0,name:"course.NEXAcourse",amount:1e4,tcp:"stratum+tcp://nexa.m2pool.com:33333",ssl:"stratum+ssl://nexa.m2pool.com:33335",Step1:"course.Step1",accountContent1:"course.accountContent1",accountContent2:"course.accountContent2",Step2:"course.Step2",bindWalletText1:"course.bindWalletText1",bindWalletText2:"course.bindWalletText2",walletAddr:"https://nexa.org/",bindWalletText3:"course.bindWalletText3",bindWalletText4:"course.bindWalletText4",exchangeAddr1:"https://www.mxc.com/",exchangeAddr1Label:"MEXC",exchangeAddr2:"https://www.coinex.com/zh-hans/",exchangeAddr2Label:"CoinEx",bindWalletText5:"course.bindWalletText5",bindWalletText6:"course.bindWalletText6",bindWalletText7:"course.bindWalletText7",bindWalletText8:"course.bindWalletText8",Step3:"course.Step3",miningIncome1:"course.miningIncome1",miningIncome2:"course.miningIncome2",GPU:"bzminer、lolminer、Rigel、WildRig",ASIC:"course.dragonBall",Step4:"course.Step4",parameter:"course.parameter",parameter2:"course.parameter2",parameter3:"course.parameter3",parameter4:"course.parameter4",parameter5:"course.parameter5",parameter6:"course.parameter6",parameter7:"course.parameter7",parameter8:"course.parameter8"},activeName:"1"}},mounted(){},methods:{getImageUrl(t){return(0,a.getImageUrl)(t)},clickJump(t){this.activeCoin=t.value,this.pageTitle=t.name,this.imgUrl=t.imgUrl,this.$addStorageEvent(1,"activeCoin",JSON.stringify(t.value)),console.log(this.activeCoin)},clickCopy(t){navigator.clipboard.writeText(t).then((()=>{this.$message({showClose:!0,message:this.$t("personal.copySuccessful"),type:"success"})})).catch((t=>{console.log("复制失败",t),this.$message({showClose:!0,message:this.$t("personal.copyFailed"),type:"error"})}))},clickCurrency(t){this.currencyPath=t.imgUrl,this.params.coin=t.value,this.activeItem=t},handelCurrencyLabel(t){let e=this.currencyList.find((e=>e.value==t));return e?e.label:""}}}},98394:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"AccessMiningPoolMain"},[e("section",{staticClass:"nexaAccess"},[t.$isMobile?e("section",[e("div",{staticClass:"mainTitle",attrs:{id:"table"}},[e("span",[t._v(" "+t._s(t.$t("course.alphCourse")))])]),e("div",{staticClass:"tableBox"},[e("div",{staticClass:"table-title"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))])]),e("el-collapse",{model:{value:t.activeName,callback:function(e){t.activeName=e},expression:"activeName"}},[e("el-collapse-item",{attrs:{name:"1"}},[e("template",{slot:"title"},[e("div",{staticClass:"collapseTitle"},[e("span",{staticClass:"coinBox"},[e("img",{staticStyle:{width:"20px"},attrs:{src:t.getImageUrl("img/alph.svg"),alt:"coin",loading:"lazy"}}),t._v("Alephium(alph)")]),e("span",[t._v("1")])])]),e("div",{staticClass:"belowTable"},[e("div",[e("p",[t._v(t._s(t.$t("course.TCP")))]),e("p",[t._v(" stratum+tcp://alph.m2pool.com:33390"),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy("stratum+tcp://alph.m2pool.com:33390")}}},[t._v(t._s(t.$t("personal.copy")))])])]),e("div",[e("p",[t._v(t._s(t.$t("course.SSL")))]),e("p",[t._v(" stratum+ssl://alph.m2pool.com:33395 "),e("span",{staticClass:"copy",on:{click:function(e){return t.clickCopy("stratum+ssl://alph.m2pool.com:33395")}}},[t._v(t._s(t.$t("personal.copy")))])])])])],2)],1)],1),e("section",{staticClass:"step",attrs:{id:"step1"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",[t._v("    "),e("span",[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))])]),e("a",{staticStyle:{color:"blueviolet"},attrs:{href:"https://docs.alephium.org/"}},[t._v("https://docs.alephium.org/")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{staticClass:"mail",attrs:{href:"#table"}},[t._v(" "+t._s(t.$t("course.parameter5")))]),t._v(" "+t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))+" "),e("a",{staticClass:"mail",attrs:{href:"#step1"}},[t._v(" "+t._s(t.$t("course.parameter7")))]),t._v(" "+t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{staticClass:"mail",attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.general4_1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])]):e("section",{staticClass:"AccessMiningPool2"},[e("section",{staticClass:"table"},[e("div",{staticClass:"mainTitle"},[e("img",{attrs:{src:t.getImageUrl("img/alph.svg"),alt:"coin",loading:"lazy"}}),e("span",[t._v(" "+t._s(t.$t("course.alphCourse")))])]),e("div",{staticClass:"theServer"},[e("div",{staticClass:"title",attrs:{id:"Server"}},[t._v(t._s(t.$t("course.selectServer")))]),e("ul",[e("li",{staticClass:"liTitle"},[e("span",{staticClass:"coin"},[t._v(t._s(t.$t("course.currency")))]),e("span",{staticClass:"coin quota"},[t._v(t._s(t.$t("course.amount")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.TCP")))]),e("span",{staticClass:"port"},[t._v(t._s(t.$t("course.SSL")))])]),e("li",[e("span",{staticClass:"coin"},[e("img",{attrs:{src:t.getImageUrl("img/alph.svg"),alt:"coin",loading:"lazy"}}),e("span",[t._v("Alephium(alph)")])]),e("span",{staticClass:"coin quota"},[t._v("1 ")]),e("span",{staticClass:"port"},[t._v(" stratum+tcp://alph.m2pool.com:33390  "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+tcp://alph.m2pool.com:33390")}}})]),e("span",{staticClass:"port"},[t._v(" stratum+ssl://alph.m2pool.com:33395   "),e("i",{staticClass:"iconfont icon-fuzhi",on:{click:function(e){return t.clickCopy("stratum+ssl://alph.m2pool.com:33395")}}})])])])]),e("section",{staticClass:"step",attrs:{id:"accountContent2"}},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step1")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.accountContent1")))]),e("p",[t._v(t._s(t.$t("course.accountContent2")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step2")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.bindWalletText1")))]),e("p",{staticClass:"wallet-text"},[e("span",[t._v(t._s(t.$t("course.bindWalletText2")))]),e("a",{attrs:{href:"https://docs.alephium.org/"}},[t._v("https://docs.alephium.org/ ")]),t._v(", "+t._s(t.$t("course.bindWalletText3"))+" ")]),e("p",[t._v(t._s(t.$t("course.bindWalletText8")))])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step4")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(" "+t._s(t.$t("course.parameter"))),e("a",{attrs:{href:"#Server"}},[t._v(t._s(t.$t("course.parameter5")))]),t._v(t._s(t.$t("course.parameter6"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter2"))),e("a",{attrs:{href:"#accountContent2"}},[t._v(t._s(t.$t("course.parameter7")))]),t._v(t._s(t.$t("course.parameter8"))+" ")]),e("p",[t._v(" "+t._s(t.$t("course.parameter3"))+" "),e("a",{attrs:{href:"mailto:support@m2pool.com"}},[t._v(t._s(t.$t("course.mail")))]),t._v(" "+t._s(t.$t("course.parameter4"))+" ")])])]),e("section",{staticClass:"step"},[e("div",{staticClass:"stepTitle"},[t._v(t._s(t.$t("course.Step3")))]),e("div",{staticClass:"textBox"},[e("p",[t._v(t._s(t.$t("course.general4_1")))]),e("p",[t._v(t._s(t.$t("course.miningIncome2")))])])])])])])])},e.Yp=[]}}]); \ No newline at end of file diff --git a/mining-pool/test/js/app-b4c4f6ec.c346427f.js.gz b/mining-pool/test/js/app-b4c4f6ec.c346427f.js.gz new file mode 100644 index 0000000..f0944a0 Binary files /dev/null and b/mining-pool/test/js/app-b4c4f6ec.c346427f.js.gz differ diff --git a/mining-pool/test/js/app-ca0caf25.ba8086a4.js b/mining-pool/test/js/app-ca0caf25.ba8086a4.js new file mode 100644 index 0000000..c9336a9 --- /dev/null +++ b/mining-pool/test/js/app-ca0caf25.ba8086a4.js @@ -0,0 +1 @@ +"use strict";(self["webpackChunkmining_pool"]=self["webpackChunkmining_pool"]||[]).push([[796],{8619:function(t,e,a){var i=a(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var s=i(a(70525));e.A={mixins:[s.default]}},9396:function(t,e,a){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0;var i=a(1652);e["default"]={data(){return{typeArray:[]}},mounted(){},methods:{async fetchDataInfo(t){const e=await(0,i.findDataInfo)(t);e&&200===e.code&&(this.modifyData=e.data,this.addParams=this.modifyData,this.addParams.type=String(this.addParams.type),this.addParams.childType=String(this.addParams.childType),this.typeArray=[this.addParams.type],this.hasBackendData=!0,this.editor&&this.addParams.content&&(this.editor.txt.html(this.addParams.content),this.html=this.addParams.content))},changeScreen(t){let e=t;for(let a in this.currencyList){let t=this.currencyList[a],i=t.value;e===i&&this.$refs.screen.$el.children[0].children[0].setAttribute("style","background:url("+t.imgUrl+") no-repeat 10PX;background-size: 20PX 20PX;color:#333;padding-left: 33PX;")}localStorage.setItem("userManagement_selectedCurrency",t)},handleClearScreen(){this.$refs.screen&&this.$refs.screen.$el&&(this.$refs.screen.$el.children[0].children[0].style.background="",this.$refs.screen.$el.children[0].children[0].style.paddingLeft=""),localStorage.removeItem("userManagement_selectedCurrency")}}}},10275:function(t,e,a){var i=a(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var s=i(a(99129));e.A={mixins:[s.default]}},15564:function(t,e,a){a.r(e),a.d(e,{__esModule:function(){return s.B},default:function(){return l}});var i=a(58259),s=a(93852),n=s.A,o=a(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"0ee3c548",null),l=r.exports},32020:function(t,e,a){var i=a(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0,a(44114),a(18111),a(20116),a(61701);var s=i(a(66848)),n=i(a(5507)),o=a(1652),r=i(a(9396));e.A=s.default.extend({mixins:[r.default],data(){return{editor:null,html:"",hasSetEditorContent:!1,mode:"default",addParams:{title:"",content:"",type:"",lang:"",titleUrl:"",articleUrl:"",childType:"",coin:""},lastSaveTime:"",autoSaveTimer:null,isSaving:!1,previewVisible:!1,currentTime:"",TypeList:[],addLoading:!1,typeArray:[],currencyList:[],screenCurrency:""}},mounted(){this.currencyList=JSON.parse(localStorage.getItem("currencyList")),window.addEventListener("setItem",(()=>{this.currencyList=JSON.parse(localStorage.getItem("currencyList"))}));try{this.TypeList=JSON.parse(localStorage.getItem("TypeList")),this.TypeList=this.TypeList.map((t=>({...t,label:this.$t(t.label),children:t.children?t.children.map((t=>({...t,label:this.$t(t.label)}))):void 0})))}catch(error){console.log(error)}this.loadFromLocalStorage(),window.addEventListener("beforeunload",this.handleBeforeUnload),this.editor=new n.default(this.$refs.editor),this.editor.config.height=600,this.editor.config.onchange=t=>{this.html=t,this.addParams.content=t},this.editor.config.colors=["#651FFF","#FF4081","#FF9900","#FFC107","#FF5722","#9C27B0","#673AB7","#3F51B5","#000000","#ffffff","#eeece0","#1c487f","#4d80bf","#c24f4a","#8baa4a","#a96b59","#2b2b2b","#b6975a","#5b9bd5","#70ad47","#ed7d31","#ffc000","#7030a0","#f4b084","#bdd7ee","#a9d08e","#ffe699","#d9d9d9","#f8cbad","#e2efda","#fff2cc","#dbe5f1","#e4dfec","#fbeee6","#f6f6f6","#ff0000","#00b050","#0070c0","#7030a0","#ff9900","#808080"],this.editor.config.fontNames=[{name:"黑体",value:"黑体"},{name:"绝绝字体",value:"Times New Roman"},"黑体","仿宋","楷体","标楷体","华文仿宋","华文楷体","宋体","微软雅黑","Arial","Tahoma","Verdana","Times New Roman","Courier New"],this.editor.create(),this.addParams.content&&!this.hasSetEditorContent&&(this.editor.txt.html(this.addParams.content),this.html=this.addParams.content,this.hasSetEditorContent=!0)},methods:{async fetchAddDocument(t){this.setLoading("addLoading",!0);const e=await(0,o.addDocument)(t);if(e&&200==e.code){this.$message.success(this.$t("backendSystem.updateSuccess"));const t="editor_draft_add";localStorage.removeItem(t),this.$router.push({path:`/${this.$i18n.locale}/documentManagement`});for(const e in this.addParams)this.addParams[e]="";this.editor&&this.editor.txt.clear()}this.setLoading("addLoading",!1)},onCreated(t){this.editor=t,console.log("编辑器已初始化",this.editor),this.addParams.content&&this.$nextTick((()=>{this.editor.txt.html(this.addParams.content)}))},handelAddDocument(){this.editor&&(this.addParams.content=this.editor.txt.html()),console.log(this.addParams.content,"this.addParams.content"),this.addParams.content?(console.log(this.addParams.type,this.typeArray,"this.addParams.type"),this.addParams.type?"0"!=this.addParams.type||this.addParams.childType&&"0"!=this.addParams.childType?this.addParams.title?"1"!=this.addParams.type||this.screenCurrency?(this.addParams.content&&(this.addParams.content=this.addParams.content.replace(/]*href="#[^"]*")[^>]*>/gi,(function(t){return t.replace(/\s*target="_blank"/gi,"")}))),this.addParams.coin=this.screenCurrency,console.log(this.addParams.content,"this.addParams.content"),this.fetchAddDocument(this.addParams)):this.$message({message:this.$t("backendSystem.pleaseSelectCurrency2")||"添加挖矿教程,请选择币种",type:"warning",duration:4e3,showClose:!0}):this.$message({message:this.$t("backendSystem.pleaseInputTitle")||"请输入标题",type:"warning",duration:4e3,showClose:!0}):this.$message({message:this.$t("backendSystem.pleaseInputType")||"请填写文档类型",type:"warning",duration:4e3,showClose:!0}):this.$message({message:this.$t("backendSystem.pleaseSelectDocumentType")||"请填写文档类型",type:"warning",duration:4e3,showClose:!0})):this.$message({message:this.$t("backendSystem.pleaseInputContent2")||"请输入内容",type:"warning",duration:4e3,showClose:!0})},handlePreview(){this.previewVisible=!0,this.currentTime=(new Date).toLocaleString("zh-CN",{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit"})},handlePreviewClose(){this.previewVisible=!1},handleSave(){this.addParams.content=this.addParams.content.replace(/]*href="#([^"]*)")[^>]*>/gi,(function(t){return t.replace(/\s*target="_blank"/gi,"")})),this.manualSave(),this.$message({message:this.$t("backendSystem.contentSaved")||"内容已保存到本地,请尽快发布,关闭页面可能丢失内容",type:"success",duration:4e3,showClose:!0})},handleEditorChange(){this.handleAutoSave()},handleAutoSaveType(t){if(0!=t.length){console.log("走这里了嘛",t);try{let e=this.TypeList.find((e=>e.value===t[0]));e.articleUrl?this.addParams.articleUrl=e.articleUrl:this.addParams.articleUrl="",this.addParams.type=t[0],this.addParams.childType=t[1]}catch(error){console.log(error,"error")}this.isSaving=!0,this.autoSaveTimer&&clearTimeout(this.autoSaveTimer),this.autoSaveTimer=setTimeout((()=>{this.saveToLocalStorage()}),1500)}},handleAutoSave(){this.isSaving=!0,this.autoSaveTimer&&clearTimeout(this.autoSaveTimer),this.autoSaveTimer=setTimeout((()=>{this.saveToLocalStorage()}),1500)},saveToLocalStorage(){try{this.editor&&(this.addParams.content=this.editor.txt.html());const t={title:this.addParams.title,content:this.addParams.content,type:this.addParams.type,imageUrl:this.addParams.imageUrl,timestamp:(new Date).toLocaleString("zh-CN",{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit"}),lastModified:Date.now()},e="editor_draft_add";localStorage.setItem(e,JSON.stringify(t)),this.lastSaveTime=t.timestamp,this.isSaving=!1}catch(error){console.error("自动保存失败:",error),this.isSaving=!1}},loadFromLocalStorage(){try{const t="editor_draft_add",e=localStorage.getItem(t);if(e){const a=JSON.parse(e);console.log(a,"data");const i=Date.now()-(a.lastModified||0)>6048e5;if(i)return console.log("本地数据已过期,清除缓存"),void localStorage.removeItem(t);this.$nextTick((()=>{"0"!==a.type&&(this.addParams.title=a.title||"",this.addParams.content=a.content||"",this.addParams.type=a.type||"1",this.addParams.imageUrl=a.imageUrl||"",this.lastSaveTime=a.timestamp||"",console.log(a.type,this.typeArray,"data.type"),this.editor&&this.editor.txt.html(a.content||""))}))}}catch(error){console.error("恢复数据失败:",error)}},clearDraft(){const t="editor_draft_add";localStorage.removeItem(t),this.lastSaveTime="",this.isSaving=!1},manualSave(){this.editor&&(this.addParams.content=this.editor.txt.html()),this.saveToLocalStorage()},handleBeforeUnload(t){(this.addParams.title||this.addParams.content)&&(this.editor&&(this.addParams.content=this.editor.txt.html()),this.saveToLocalStorage())},getDocumentTypeName(t){switch(t){case"1":return"服务条款";case"2":return"api文档";case"3":return"挖矿教程";case"0":return"其他";default:return"未知类型"}},handleInsertAnchor(){this.editor?this.$prompt(this.$t("backendSystem.pleaseInputAnchorName")||"请输入锚点名称(不能重复)",this.$t("backendSystem.insertAnchor")||"插入锚点",{confirmButtonText:this.$t("backendSystem.confirm")||"确定",cancelButtonText:this.$t("backendSystem.cancel")||"取消",inputPattern:/^[a-zA-Z0-9_-]+$/,inputErrorMessage:this.$t("backendSystem.anchorNameErrorMessage")||"锚点名只能包含字母、数字、下划线和中划线"}).then((({value:t})=>{this.editor.cmd.do("insertHTML",``),this.html=this.editor.txt.html(),this.addParams.content=this.html,this.$message.success(this.$t("backendSystem.anchorInserted")||"锚点已插入")})).catch((()=>{})):this.$message.warning("编辑器尚未初始化")},handleAddHeadingId(){if(!this.editor)return void this.$message.warning("编辑器尚未初始化");const t=this.editor.getElemsByTypePrefix("header");if(!t||0===t.length)return void this.$message.warning(this.$t("backendSystem.pleaseSelectHeader")||"请先选中一个标题(h1~h6)");const e=t[0];this.$prompt(this.$t("backendSystem.pleaseInputAnchorID")||"请输入锚点ID(不能重复)",this.$t("backendSystem.titleAnchor")||"标题锚点",{confirmButtonText:this.$t("backendSystem.confirm")||"确定",cancelButtonText:this.$t("backendSystem.cancel")||"取消",inputPattern:/^[a-zA-Z0-9_-]+$/,inputErrorMessage:this.$t("backendSystem.anchorIDErrorMessage")||"ID只能包含字母、数字、下划线和中划线"}).then((({value:t})=>{this.editor.setElemAttribute(e,"id",t),this.$message.success(this.$t("backendSystem.anchorIDAdded")||"锚点ID已添加")})).catch((()=>{}))},handleReset(){for(const e in this.addParams)this.addParams[e]="";this.editor&&this.editor.txt.clear();const t="editor_draft_add";localStorage.removeItem(t),this.$message.success(this.$t("backendSystem.contentReset")||"内容已重置")}},beforeDestroy(){this.editor&&this.editor.destroy()},beforeRouteLeave(t,e,a){this.editor&&(this.addParams.content=this.editor.txt.html()),this.saveToLocalStorage(),a()}})},32056:function(t,e,a){a.r(e),a.d(e,{__esModule:function(){return s.B},default:function(){return l}});var i=a(37213),s=a(10275),n=s.A,o=a(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"df37eeb8",null),l=r.exports},34657:function(t,e,a){a.r(e),a.d(e,{__esModule:function(){return s.B},default:function(){return l}});var i=a(89547),s=a(48047),n=s.A,o=a(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"1104899b",null),l=r.exports},36425:function(t,e,a){var i=a(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var s=i(a(67975));e.A={mixins:[s.default]}},37213:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"help-center"},[e("div",{staticClass:"top-section"},[e("div",{staticClass:"filter-icon"},[e("svg",{attrs:{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[e("path",{attrs:{d:"M3 7H21L15 13V19L9 15V13L3 7Z",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}})])]),e("div",{staticClass:"search-container"},[e("input",{directives:[{name:"model",rawName:"v-model",value:t.searchQuery,expression:"searchQuery"}],staticClass:"search-input",attrs:{type:"text",placeholder:t.$t("backendSystem.search")||"搜索"},domProps:{value:t.searchQuery},on:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.handleSearch.apply(null,arguments)},input:function(e){e.target.composing||(t.searchQuery=e.target.value)}}})])]),e("div",{staticClass:"main-content"},[e("div",{staticClass:"category-grid"},t._l(t.categories,(function(a){return e("button",{key:a.id,staticClass:"category-btn",attrs:{tabindex:"0"},on:{click:function(e){return t.handleCategoryClick(a)},keydown:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.handleCategoryClick(a)}}},[t._v(" "+t._s(t.$t(a.name))+" ")])})),0),e("div",{staticClass:"recommended-section"},[e("h3",{staticClass:"section-title"},[t._v(t._s(t.$t("backendSystem.recommendContent")||"推荐的内容"))]),e("div",{staticClass:"recommended-items"},t._l(t.recommendedItems,(function(a){return e("div",{key:a.id,staticClass:"recommended-item",on:{click:function(e){return t.handleCategoryClick(a)}}},[e("p",{staticClass:"item-description"},[t._v(t._s(t.$t(a.description)))])])})),0)]),e("div",{staticClass:"recent-activities"},[e("h3",{staticClass:"section-title"},[t._v(t._s(t.$t("backendSystem.recentActivities")||"最近活动"))]),e("div",{staticClass:"activities-list"},t._l(t.activities,(function(a){return e("div",{key:a.id,staticClass:"activity-item",on:{click:function(e){return t.handleActivityClick(a)}}},[e("div",{staticClass:"activity-header"},[e("span",{staticClass:"activity-badge"},[t._v(t._s(t.handelType(a.type)))])]),e("p",{staticClass:"activity-title"},[t._v(t._s(a.title))]),e("div",{staticClass:"activity-meta"},[e("span",{staticClass:"activity-author"},[t._v(t._s(t.handelTime(a.createTime)))])])])})),0),e("div",{staticClass:"view-more"},[e("a",{staticClass:"view-more-link",attrs:{href:"#"},on:{click:t.handleViewMore}},[t._v(" "+t._s(t.$t("backendSystem.viewMore")||"查看更多活动公告")+" ")])])])])])},e.Yp=[]},37320:function(t,e,a){var i=a(91774)["default"];Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,a(44114),a(18111),a(22489),a(20116),a(7588),a(61701);a(66848);var s=a(27409),n=a(73723),o=a(84403),r=i(a(3574)),l=a(82908);e["default"]={data(){return{activeName:"second",option:{tooltip:{trigger:"axis",confine:!0,formatter:function(t){var e;e=t[0].axisValueLabel;for(let a=0;a<=t.length-1;a++)"Currency Price"==t[a].seriesName||"币价"==t[a].seriesName?e+=`
${t[a].marker} ${t[a].seriesName}      ${t[a].value} USD`:e+=`
${t[a].marker} ${t[a].seriesName}      ${t[a].value}`;return e}},legend:{right:"30"},grid:{left:"10%",right:"15%",top:"20%",bottom:"12%"},xAxis:{boundaryGap:!1,data:[]},yAxis:[{type:"value",name:"GH/s",nameTextStyle:{padding:[0,0,0,-40]},axisLabel:{formatter:function(t){return t}}},{position:"right",show:!0,splitLine:{show:!1},name:"USD",nameTextStyle:{padding:[0,0,0,40]}}],dataZoom:[{type:"inside",start:0,end:100,maxSpan:100,minSpan:2,animation:!1},{type:"inside",start:0,end:100}],series:[{name:"Computational power",type:"line",smooth:!1,symbol:"circle",symbolSize:5,showSymbol:!1,itemStyle:{color:"#5721E4",borderColor:"rgba(221,220,107,0.1)",borderWidth:12},lineStyle:{color:"#5721E4",width:"2"},areaStyle:{color:new r.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"rgb(210,195,234)"},{offset:1,color:"rgb(255, 255, 255)"}])},zlevel:1,z:1,data:[]},{name:"Refusal rate",type:"line",smooth:!1,symbol:"circle",symbolSize:5,showSymbol:!1,itemStyle:{color:"#FE2E74",borderColor:"rgba(221,220,107,0.1)",borderWidth:12},lineStyle:{color:"#FE2E74",width:"2"},areaStyle:{origin:"start",color:new r.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"rgb(252,220,233)"},{offset:1,color:"rgb(255, 255, 255)"}])},data:[],yAxisIndex:1,zlevel:2,z:2}]},minerOption:{legend:{right:"50",formatter:function(t){return t}},tooltip:{trigger:"axis",textStyle:{align:"left"},animation:!1,confine:!0,formatter:function(t){var e=t[0].axisValueLabel;for(let a=0;a<=t.length-1;a++)"Currency Price"==t[a].seriesName||"币价"==t[a].seriesName?e+=`
${t[a].marker} ${t[a].seriesName}      ${t[a].value} USD`:e+=`
${t[a].marker} ${t[a].seriesName}      ${t[a].value}`;return e}},grid:{left:"10%",right:"15%",top:"20%",bottom:"12%"},xAxis:{boundaryGap:!1,axisTick:{show:!1},axisLine:{show:!1},data:[]},yAxis:[{position:"left",type:"value",name:"GH/s",nameTextStyle:{padding:[0,0,0,-40]},axisLabel:{formatter:function(t){return t}}},{position:"right",show:!0,splitLine:{show:!1},name:"USD",nameTextStyle:{padding:[0,0,0,40]}}],dataZoom:[{type:"inside",start:0,end:100,maxSpan:100,minSpan:2,animation:!1},{type:"inside",start:0,end:100}],series:[{name:"全网算力",type:"line",smooth:!1,symbol:"circle",symbolSize:5,showSymbol:!1,itemStyle:{color:"#5721E4",borderColor:"rgba(221,220,107,0.1)",borderWidth:12},lineStyle:{color:"#5721E4",width:"2"},areaStyle:{origin:"start",color:new r.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"rgb(210,195,234)"},{offset:1,color:"rgb(255, 255, 255)"}])},data:[]},{name:"币价",type:"line",smooth:!1,symbol:"circle",symbolSize:5,showSymbol:!1,itemStyle:{color:"#FE2E74",borderColor:"rgba(221,220,107,0.1)",borderWidth:12},lineStyle:{color:"#FE2E74",width:"2"},areaStyle:{origin:"start",color:new r.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"rgb(252,220,233)"},{offset:1,color:"rgb(255, 255, 255)"}])},data:[],yAxisIndex:1,zlevel:2,z:2}]},CountOption:{...o.line},powerDialogVisible:!1,minerDialogVisible:!1,currentPage:1,currency:"nexa",currencyPath:`${this.$baseApi}img/nexa.png`,currencyList:[{path:"nexaAccess",value:"nexa",label:"nexa",img:a(95194),imgUrl:`${this.$baseApi}img/nexa.png`,name:"course.NEXAcourse",show:!0,amount:1e4},{path:"grsAccess",value:"grs",label:"grs",img:a(78628),imgUrl:`${this.$baseApi}img/grs.svg`,name:"course.GRScourse",show:!0,amount:1},{path:"monaAccess",value:"mona",label:"mona",img:a(85857),imgUrl:`${this.$baseApi}img/mona.svg`,name:"course.MONAcourse",show:!0,amount:1},{path:"dgbsAccess",value:"dgbs",label:"dgb(skein)",img:a(94045),imgUrl:`${this.$baseApi}img/dgb.svg`,name:"course.dgbsCourse",show:!0,amount:1},{path:"dgbqAccess",value:"dgbq",label:"dgb(qubit)",img:a(94045),imgUrl:`${this.$baseApi}img/dgb.svg`,name:"course.dgbqCourse",show:!0,amount:1},{path:"dgboAccess",value:"dgbo",label:"dgb(odocrypt)",img:a(94045),imgUrl:`${this.$baseApi}img/dgb.svg`,name:"course.dgboCourse",show:!0,amount:1},{path:"rxdAccess",value:"rxd",label:"radiant(rxd)",img:a(94158),imgUrl:`${this.$baseApi}img/rxd.png`,name:"course.RXDcourse",show:!0,amount:100},{path:"enxAccess",value:"enx",label:"Entropyx(enx)",img:a(78945),imgUrl:`${this.$baseApi}img/enx.svg`,name:"course.ENXcourse",show:!0,amount:5e3},{path:"alphminingPool",value:"alph",label:"alephium",img:a(31413),imgUrl:`${this.$baseApi}img/alph.svg`,name:"course.alphCourse",show:!0,amount:1}],params:{coin:"nexa",interval:"rt"},PowerParams:{coin:"nexa",interval:"rt"},BlockInfoParams:{coin:"nexa",limit:10,page:1},CoinData:{algorithm:"",height:"",totalDifficulty:"",totalPower:"",price:"",poolPower:"",poolMc:""},luckData:{luck3d:"96.26 %",luck7d:"96.26 %",luck30d:"96.26 %",luck90d:"96.26 %"},BlockInfoData:[],intervalList:[{value:"rt",label:"home.realTime"},{value:"1d",label:"home.day"}],offset:0,itemWidth:30,listWidth:1e3,itemActive:"nexa",timeActive:"rt",powerActive:!0,minerChartLoading:!1,newBlockInfoData:[],reportBlockLoading:!1,BlockShow:!0,showCalculator:!1,value:"nexa",input3:"",select:"GH/s",selectTime:[{value:"day",label:"home.everyDay"},{value:"week",label:"home.weekly"},{value:"month",label:"home.monthly"},{value:"year",label:"home.annually"}],time:"day",input:"",inputPower:1,profit:"",factor:"",CalculatorData:{hpb:"10",reward:"20",price:"30",costTime:"600",poolFee:"0.15"},transactionFeeList:[{label:"grs",coin:"grs",feeShow:!1},{label:"mona",coin:"mona",feeShow:!1},{label:"radiant",coin:"rxd",feeShow:!1}],FeeShow:!0,lang:"en",activeItemCoin:{value:"nexa",label:"nexa",img:a(95194),imgUrl:`${this.$baseApi}img/nexa.png`},isInternalChange:!1,broadcastList:[{id:"b1",content:this.$t("home.describe"),buttonContent:[this.$t("home.view")],buttonPath:["/allocationExplanation"]}],currentBroadcastIndex:0,scrollTimer:null,delayScrollTimer:null,isTransition:!0}},computed:{broadcastListForLoop(){return 0===this.broadcastList.length?[]:1===this.broadcastList.length?this.broadcastList:[...this.broadcastList,this.broadcastList[0]]},scrollStyle(){return{transform:`translateY(-${30*this.currentBroadcastIndex}px)`,transition:this.isTransition?"transform 0.5s cubic-bezier(.4,0,.2,1)":"none"}},mobileScrollStyle(){return{transform:`translateY(-${40*this.currentBroadcastIndex}px)`,transition:this.isTransition?"transform 0.5s cubic-bezier(.4,0,.2,1)":"none"}}},watch:{"$i18n.locale":t=>{location.reload()},activeItemCoin:{handler(t){this.isInternalChange||this.handleActiveItemChange(t)},deep:!0}},mounted(){if(this.lang=this.$i18n.locale,this.$addStorageEvent(1,"activeItemCoin",JSON.stringify(this.currencyList[0])),this.minerChartLoading=!0,this.$isMobile)this.option.yAxis[1].show=!1,this.option.grid.left="16%",this.option.grid.right="5%",this.option.grid.top="10%",this.option.grid.bottom="45%",this.option.legend.bottom=5,this.option.legend.right="30%",this.option.xAxis.axisLabel={interval:8,rotate:70},this.minerOption.yAxis[1].show=!1,this.minerOption.grid.left="16%",this.minerOption.grid.right="5%",this.minerOption.grid.top="10%",this.minerOption.grid.bottom="45%",this.minerOption.legend.bottom=5,this.minerOption.legend.right="30%",this.minerOption.xAxis.axisLabel={interval:8,rotate:70};else{const t=this.option.yAxis[0],e=Math.max(...this.option.series[0].data),a=t.axisLabel.formatter,i=a(e),s=document.createElement("div");s.style.position="absolute",s.style.visibility="hidden",s.style.fontSize="12px",s.innerText=i,document.body.appendChild(s);const n=s.offsetWidth;document.body.removeChild(s);const o=20;this.option.grid.left=n+o+"px";const r=this.minerOption.yAxis[0],l=Math.max(...this.minerOption.series[0].data),c=r.axisLabel.formatter,d=c(l),h=document.createElement("div");h.style.position="absolute",h.style.visibility="hidden",h.style.fontSize="12px",h.innerText=d,document.body.appendChild(h);const m=h.offsetWidth;document.body.removeChild(h);const u=20;this.minerOption.grid.left=m+u+"px"}this.getBlockInfoData(this.BlockInfoParams),this.getCoinInfoData(this.params),this.getPoolPowerData(this.PowerParams),this.registerRecoveryMethod("getCoinInfoData",this.params),this.registerRecoveryMethod("getPoolPowerData",this.PowerParams),this.registerRecoveryMethod("getBlockInfoData",this.BlockInfoParams),this.$addStorageEvent(1,"currencyList",JSON.stringify(this.currencyList)),this.$refs.select&&this.$refs.select.$el.children[0].children[0].setAttribute("style",`background:url(${this.$baseApi}/img/nexa.png) no-repeat 10PX;background-size: 20PX 20PX;color:#333;padding-left: 30PX;`),this.fetchParam({coin:this.params.coin}),this.minerChartLoading=!1,window.addEventListener("setItem",(()=>{let t=localStorage.getItem("activeItemCoin");this.activeItemCoin=JSON.parse(t)})),this.getBroadcastList({lang:this.$i18n.locale}),this.startScroll(),this.$nextTick((()=>{this.startScroll()})),window.addEventListener("resize",this.setItemHeight)},methods:{handleCustomClick(t){console.log("广播项被点击:",t),this.$message.info(`广播: ${t.content}`)},handleBroadcastError(t){console.error("广播组件错误:",t)},async getBroadcastList(t){const e=await(0,n.getBroadcast)(t);if(e&&200==e.code){let t=e.data;t=t.map((t=>{if(t.buttonContent?"string"===typeof t.buttonContent?t.buttonContent=t.buttonContent.split(/[,,]/).map((t=>t.trim())).filter((t=>t)):Array.isArray(t.buttonContent)||(t.buttonContent=[]):t.buttonContent=[],t.buttonPath?"string"===typeof t.buttonPath?t.buttonPath=t.buttonPath.split(/[,,]/).map((t=>t.trim())).filter((t=>t)):Array.isArray(t.buttonPath)||(t.buttonPath=[]):t.buttonPath=[],t.buttonContent.length!==t.buttonPath.length){const e=Math.min(t.buttonContent.length,t.buttonPath.length);t.buttonContent=t.buttonContent.slice(0,e),t.buttonPath=t.buttonPath.slice(0,e)}return t})),this.broadcastList=[...this.broadcastList,...t],console.log(this.broadcastList,"this.broadcastList"),this.currentBroadcastIndex=0,this.broadcastList.length>1&&this.$nextTick((()=>{this.startScroll()}))}},handelOptionYAxis(t){const e=t.yAxis[0],a=Math.max(...t.series[0].data),i=e.axisLabel.formatter,s=i(a),n=document.createElement("div");n.style.position="absolute",n.style.visibility="hidden",n.style.fontSize="12px",n.innerText=s,document.body.appendChild(n);const o=n.offsetWidth;document.body.removeChild(n);const r=20;return t.grid.left=o+r+"px",t},slideLeft(){const t=120*this.currencyList.length,e=document.getElementById("list-box").clientWidth;if(t{this.minerChartLoading=!1})),window.addEventListener("resize",(0,l.throttle)((()=>{this.myChart&&this.myChart.resize()}),200))},inChartsMiner(){null==this.MinerChart&&(this.MinerChart=r.init(document.getElementById("minerChart"))),this.minerOption=this.handelOptionYAxis(this.minerOption),this.minerOption.series[0].name=this.$t("home.networkPower"),this.minerOption.series[1].name=this.$t("home.currencyPrice"),this.MinerChart.setOption(this.minerOption),this.MinerChart.on("finished",(()=>{this.minerChartLoading=!1})),window.addEventListener("resize",(0,l.throttle)((()=>{this.MinerChart&&this.MinerChart.resize()}),200))},countInCharts(){this.countChart=r.init(document.getElementById("minerChart")),this.countChart.setOption(this.CountOption)},async fetchParam(t){try{const e=await(0,s.getParam)(t);if(e&&200==e.code)this.CalculatorData=e.data;else for(const t in this.CalculatorData)this.CalculatorData[t]=0;this.calculateIncome(this.CalculatorData)}catch(error){console.log(error,"error")}},getCoinInfoData:(0,l.Debounce)((async function(t){const e=await(0,s.getCoinInfo)(t);e&&200==e.code?this.CoinData=e.data:this.CoinData={}}),200),getPoolPowerData:(0,l.Debounce)((async function(t){this.setLoading("minerChartLoading",!0);try{const e=await(0,s.getPoolPower)(t);if(!e)return this.setLoading("minerChartLoading",!1),void(this.myChart&&this.myChart.dispose());let a=e.data,i=[],n=[],o=[];a.forEach((e=>{e.date.includes("T")&&"rt"==t.interval?e.date=`${e.date.split("T")[0]} ${e.date.split("T")[1].split(".")[0]}`:e.date.includes("T")&&"1d"==t.interval&&(e.date=e.date.split("T")[0]),i.push(e.date),n.push(Number(e.pv).toFixed(2)),0==e.price?o.push(e.price):e.price<1?o.push(Number(e.price).toFixed(8)):o.push(Number(e.price).toFixed(2))})),this.option.xAxis.data=i,this.option.yAxis[0].name=a[0].unit,this.option.series[0].data=n,this.option.series[1].data=o,this.$nextTick((()=>{this.inCharts()}))}catch{console.error("获取数据失败:",error)}finally{this.setLoading("minerChartLoading",!1)}}),200),async fetchNetPower(t){this.setLoading("minerChartLoading",!0);const e=await(0,s.getNetPower)(t);if(!e)return this.minerChartLoading=!1,void(this.MinerChart&&this.MinerChart.dispose());let a=e.data,i=[],n=[],o=[];a.forEach((e=>{e.date.includes("T")&&"rt"==t.interval?e.date=`${e.date.split("T")[0]} ${e.date.split("T")[1].split(".")[0]}`:e.date.includes("T")&&"1d"==t.interval&&(e.date=e.date.split("T")[0]),i.push(e.date),n.push(Number(e.pv).toFixed(2)),0==e.price?o.push(e.price):e.price<1?o.push(Number(e.price).toFixed(8)):o.push(Number(e.price).toFixed(2))})),this.minerOption.xAxis.data=i,a[0]&&a[0].unit&&(this.minerOption.yAxis[0].name=a[0].unit),this.minerOption.series[0].data=n,this.minerOption.series[1].data=o,this.$nextTick((()=>{this.inChartsMiner()})),this.setLoading("minerChartLoading",!1)},getMinerCountData:(0,l.Debounce)((async function(t){this.setLoading("minerChartLoading",!0);const e=await(0,s.getMinerCount)(t);if(!e)return this.minerChartLoading=!1,void(this.MinerChart&&this.MinerChart.dispose());let a=e.data,i=[],n=[];a.forEach((t=>{t.date.includes("T")?i.push(`${t.date.split("T")[0]} ${t.date.split("T")[1].split(".")[0]}`):i.push(t.date),n.push(t.value)})),this.minerOption.xAxis.data=i,this.minerOption.series[0].data=n,this.$nextTick((()=>{this.inChartsMiner()})),this.setLoading("minerChartLoading",!1)}),200),getBlockInfoData:(0,l.Debounce)((async function(t){try{this.setLoading("reportBlockLoading",!0);const e=await(0,s.getBlockInfo)(t);if(e&&200==e.code){if(this.BlockShow=!0,this.newBlockInfoData=[],this.BlockInfoData=e.rows,!this.BlockInfoData[0])return void this.setLoading("reportBlockLoading",!1);this.BlockInfoData.forEach(((t,e)=>{t.date=`${t.date.split("T")[0]} ${t.date.split("T")[1].split(".")[0]}`,e<8&&this.newBlockInfoData.push(t)}))}else this.BlockShow=!1;this.setLoading("reportBlockLoading",!1)}catch(error){console.error("获取区块信息失败:",error),this.BlockShow=!1}finally{this.setLoading("reportBlockLoading",!1)}}),200),calculateIncome(t){for(const l in this.CalculatorData)if(!this.CalculatorData[l])return void(this.profit=0);let e;switch(this.select){case"GH/s":e=this.inputPower*Math.pow(10,9);break;case"MH/s":e=this.inputPower*Math.pow(10,6);break;case"TH/s":e=this.inputPower*Math.pow(10,12);break;default:break}const a=this.CalculatorData.netHashrate,i=this.CalculatorData.reward,s=e/a,n=i*(1-this.CalculatorData.poolFee)*this.CalculatorData.count,o=s*n;switch(this.time){case"day":this.profit=o.toFixed(8);break;case"week":this.profit=(7*o).toFixed(8);break;case"month":this.profit=(30*o).toFixed(8);break;case"year":this.profit=(365*o).toFixed(8);break;default:break}const r=new Intl.NumberFormat("en-US",{minimumFractionDigits:2,maximumFractionDigits:2,useGrouping:!0});if("nexa"==this.value)this.profit=r.format(this.profit);else{const t=new Intl.NumberFormat("en-US",{minimumFractionDigits:8,useGrouping:!0});this.profit=t.format(this.profit)}},toFixedNoRound(t,e=10){const a=10**e;return(t<0?Math.ceil(t*a):Math.floor(t*a))/a},ProfitCalculator(t,e){const a=5646.62,i=1e7,s=t/a,n=i*(1-e)*720,o=s*n;return o},disableElement(t){t.setAttribute("data-disabled",!0),t.style.pointerEvents="none",t.style.opacity="0.5"},handelProfitCalculation(){for(const t in this.CalculatorData)if(0!==this.CalculatorData[t]&&!this.CalculatorData[t])return this.$message({message:this.$t("home.acquisitionFailed"),type:"error"}),this.profit=0,void this.fetchParam({coin:this.params.coin});this.showCalculator=!0},handelClose(){this.showCalculator=!1},changeSelection(t){let e=t;for(let a in this.currencyList){let t=this.currencyList[a],i=t.value;e===i&&this.$refs.select.$el.children[0].children[0].setAttribute("style","background:url("+t.imgUrl+") no-repeat 10PX;background-size: 20PX 20PX;color:#333;padding-left: 35PX;")}this.fetchParam({coin:this.value})},handelJump(t){if("/AccessMiningPool"===t){const t=this.currencyList.find((t=>t.value===this.params.coin));if(!t)return;this.lang;this.$router.push({name:"AccessMiningPool",params:{coin:this.params.coin,imgUrl:this.currencyPath},replace:!1})}else{let t=`/${this.lang}/AccessMiningPool`;this.$router.push(t)}},handelCalculation(){this.calculateIncome()},getItemFullWidth(){const t=this.$refs.currencyList;if(!t)return 120;const e=t.querySelector(".list-item");if(!e)return 120;const a=window.getComputedStyle(e),i=e.offsetWidth,s=parseInt(a.marginLeft)||0,n=parseInt(a.marginRight)||0;return i+s+n},scrollLeft(){const t=120*this.currencyList.length,e=document.getElementById("list-box").clientWidth;if(tt?"-"+(t-e)+"PX":"-"+(i+360)+"PX"},handleActiveItemChange(t){t&&(this.currency=t.label,this.currencyPath=t.imgUrl,this.params.coin=t.value,console.log(this.params.coin,"item"),this.BlockInfoParams.coin=t.value,this.itemActive=t.value,this.PowerParams.coin=t.value,this.getCoinInfoData(this.params),this.getBlockInfoData(this.BlockInfoParams),this.powerActive?this.handelPower():this.handelMiner(),this.handelCoinLabel(t.value))},clickCurrency(t){t&&(this.isInternalChange=!0,this.activeItemCoin=t,this.$addStorageEvent(1,"activeItemCoin",JSON.stringify(t)),this.$nextTick((()=>{this.isInternalChange=!1})),this.handleActiveItemChange(t))},clickReportBlock(){this.$router.push({path:`/${this.lang}/reportBlock`,query:{coin:this.params.coin,imgUrl:this.currencyPath}})},handleClick(t,e){},handelPower(){this.MinerChart&&(this.MinerChart.dispose(),this.MinerChart=null),this.option.xAxis.data=[],this.option.series[0].data=[],this.option.series[1].data=[],this.powerActive=!0,this.PowerParams.coin=this.params.coin,this.getPoolPowerData(this.PowerParams)},intervalChange(t){this.PowerParams.interval=t,this.params.interval=t,this.timeActive=t,this.powerActive?this.getPoolPowerData(this.PowerParams):this.powerActive||this.fetchNetPower(this.params)},handelMiner(){this.myChart&&(this.myChart.dispose(),this.myChart=null),this.minerOption.xAxis.data=[],this.minerOption.series[0].data=[],this.powerActive=!1,this.fetchNetPower(this.params)},handelLabel(t){let e=this.currencyList.find((e=>e.value==t));return e?e.label:""},handelLabel2(t){return t.includes("dgb")?"dgb":t},handelCoinLabel(t){let e={coin:""};t&&(e=this.transactionFeeList.find((e=>e.coin==t)),this.FeeShow=!1),e||(this.FeeShow=!0)},startScroll(){this.scrollTimer&&clearInterval(this.scrollTimer),this.broadcastList.length<=1||(this.scrollTimer=setInterval(this.nextScroll,3e3))},stopScroll(){this.scrollTimer&&clearInterval(this.scrollTimer),this.scrollTimer=null},startScrollDelayed(){this.delayScrollTimer&&clearTimeout(this.delayScrollTimer),this.delayScrollTimer=setTimeout((()=>{this.startScroll()}),1e3)},nextScroll(){this.broadcastList.length<=1||(this.isTransition=!0,this.currentBroadcastIndex+=1,this.currentBroadcastIndex===this.broadcastList.length&&setTimeout((()=>{this.isTransition=!1,this.currentBroadcastIndex=0}),500))}},beforeDestroy(){this.scrollTimer&&clearInterval(this.scrollTimer),this.delayScrollTimer&&clearTimeout(this.delayScrollTimer)}}},41299:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;t._self._setupProxy;return e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.addLoading,expression:"addLoading"}],staticClass:"editor-page",class:{"no-scroll":t.addLoading}},[e("h2",{staticStyle:{"margin-bottom":"20px"}},[t._v(" "+t._s(t.$t("backendSystem.addDocument")||"新增文档")+" ")]),e("div",{staticClass:"page-header"},[e("div",{staticClass:"header-left"},[e("div",{staticClass:"title-section"},[e("i",{staticClass:"el-icon-edit-outline title-icon"}),e("h1",{staticClass:"page-title"},[t._v(" "+t._s(t.$t("backendSystem.wangeditor")||"wangeditor 富文本文档编辑器")+" ")])])]),e("div",{staticClass:"header-actions"},[e("el-button",{attrs:{type:"primary",icon:"el-icon-link"},on:{click:t.handleInsertAnchor}},[t._v(" "+t._s(t.$t("backendSystem.insertAnchor")||"插入锚点")+" ")]),e("el-button",{attrs:{type:"info",icon:"el-icon-view"},on:{click:t.handlePreview}},[t._v(" "+t._s(t.$t("backendSystem.previewDocument")||"预览文档")+" ")]),e("el-button",{attrs:{type:"success",icon:"el-icon-document"},on:{click:t.handleSave}},[t._v(" "+t._s(t.$t("backendSystem.saveDocument")||"保存文档")+" ")]),e("el-button",{attrs:{type:"danger",icon:"el-icon-delete"},on:{click:t.handleReset}},[t._v(" "+t._s(t.$t("backendSystem.reset")||"重置")+" ")]),e("el-button",{attrs:{type:"warning",icon:"el-icon-upload2"},on:{click:t.handelAddDocument}},[t._v(" "+t._s(t.$t("backendSystem.publishDocument")||"发布文档")+" ")])],1)]),e("div",{staticClass:"config-section"},[e("div",{staticClass:"section-header"},[e("i",{staticClass:"el-icon-setting"}),e("span",[t._v(t._s(t.$t("backendSystem.documentConfiguration")||"文档配置"))])]),e("div",{staticClass:"config-content"},[e("div",{staticClass:"config-row"},[e("div",{staticClass:"config-item"},[e("label",[t._v(t._s(t.$t("backendSystem.navigationTitle")||"导航标题"))]),e("el-input",{attrs:{placeholder:t.$t("backendSystem.pleaseInputDocumentTitle")||"请输入文档标题",size:"medium",maxlength:"30","show-word-limit":""},on:{input:t.handleAutoSave},model:{value:t.addParams.title,callback:function(e){t.$set(t.addParams,"title",e)},expression:"addParams.title"}})],1),e("div",{staticClass:"config-item"},[e("label",{staticClass:"required"},[t._v(t._s(t.$t("backendSystem.documentType")||"文档类型"))]),e("el-cascader",{attrs:{options:t.TypeList,placeholder:t.$t("backendSystem.pleaseSelectDocumentType")||"请选择文档类型",props:{label:"label",value:"value",children:"children"}},on:{change:function(e){return t.handleAutoSaveType(t.typeArray)}},model:{value:t.typeArray,callback:function(e){t.typeArray=e},expression:"typeArray"}})],1)])]),e("div",{staticClass:"config-content"},[e("div",{staticClass:"config-row"},[e("div",{staticClass:"config-item"},[e("label",[t._v(t._s(t.$t("backendSystem.titleImageAddress")||"标题图片地址"))]),e("el-input",{attrs:{placeholder:t.$t("backendSystem.pleaseInputImageAddress")||"请输入图片地址",size:"medium"},on:{input:t.handleAutoSave},model:{value:t.addParams.titleUrl,callback:function(e){t.$set(t.addParams,"titleUrl",e)},expression:"addParams.titleUrl"}})],1),e("div",{staticClass:"config-item"},[e("label",[t._v(t._s(t.$t("backendSystem.articleAccessAddress")||"文章访问地址"))]),e("el-input",{attrs:{placeholder:t.$t("backendSystem.pleaseInputAccessAddress")||"请输入访问地址",size:"medium",maxlength:"50","show-word-limit":""},on:{input:t.handleAutoSave},model:{value:t.addParams.articleUrl,callback:function(e){t.$set(t.addParams,"articleUrl",e)},expression:"addParams.articleUrl"}})],1)])]),e("div",{staticClass:"config-content"},[e("div",{staticClass:"config-row"},[e("div",{staticClass:"config-item"},[e("label",[t._v(t._s(t.$t("backendSystem.coin2")||"币种"))]),e("el-select",{ref:"screen",staticClass:"input",attrs:{size:"middle",clearable:"",placeholder:t.$t("backendSystem.selectCurrency")},on:{change:function(e){return t.changeScreen(t.screenCurrency)},clear:t.handleClearScreen},model:{value:t.screenCurrency,callback:function(e){t.screenCurrency=e},expression:"screenCurrency"}},t._l(t.currencyList,(function(a){return e("el-option",{key:a.value,attrs:{label:a.label,value:a.value}},[e("div",{staticStyle:{display:"flex","align-items":"center"}},[e("img",{staticStyle:{float:"left",width:"20px"},attrs:{src:a.imgUrl}}),e("span",{staticStyle:{float:"left","margin-left":"5px"}},[t._v(" "+t._s(a.label))])])])})),1)],1)])])]),e("div",{staticClass:"editor-section"},[e("div",{staticClass:"section-header"},[e("i",{staticClass:"el-icon-edit-outline"}),e("span",[t._v(t._s(t.$t("backendSystem.richTextEditor")||"富文本编辑器"))])]),e("div",{staticClass:"editor-container"},[e("div",{ref:"editor"})])]),e("el-dialog",{staticClass:"preview-dialog wangeditor-preview",attrs:{title:t.$t("backendSystem.documentPreview")||"文档预览",visible:t.previewVisible,width:"80%","before-close":t.handlePreviewClose},on:{"update:visible":function(e){t.previewVisible=e}}},[e("div",{staticClass:"preview-content"},[e("div",{staticClass:"dynamic-content",domProps:{innerHTML:t._s(t.addParams.content)}}),t.addParams.content?t._e():e("div",{staticClass:"preview-empty"},[e("i",{staticClass:"el-icon-document"}),e("p",[t._v(t._s(t.$t("backendSystem.noContent")||"暂无内容"))])])]),e("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[e("el-button",{on:{click:function(e){t.previewVisible=!1}}},[t._v(t._s(t.$t("backendSystem.close")||"关闭"))])],1)])],1)},e.Yp=[]},42287:function(t,e,a){a.r(e),a.d(e,{__esModule:function(){return s.B},default:function(){return l}});var i=a(63587),s=a(46388),n=s.A,o=a(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"4ff46502",null),l=r.exports},42389:function(t,e,a){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0;var i=a(1652);e["default"]={data(){return{typeArray:[],currencyList:[],screenCurrency:""}},mounted(){this.currencyList=JSON.parse(localStorage.getItem("currencyList")),window.addEventListener("setItem",(()=>{this.currencyList=JSON.parse(localStorage.getItem("currencyList"))})),this.$route.query.id&&this.fetchDataInfo({id:this.$route.query.id})},methods:{async fetchDataInfo(t){const e=await(0,i.findDataInfo)(t);e&&200===e.code&&(this.modifyData=e.data,this.addParams=this.modifyData,this.addParams.type=String(this.addParams.type),this.addParams.childType=String(this.addParams.childType),this.modifyData.childType&&"0"!==this.modifyData.childType?this.typeArray=[this.addParams.type,this.modifyData.childType]:this.typeArray=[this.modifyData.type],this.hasBackendData=!0,this.screenCurrency=this.addParams.coin,this.editor&&this.addParams.content&&(this.editor.txt.html(this.addParams.content),this.html=this.addParams.content))},changeScreen(t){let e=t;for(let a in this.currencyList){let t=this.currencyList[a],i=t.value;e===i&&this.$refs.screen.$el.children[0].children[0].setAttribute("style","background:url("+t.imgUrl+") no-repeat 10PX;background-size: 20PX 20PX;color:#333;padding-left: 33PX;")}localStorage.setItem("userManagement_selectedCurrency",t)}}}},46388:function(t,e,a){var i=a(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var s=i(a(66848)),n=(i(a(5507)),a(1652));e.A=s.default.extend({components:{Editor:Editor,Toolbar:Toolbar},data(){return{editor:null,html:"

hello

",toolbarConfig:{excludeKeys:[],insertKeys:{index:0,keys:["bold","italic","underline","through","code","sub","sup","clearStyle"]}},editorConfig:{placeholder:"请在此输入文档内容...",MENU_CONF:{}},mode:"default",addParams:{title:"",content:"",type:"",lang:"",imageUrl:""},lastSaveTime:"",autoSaveTimer:null,isSaving:!1,previewVisible:!1,currentTime:"",TypeList:[]}},methods:{async fetchAddDocument(t){await(0,n.addDocument)(t)},onCreated(t){this.editor=Object.seal(t),this.addParams.content&&this.$nextTick((()=>{t.setHtml(this.addParams.content)}))},handelAddDocument(){this.addParams.type?(this.editor&&(this.addParams.content=this.editor.getHtml()),this.fetchAddDocument(this.addParams)):this.$message({message:"请填写文档类型",type:"warning",duration:4e3,showClose:!0})},handlePreview(){this.previewVisible=!0,this.currentTime=(new Date).toLocaleString("zh-CN",{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit"})},handlePreviewClose(){this.previewVisible=!1},handlePrintPreview(){const t=window.open("","_blank");t&&(t.document.write(`\n \n \n ${this.addParams.title||"文档预览"}\n \n \n \n ${this.addParams.content||'
📄

暂无内容

'}\n \n \n `),t.document.close(),t.print(),t.close())},handleSave(){this.manualSave(),this.$message({message:"内容已保存到本地,请尽快发布,关闭页面可能丢失内容",type:"success",duration:4e3,showClose:!0})},handleEditorChange(){this.handleAutoSave()},handleAutoSave(){this.isSaving=!0,this.autoSaveTimer&&clearTimeout(this.autoSaveTimer),this.autoSaveTimer=setTimeout((()=>{this.saveToLocalStorage()}),1500)},saveToLocalStorage(){try{this.editor&&(this.addParams.content=this.editor.getHtml());const t={title:this.addParams.title,content:this.addParams.content,type:this.addParams.type,imageUrl:this.addParams.imageUrl,timestamp:(new Date).toLocaleString("zh-CN",{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit"}),lastModified:Date.now()};localStorage.setItem("editor_draft",JSON.stringify(t)),this.lastSaveTime=t.timestamp,this.isSaving=!1}catch(error){console.error("自动保存失败:",error),this.isSaving=!1}},loadFromLocalStorage(){try{const t=localStorage.getItem("editor_draft");if(t){const e=JSON.parse(t),a=Date.now()-(e.lastModified||0)>6048e5;if(a)return console.log("本地数据已过期,清除缓存"),void localStorage.removeItem("editor_draft");this.$nextTick((()=>{this.addParams.title=e.title||"",this.addParams.content=e.content||"",this.addParams.type=e.type||"1",this.addParams.imageUrl=e.imageUrl||"",this.lastSaveTime=e.timestamp||"",this.editor&&this.editor.setHtml(e.content||"")}))}}catch(error){console.error("恢复数据失败:",error)}},clearDraft(){localStorage.removeItem("editor_draft"),this.lastSaveTime="",this.isSaving=!1},manualSave(){this.editor&&(this.addParams.content=this.editor.getHtml()),this.saveToLocalStorage()},handleBeforeUnload(t){(this.addParams.title||this.addParams.content)&&(this.editor&&(this.addParams.content=this.editor.getHtml()),this.saveToLocalStorage())},getDocumentTypeName(t){switch(t){case"1":return"服务条款";case"2":return"api文档";case"3":return"挖矿教程";case"0":return"其他";default:return"未知类型"}}},mounted(){this.loadFromLocalStorage(),window.addEventListener("beforeunload",this.handleBeforeUnload),setTimeout((()=>{this.addParams.content||(this.html="

模拟 Ajax 异步设置内容 HTML

")}),1500)},beforeDestroy(){this.editor&&(this.addParams.content=this.editor.getHtml()),this.saveToLocalStorage(),window.removeEventListener("beforeunload",this.handleBeforeUnload),this.autoSaveTimer&&clearTimeout(this.autoSaveTimer);const t=this.editor;null!=t&&t.destroy()},beforeRouteLeave(t,e,a){this.editor&&(this.addParams.content=this.editor.getHtml()),this.saveToLocalStorage(),a()}})},48047:function(t,e,a){var i=a(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0,a(44114),a(18111),a(20116),a(61701);var s=i(a(66848)),n=i(a(5507)),o=a(1652),r=i(a(42389));e.A=s.default.extend({mixins:[r.default],data(){return{editor:null,html:"",hasSetEditorContent:!1,mode:"default",addParams:{title:"",content:"",type:"",lang:"",titleUrl:"",articleUrl:"",childType:"",coin:""},lastSaveTime:"",autoSaveTimer:null,isSaving:!1,previewVisible:!1,currentTime:"",TypeList:[],addLoading:!1,typeArray:[]}},mounted(){try{this.TypeList=JSON.parse(localStorage.getItem("TypeList")),this.TypeList=this.TypeList.map((t=>({...t,label:this.$t(t.label),children:t.children?t.children.map((t=>({...t,label:this.$t(t.label)}))):void 0})))}catch(error){console.log(error)}this.loadFromLocalStorage(),window.addEventListener("beforeunload",this.handleBeforeUnload),setTimeout((()=>{this.addParams.content||(this.html="

模拟 Ajax 异步设置内容 HTML

")}),1500),this.editor=new n.default(this.$refs.editor),this.editor.config.height=600,this.editor.config.onchange=t=>{this.html=t,this.addParams.content=t},this.editor.config.colors=["#651FFF","#FF4081","#FF9900","#FFC107","#FF5722","#9C27B0","#673AB7","#3F51B5","#000000","#ffffff","#eeece0","#1c487f","#4d80bf","#c24f4a","#8baa4a","#a96b59","#2b2b2b","#b6975a","#5b9bd5","#70ad47","#ed7d31","#ffc000","#7030a0","#f4b084","#bdd7ee","#a9d08e","#ffe699","#d9d9d9","#f8cbad","#e2efda","#fff2cc","#dbe5f1","#e4dfec","#fbeee6","#f6f6f6","#ff0000","#00b050","#0070c0","#7030a0","#ff9900","#808080"],this.editor.config.fontNames=[{name:"黑体",value:"黑体"},{name:"绝绝字体",value:"Times New Roman"},"黑体","仿宋","楷体","标楷体","华文仿宋","华文楷体","宋体","微软雅黑","Arial","Tahoma","Verdana","Times New Roman","Courier New"],this.editor.create(),this.addParams.content&&!this.hasSetEditorContent&&(this.editor.txt.html(this.addParams.content),this.html=this.addParams.content,this.hasSetEditorContent=!0)},methods:{async fetchUpdateDocument(t){this.setLoading("addLoading",!0);const e=await(0,o.updateDocument)(t);e&&200==e.code&&(this.$message.success(this.$t("backendSystem.updateSuccess")),this.$router.push({path:`/${this.$i18n.locale}/documentManagement`})),this.setLoading("addLoading",!1)},onCreated(t){this.editor=t,console.log("编辑器已初始化",this.editor),this.addParams.content&&this.$nextTick((()=>{this.editor.txt.html(this.addParams.content)}))},handelAddDocument(){this.editor&&(this.addParams.content=this.editor.txt.html()),console.log(this.addParams.content,"this.addParams.content"),this.addParams.content.trim()?this.addParams.type?(console.log(this.addParams.type,this.addParams.childType,"this.addP就发货很符合arams.type"),"0"!=this.addParams.type||this.addParams.childType&&"0"!=this.addParams.childType?this.addParams.title?"1"!=this.addParams.type||this.screenCurrency?(this.addParams.content&&(this.addParams.content=this.addParams.content.replace(/]*href="#[^"]*")[^>]*>/gi,(function(t){return t.replace(/\s*target="_blank"/gi,"")}))),this.addParams.coin=this.screenCurrency,console.log(this.addParams.content,"this.addParams.content"),this.fetchUpdateDocument(this.addParams)):this.$message({message:this.$t("backendSystem.pleaseSelectCurrency2")||"添加挖矿教程,请选择币种",type:"warning",duration:4e3,showClose:!0}):this.$message({message:this.$t("backendSystem.pleaseInputTitle")||"请输入标题",type:"warning",duration:4e3,showClose:!0}):this.$message({message:this.$t("backendSystem.pleaseInputType")||"请填写文档类型",type:"warning",duration:4e3,showClose:!0})):this.$message({message:this.$t("backendSystem.pleaseInputType")||"请填写文档类型",type:"warning",duration:4e3,showClose:!0}):this.$message({message:this.$t("backendSystem.pleaseInputContent2")||"请输入内容",type:"warning",duration:4e3,showClose:!0})},handlePreview(){this.previewVisible=!0,this.currentTime=(new Date).toLocaleString("zh-CN",{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit"})},handlePreviewClose(){this.previewVisible=!1},handleSave(){this.addParams.content=this.addParams.content.replace(/]*href="#([^"]*)")[^>]*>/gi,(function(t){return t.replace(/\s*target="_blank"/gi,"")})),this.manualSave(),this.$message({message:this.$t("backendSystem.contentSaved")||"内容已保存到本地,请尽快发布,关闭页面可能丢失内容",type:"success",duration:4e3,showClose:!0})},handleEditorChange(){this.handleAutoSave()},handleAutoSaveType(t){try{if(0==t.length)return;console.log("走这里了嘛",t);let e=this.TypeList.find((e=>e.value===t[0]));if(console.log(e,t,"item"),e.articleUrl)this.addParams.articleUrl=e.articleUrl;else if(e.children&&e.children.length>0){let a=e.children.find((e=>e.value===t[1]));this.addParams.articleUrl=a.articleUrl}else this.addParams.articleUrl="";this.addParams.type=t[0],this.addParams.childType=t[1]}catch(error){console.log(error,"error")}this.isSaving=!0,this.autoSaveTimer&&clearTimeout(this.autoSaveTimer),this.autoSaveTimer=setTimeout((()=>{this.saveToLocalStorage()}),1500)},handleAutoSave(){this.isSaving=!0,this.autoSaveTimer&&clearTimeout(this.autoSaveTimer),this.autoSaveTimer=setTimeout((()=>{this.saveToLocalStorage()}),1500)},saveToLocalStorage(){try{this.editor&&(this.addParams.content=this.editor.txt.html());const t={title:this.addParams.title,content:this.addParams.content,type:this.addParams.type,imageUrl:this.addParams.imageUrl,timestamp:(new Date).toLocaleString("zh-CN",{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit"}),lastModified:Date.now()};localStorage.setItem("editor_draft",JSON.stringify(t)),this.lastSaveTime=t.timestamp,this.isSaving=!1}catch(error){console.error("自动保存失败:",error),this.isSaving=!1}},loadFromLocalStorage(){try{const t=localStorage.getItem("editor_draft");if(t){const e=JSON.parse(t),a=Date.now()-(e.lastModified||0)>6048e5;if(a)return console.log("本地数据已过期,清除缓存"),void localStorage.removeItem("editor_draft");this.$nextTick((()=>{"0"!==e.type&&(this.addParams.title=e.title||"",this.addParams.content=e.content||"",this.addParams.type=e.type||"1",this.addParams.imageUrl=e.imageUrl||"",this.lastSaveTime=e.timestamp||"",this.editor&&this.editor.txt.html(e.content||""))}))}}catch(error){console.error("恢复数据失败:",error)}},clearDraft(){localStorage.removeItem("editor_draft"),this.lastSaveTime="",this.isSaving=!1},manualSave(){this.editor&&(this.addParams.content=this.editor.txt.html()),this.saveToLocalStorage()},handleBeforeUnload(t){(this.addParams.title||this.addParams.content)&&(this.editor&&(this.addParams.content=this.editor.txt.html()),this.saveToLocalStorage())},getDocumentTypeName(t){switch(t){case"1":return"home.serviceTerms";case"2":return"home.APIfile";case"3":return"home.miningTutorial";case"0":return"home.other";default:return"home.unknownType"}},handleInsertAnchor(){this.editor?this.$prompt(this.$t("backendSystem.pleaseInputAnchorName")||"请输入锚点名称(不能重复)",this.$t("backendSystem.insertAnchor")||"插入锚点",{confirmButtonText:this.$t("backendSystem.confirm")||"确定",cancelButtonText:this.$t("backendSystem.cancel")||"取消",inputPattern:/^[a-zA-Z0-9_-]+$/,inputErrorMessage:this.$t("backendSystem.anchorNameErrorMessage")||"锚点名只能包含字母、数字、下划线和中划线"}).then((({value:t})=>{this.editor.cmd.do("insertHTML",``),this.html=this.editor.txt.html(),this.addParams.content=this.html,this.$message.success(this.$t("backendSystem.anchorInserted")||"锚点已插入")})).catch((()=>{})):this.$message.warning("编辑器尚未初始化")},handleAddHeadingId(){if(!this.editor)return void this.$message.warning("编辑器尚未初始化");const t=this.editor.getElemsByTypePrefix("header");if(!t||0===t.length)return void this.$message.warning(this.$t("backendSystem.pleaseSelectHeader")||"请先选中一个标题(h1~h6)");const e=t[0];this.$prompt(this.$t("backendSystem.pleaseInputAnchorID")||"请输入锚点ID(不能重复)",this.$t("backendSystem.titleAnchor")||"标题锚点",{confirmButtonText:this.$t("backendSystem.confirm")||"确定",cancelButtonText:this.$t("backendSystem.cancel")||"取消",inputPattern:/^[a-zA-Z0-9_-]+$/,inputErrorMessage:this.$t("backendSystem.anchorIDErrorMessage")||"ID只能包含字母、数字、下划线和中划线"}).then((({value:t})=>{this.editor.setElemAttribute(e,"id",t),this.$message.success(this.$t("backendSystem.anchorIDAdded")||"锚点ID已添加")})).catch((()=>{}))}},beforeDestroy(){this.editor&&this.editor.destroy()},beforeRouteLeave(t,e,a){this.editor&&(this.addParams.content=this.editor.txt.html()),this.saveToLocalStorage(),a()}})},50600:function(t,e,a){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{staticClass:"dataMain"},[e("section",{staticClass:"content"},[e("p",{staticClass:"title2"},[t._v(t._s(t.$t("chooseUs.why")))]),e("section",{staticClass:"topBox"},[e("div",{staticClass:"top top1"},[e("div",{staticClass:"icon"},[e("img",{staticStyle:{width:"45px"},attrs:{src:a(16712),alt:"wallet",loading:"lazy"}}),e("h4",[t._v(t._s(t.$t("chooseUs.title1")))])]),e("p",[t._v("    "+t._s(t.$t("chooseUs.text1")))])]),e("div",{staticClass:"top top2"},[e("div",{staticClass:"icon"},[e("img",{attrs:{src:a(21525),alt:"security",loading:"lazy"}}),e("h4",[t._v(t._s(t.$t("chooseUs.title2")))])]),e("p",[t._v("     "+t._s(t.$t("chooseUs.text2")))])]),e("div",{staticClass:"top top3"},[e("div",{staticClass:"icon"},[e("img",{attrs:{src:a(84441),alt:"customer service",loading:"lazy"}}),e("h4",[t._v(t._s(t.$t("chooseUs.title3")))])]),e("p",[t._v("     "+t._s(t.$t("chooseUs.text3")))])])])])])},e.Yp=[]},58259:function(t,e,a){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",[t.$isMobile?e("section",[e("section",{staticClass:"describeBox"},[e("div",{staticClass:"describe-row"},[e("div",{staticClass:"broadcast-scroll-wrap"},[e("div",{staticClass:"broadcast-scroll-list",style:t.scrollStyle,on:{mouseenter:t.stopScroll,mouseleave:t.startScroll}},t._l(t.broadcastList,(function(a){return e("div",{key:a.id,staticClass:"broadcast-scroll-item"},[e("i",{staticClass:"iconfont icon-tishishuoming"}),e("span",{staticClass:"describeTitle"},[t._v(t._s(t.$t("home.describeTitle")))]),e("span",{staticClass:"describeContent",attrs:{title:a.content}},[t._v(" "+t._s(a.content))]),a.buttonContent&&Array.isArray(a.buttonContent)&&a.buttonContent.length>0?e("div",{staticClass:"button-group"},t._l(a.buttonContent,(function(i,s){return e("span",{key:`button-${a.id}-${s}`,staticClass:"view",attrs:{title:i},on:{click:function(e){return e.stopPropagation(),t.handelJump(a.buttonPath[s])}}},[t._v(" "+t._s(i||t.$t("home.view"))+" ")])})),0):t._e()])})),0)])])]),t._m(0),e("div",{staticClass:"currencySelect"},[e("el-menu",{staticClass:"el-menu-demo",attrs:{mode:"horizontal"}},[e("el-submenu",{staticStyle:{background:"transparent"},attrs:{index:"1"}},[e("template",{slot:"title"},[e("span",{ref:"coinSelect",staticClass:"coinSelect"},[e("img",{attrs:{src:t.currencyPath,alt:"coin"}}),e("span",[t._v(t._s(t.handelLabel(t.params.coin)))])])]),e("ul",{staticClass:"moveCurrencyBox"},t._l(t.currencyList,(function(a){return e("li",{key:a.value,on:{click:function(e){return t.clickCurrency(a)}}},[e("img",{attrs:{src:a.img,alt:"coin",loading:"lazy"}}),e("p",[t._v(t._s(a.label))])])})),0)],2)],1)],1),e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.minerChartLoading,expression:"minerChartLoading"}],staticClass:"miningPoolLeft"},[e("div",{staticClass:"interval"},[e("div",{staticClass:"chartBth"},[e("div",{staticClass:"slideBox"},[e("span",{class:{slideActive:t.powerActive},on:{click:t.handelPower}},[t._v(t._s(t.$t("home.CurrencyPower")))]),e("span",{class:{slideActive:!t.powerActive},on:{click:t.handelMiner}},[t._v(t._s(t.$t("home.networkPower")))])])]),e("div",{staticClass:"timeBox"},t._l(t.intervalList,(function(a){return e("span",{key:a.value,staticClass:"times",class:{timeActive:t.timeActive==a.value},on:{click:function(e){return t.intervalChange(a.value)}}},[t._v(t._s(t.$t(a.label)))])})),0)]),t.powerActive?e("div",{staticStyle:{width:"100%",height:"100%","min-width":"200px"},attrs:{id:"chart"}}):t._e(),t.powerActive?t._e():e("div",{staticStyle:{width:"100%",height:"100%","min-width":"200px","min-height":"380px"},attrs:{id:"minerChart"}})]),e("div",{staticClass:"miningPoolRight"},[e("ul",{staticClass:"dataBlockBox"},[e("li",{staticClass:"dataBlock"},[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.power")}},[t._v(t._s(t.$t("home.power")))]),e("p",{staticClass:"content",attrs:{title:t.CoinData.poolPower}},[t._v(" "+t._s(t.CoinData.poolPower)+" ")])]),t._m(1)]),"enx"!==this.params.coin?e("li",{staticClass:"dataBlock"},[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.networkPower")}},[t._v(" "+t._s(t.$t("home.networkPower"))+" ")]),e("p",{staticClass:"content",attrs:{title:t.CoinData.totalPower}},[t._v(" "+t._s(t.CoinData.totalPower)+" ")])]),t._m(2)]):t._e(),"enx"!==this.params.coin?e("li",{staticClass:"dataBlock"},[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.networkDifficulty")}},[t._v(" "+t._s(t.$t("home.networkDifficulty"))+" ")]),e("p",{staticClass:"content",attrs:{title:t.CoinData.totalDifficulty}},[t._v(" "+t._s(t.CoinData.totalDifficulty)+" ")])]),t._m(3)]):t._e(),e("li",[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.algorithm")}},[t._v(" "+t._s(t.$t("home.algorithm"))+" ")]),e("p",{staticClass:"content",attrs:{title:t.CoinData.algorithm}},[t._v(" "+t._s(t.CoinData.algorithm)+" ")])]),t._m(4)]),"enx"!==this.params.coin?e("li",[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.height")}},[t._v(t._s(t.$t("home.height")))]),e("p",{staticClass:"content",attrs:{title:t.CoinData.height}},[t._v(" "+t._s(t.CoinData.height)+" ")])]),t._m(5)]):t._e(),"enx"!==this.params.coin?e("li",[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.coinValue")}},[t._v(" "+t._s(t.$t("home.coinValue"))+" ")]),e("p",{staticClass:"content",attrs:{title:t.CoinData.price}},[t._v(" "+t._s(t.CoinData.price)+" ")])]),t._m(6)]):t._e(),e("li",[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.mode")}},[t._v(" "+t._s(t.$t("home.mode"))+" ")]),e("p",{staticClass:"content",attrs:{title:t.CoinData.model}},[t._v(" "+t._s(t.CoinData.model)+" / "+t._s(t.CoinData.fee)+"% ")])]),t._m(7)]),e("li",{staticClass:"profitCalculation",attrs:{id:"myDiv"},on:{click:t.handelProfitCalculation}},[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.profitCalculation")}},[t._v(" "+t._s(t.$t("home.profitCalculation"))+" ")])]),t._m(8)]),e("li",{staticClass:"ConnectMiningPool",on:{click:function(e){return t.handelJump("/AccessMiningPool")}}},[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.ConnectMiningPool")}},[t._v(" "+t._s(t.$t("home.ConnectMiningPool"))+" ")]),e("p",{staticClass:"content"})]),t._m(9)])])]),e("div",{staticClass:"reportBlock"},[e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.reportBlockLoading,expression:"reportBlockLoading"}],staticClass:"reportBlockBox"},[e("div",{staticClass:"belowTable"},[e("ul",[e("li",{staticClass:"table-title2"},[e("span",{staticClass:"block-Height",attrs:{title:t.$t("home.blockHeight")}},[t._v(t._s(t.$t("home.blockHeight")))]),e("span",{staticClass:"block-Time",attrs:{title:t.$t("home.blockingTime")}},[t._v(t._s(t.$t("home.blockingTime")))])]),t._l(t.newBlockInfoData,(function(a){return e("li",{key:a.hash,staticClass:"currency-list2",on:{click:t.clickReportBlock}},[e("span",{staticClass:"block-height"},[t._v(t._s(a.height))]),e("span",{staticClass:"block-time"},[t._v(t._s(a.date))])])}))],2)])])]),e("section",{directives:[{name:"show",rawName:"v-show",value:t.showCalculator,expression:"showCalculator"}],staticClass:"Calculator"},[e("div",{staticClass:"prop"},[e("div",{staticClass:"titleBox"},[e("span",[t._v(t._s(t.$t("home.profitCalculation")))]),e("i",{staticClass:"iconfont icon-guanbi close",on:{click:t.handelClose}})]),e("div",{staticClass:"cautionBox"},[e("span",[t._v(t._s(t.$t("home.caution")))]),t._v(" "+t._s(t.$t("home.calculatorTips"))+" ")]),e("div",{staticClass:"selectCurrency"},[e("div",{staticClass:"Currency2"},[e("el-select",{ref:"select",on:{change:function(e){return t.changeSelection(t.value)}},model:{value:t.value,callback:function(e){t.value=e},expression:"value"}},t._l(t.currencyList,(function(a){return e("el-option",{key:a.value,attrs:{label:a.label,value:a.value}},[e("div",{staticStyle:{display:"flex","align-items":"center"}},[e("img",{staticStyle:{float:"left",width:"20px"},attrs:{src:a.imgUrl}}),e("span",{staticStyle:{float:"left","margin-left":"5px"}},[t._v(" "+t._s(a.label))])])])})),1)],1)]),e("div",{staticClass:"content2"},[e("div",{staticClass:"item"},[e("p",{staticClass:"power"},[t._v(t._s(t.$t("home.Power"))+":")]),e("el-input",{staticClass:"input-with-select",staticStyle:{width:"90%",height:"30px"},on:{change:t.handelCalculation},model:{value:t.inputPower,callback:function(e){t.inputPower=e},expression:"inputPower"}},[e("el-select",{staticStyle:{width:"100px"},attrs:{slot:"append"},on:{change:t.handelCalculation},slot:"append",model:{value:t.select,callback:function(e){t.select=e},expression:"select"}},[e("el-option",{attrs:{label:"MH/s",value:"MH/s"}}),e("el-option",{attrs:{label:"GH/s",value:"GH/s"}}),e("el-option",{attrs:{label:"TH/s",value:"TH/s"}})],1)],1)],1),e("div",{staticClass:"item"},[e("p",{staticClass:"time"},[t._v(t._s(t.$t("home.time"))+":")]),e("el-select",{staticStyle:{width:"90%"},on:{change:t.handelCalculation},model:{value:t.time,callback:function(e){t.time=e},expression:"time"}},t._l(t.selectTime,(function(a){return e("el-option",{key:a.value,attrs:{label:t.$t(a.label),value:a.value}})})),1)],1),e("div",{staticClass:"item"},[e("p",{staticClass:"profit"},[t._v(t._s(t.$t("home.profit"))+":")]),e("el-input",{staticStyle:{width:"90%",height:"20px"},attrs:{disabled:"",placeholder:t.$t("mining.profit")},model:{value:t.profit,callback:function(e){t.profit=e},expression:"profit"}})],1)])])])]):e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.minerChartLoading,expression:"minerChartLoading"}],staticClass:"content"},[t._m(10),e("el-row",[e("el-col",{attrs:{xs:24,sm:24,md:24,lg:24,xl:24}},[e("el-card",[e("div",{staticClass:"monitor-list"},[e("div",{staticClass:"btn left",on:{click:t.scrollLeft}},[e("i",{staticClass:"iconfont icon-icon-prev"})]),e("div",{staticClass:"list-box",attrs:{id:"list-box"}},[e("div",{staticClass:"list",attrs:{id:"list"}},t._l(t.currencyList,(function(a){return e("div",{key:a.value,staticClass:"list-item",on:{click:function(e){return t.clickCurrency(a)}}},[e("img",{attrs:{src:a.img,alt:"coin"}}),e("span",{class:{active:t.itemActive===a.value}},[t._v(" "+t._s(a.label))])])})),0)]),e("div",{staticClass:"btn right",on:{click:t.scrollRight}},[e("i",{staticClass:"iconfont icon-zuoyoujiantou1"})])])])],1)],1),e("section",{staticClass:"describeBox"},[e("div",{staticClass:"describe-row"},[e("div",{staticClass:"broadcast-scroll-wrap"},[e("div",{staticClass:"broadcast-scroll-list",style:t.scrollStyle,on:{mouseenter:t.stopScroll,mouseleave:t.startScroll}},t._l(t.broadcastList,(function(a){return e("div",{key:a.id,staticClass:"broadcast-scroll-item"},[e("i",{staticClass:"iconfont icon-tishishuoming"}),e("span",{staticClass:"describeTitle"},[t._v(t._s(t.$t("home.describeTitle")))]),e("span",{staticClass:"describeContent",attrs:{title:a.content}},[t._v(" "+t._s(a.content))]),a.buttonContent&&Array.isArray(a.buttonContent)&&a.buttonContent.length>0?e("div",{staticClass:"button-group"},t._l(a.buttonContent,(function(i,s){return e("span",{key:`button-${a.id}-${s}`,staticClass:"view",attrs:{title:i},on:{click:function(e){return e.stopPropagation(),t.handelJump(a.buttonPath[s])}}},[t._v(" "+t._s(i||t.$t("home.view"))+" ")])})),0):t._e()])})),0)])])]),e("div",{staticClass:"contentBox"},[e("el-row",[e("div",{staticClass:"currencyDescription2"},[e("section",{staticClass:"miningPoolBox"},[e("el-col",{attrs:{xs:24,sm:24,md:24,lg:12,xl:12}},[e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.minerChartLoading,expression:"minerChartLoading"},{name:"loading-recovery",rawName:"v-loading-recovery",value:{loading:"minerChartLoading",recovery:["getPoolPowerData","fetchNetPower"]},expression:"{\n loading: 'minerChartLoading',\n recovery: ['getPoolPowerData', 'fetchNetPower'],\n }"}],staticClass:"miningPoolLeft"},[e("div",{staticClass:"interval"},[e("div",{staticClass:"chartBth"},[e("div",{staticClass:"slideBox"},[e("span",{class:{slideActive:t.powerActive},on:{click:t.handelPower}},[t._v(t._s(t.$t("home.CurrencyPower")))]),e("span",{class:{slideActive:!t.powerActive},on:{click:t.handelMiner}},[t._v(t._s(t.$t("home.networkPower")))])])])]),e("div",{staticClass:"timeBox",staticStyle:{"text-align":"right","padding-right":"35px","margin-bottom":"8px"}},t._l(t.intervalList,(function(a){return e("span",{key:a.value,staticClass:"times",class:{timeActive:t.timeActive==a.value},on:{click:function(e){return t.intervalChange(a.value)}}},[t._v(t._s(t.$t(a.label)))])})),0),t.powerActive?e("div",{staticStyle:{width:"100%",height:"100%","min-width":"200px"},attrs:{id:"chart"}}):t._e(),t.powerActive?t._e():e("div",{staticStyle:{width:"100%",height:"100%"},attrs:{id:"minerChart"}})])]),e("el-col",{attrs:{xs:24,sm:24,md:24,lg:12,xl:12}},[e("div",{staticClass:"miningPoolRight"},[e("ul",{staticClass:"dataBlockBox"},[e("li",{class:{dataBlock:"enx"!==this.params.coin}},[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.power")}},[t._v(t._s(t.$t("home.power")))]),e("p",{staticClass:"content",attrs:{title:t.CoinData.poolPower}},[t._v(" "+t._s(t.CoinData.poolPower)+" ")])]),e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(48370),alt:"power"}})])]),"enx"!==this.params.coin?e("li",{staticClass:"dataBlock"},[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.networkPower")}},[t._v(" "+t._s(t.$t("home.networkPower"))+" ")]),e("p",{staticClass:"content",attrs:{title:t.CoinData.totalPower}},[t._v(" "+t._s(t.CoinData.totalPower)+" ")])]),e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(27596),alt:"Computing power"}})])]):t._e(),"enx"!==this.params.coin?e("li",{staticClass:"dataBlock"},[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.networkDifficulty")}},[t._v(" "+t._s(t.$t("home.networkDifficulty"))+" ")]),e("p",{staticClass:"content",attrs:{title:t.CoinData.totalDifficulty}},[t._v(" "+t._s(t.CoinData.totalDifficulty)+" ")])]),e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(69218),alt:"difficulty"}})])]):t._e(),e("li",[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.algorithm")}},[t._v(" "+t._s(t.$t("home.algorithm"))+" ")]),e("p",{staticClass:"content",attrs:{title:t.CoinData.algorithm}},[t._v(" "+t._s(t.CoinData.algorithm)+" ")])]),e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(66560),alt:"algorithm"}})])]),"enx"!==this.params.coin?e("li",[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.height")}},[t._v(" "+t._s(t.$t("home.height"))+" ")]),e("p",{staticClass:"content",attrs:{title:t.CoinData.height}},[t._v(" "+t._s(t.CoinData.height)+" ")])]),e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(1708),alt:"height"}})])]):t._e(),"enx"!==this.params.coin?e("li",[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.coinValue")}},[t._v(" "+t._s(t.$t("home.coinValue"))+" ")]),e("p",{staticClass:"content",attrs:{title:t.CoinData.price}},[t._v(" "+t._s(t.CoinData.price)+" ")])]),e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(37720),alt:"Currency price"}})])]):t._e(),e("li",[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.mode")}},[t._v(" "+t._s(t.$t("home.mode"))+" ")]),e("p",{staticClass:"content",staticStyle:{"font-size":"0.8rem","margin-right":"5px"},attrs:{title:t.CoinData.price}},[t._v(" "+t._s(t.CoinData.model)+" / "+t._s(t.CoinData.fee)+"% ")])]),e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(74910),alt:"Profit Calculator"}})])]),e("li",{staticClass:"profitCalculation",attrs:{id:"myDiv"},on:{click:t.handelProfitCalculation}},[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.profitCalculation")}},[t._v(" "+t._s(t.$t("home.profitCalculation"))+" ")])]),e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(67698),alt:"Profit Calculator"}})])]),e("li",{staticClass:"ConnectMiningPool",on:{click:function(e){return t.handelJump("/AccessMiningPool")}}},[e("div",{staticClass:"text"},[e("p",{attrs:{title:t.$t("home.ConnectMiningPool")}},[t._v(" "+t._s(t.$t("home.ConnectMiningPool"))+" ")]),e("p",{staticClass:"content"})]),e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(1717),alt:"Connect to the mining pool"}})])])])])])],1)])])],1),e("el-row",[e("el-col",{attrs:{xs:24,sm:24,md:24,lg:24,xl:24}},[e("div",{staticClass:"reportBlock"},[e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.reportBlockLoading,expression:"reportBlockLoading"},{name:"loading-recovery",rawName:"v-loading-recovery",value:{loading:"reportBlockLoading",recovery:["getBlockInfoData"]},expression:"{\n loading: 'reportBlockLoading',\n recovery: ['getBlockInfoData'],\n }"}],staticClass:"reportBlockBox"},[e("div",{staticClass:"belowTable"},[e("ul",[e("li",{staticClass:"table-title"},[e("span",{attrs:{title:t.$t("home.blockHeight")}},[t._v(t._s(t.$t("home.blockHeight")))]),e("span",{attrs:{title:t.$t("home.blockingTime")}},[t._v(t._s(t.$t("home.blockingTime")))]),e("span",{staticClass:"hash",attrs:{title:t.$t("home.blockHash")}},[t._v(t._s(t.$t("home.blockHash")))]),e("div",{staticClass:"blockRewards",attrs:{title:t.$t("home.blockRewards")}},[t._v(" "+t._s(t.$t("home.blockRewards"))+" ("+t._s(t.handelLabel2(t.params.coin))+") ")])]),t._l(t.newBlockInfoData,(function(a){return e("li",{key:a.hash,staticClass:"currency-list",on:{click:t.clickReportBlock}},[e("span",[t._v(t._s(a.height))]),e("span",[t._v(t._s(a.date))]),e("span",{staticClass:"hash",attrs:{title:a.hash}},[t._v(t._s(a.hash))]),e("span",{staticClass:"reward",attrs:{title:a.reward}},[t._v(t._s(a.reward))])])}))],2)])])])])],1),e("section",{directives:[{name:"show",rawName:"v-show",value:t.showCalculator,expression:"showCalculator"}],staticClass:"Calculator"},[e("div",{staticClass:"prop"},[e("div",{staticClass:"titleBox"},[e("span",[t._v(t._s(t.$t("home.profitCalculation")))]),e("i",{staticClass:"iconfont icon-guanbi close",on:{click:t.handelClose}})]),e("div",{staticClass:"cautionBox"},[e("span",[t._v(t._s(t.$t("home.caution")))]),t._v(" "+t._s(t.$t("home.calculatorTips"))+" ")]),e("div",{staticClass:"selectCurrency"},[e("div",{staticClass:"Currency2"},[e("el-select",{ref:"select",on:{change:function(e){return t.changeSelection(t.value)}},model:{value:t.value,callback:function(e){t.value=e},expression:"value"}},t._l(t.currencyList,(function(a){return e("el-option",{directives:[{name:"show",rawName:"v-show",value:"enx"!==a.value,expression:"item.value !== 'enx'"}],key:a.value,attrs:{label:a.label,value:a.value}},[e("div",{staticStyle:{display:"flex","align-items":"center"}},[e("img",{staticStyle:{float:"left",width:"20px"},attrs:{src:a.imgUrl}}),e("span",{staticStyle:{float:"left","margin-left":"5px"}},[t._v(" "+t._s(a.label))])])])})),1)],1)]),e("div",{staticClass:"content2"},[e("div",{staticClass:"titleS"},[e("span",{staticClass:"power"},[t._v(t._s(t.$t("home.Power")))]),e("span",{staticClass:"time"},[t._v(t._s(t.$t("home.time")))]),e("span",{staticClass:"profit"},[t._v(t._s(t.$t("home.profit")))])]),e("div",{staticClass:"computingPower"},[e("el-input",{staticClass:"input-with-select",staticStyle:{width:"40%",height:"50px"},on:{change:t.handelCalculation},model:{value:t.inputPower,callback:function(e){t.inputPower=e},expression:"inputPower"}},[e("el-select",{staticStyle:{width:"100px"},attrs:{slot:"append"},on:{change:t.handelCalculation},slot:"append",model:{value:t.select,callback:function(e){t.select=e},expression:"select"}},[e("el-option",{attrs:{label:"MH/s",value:"MH/s"}}),e("el-option",{attrs:{label:"GH/s",value:"GH/s"}}),e("el-option",{attrs:{label:"TH/s",value:"TH/s"}})],1)],1),e("el-select",{staticStyle:{width:"15%"},on:{change:t.handelCalculation},model:{value:t.time,callback:function(e){t.time=e},expression:"time"}},t._l(t.selectTime,(function(a){return e("el-option",{key:a.value,attrs:{label:t.$t(a.label),value:a.value}})})),1),e("el-input",{staticStyle:{width:"40%",height:"50px"},attrs:{disabled:"",placeholder:t.$t("mining.profit")},model:{value:t.profit,callback:function(e){t.profit=e},expression:"profit"}})],1)])])])],1)])},e.Yp=[function(){var t=this,e=t._self._c;return e("div",{staticClass:"imgTop"},[e("img",{attrs:{src:a(27034),alt:"mining",loading:"lazy"}})])},function(){var t=this,e=t._self._c;return e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(48370),alt:"power",loading:"lazy"}})])},function(){var t=this,e=t._self._c;return e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(27596),alt:"Computing power",loading:"lazy"}})])},function(){var t=this,e=t._self._c;return e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(69218),alt:"difficulty",loading:"lazy"}})])},function(){var t=this,e=t._self._c;return e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(66560),alt:"algorithm"}})])},function(){var t=this,e=t._self._c;return e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(1708),alt:"height",loading:"lazy"}})])},function(){var t=this,e=t._self._c;return e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(37720),alt:"Currency price",loading:"lazy"}})])},function(){var t=this,e=t._self._c;return e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(74910),alt:"Currency price",loading:"lazy"}})])},function(){var t=this,e=t._self._c;return e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(67698),alt:"Profit Calculator",loading:"lazy"}})])},function(){var t=this,e=t._self._c;return e("div",{staticClass:"imgIcon"},[e("img",{attrs:{src:a(1717),alt:"Connect to the mining pool",loading:"lazy"}})])},function(){var t=this,e=t._self._c;return e("div",{staticClass:"bgBox"},[e("img",{staticClass:"bgImg",attrs:{src:a(22345),alt:"mining",loading:"lazy"}})])}]},63587:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;t._self._setupProxy;return e("div",{staticClass:"editor-page"},[e("div",{staticClass:"page-header"},[t._m(0),e("div",{staticClass:"header-actions"},[e("el-button",{attrs:{type:"info",icon:"el-icon-view"},on:{click:t.handlePreview}},[t._v(" 预览文档 ")]),e("el-button",{attrs:{type:"success",icon:"el-icon-document"},on:{click:t.handleSave}},[t._v(" 保存文档 ")]),e("el-button",{attrs:{type:"warning",icon:"el-icon-upload2"},on:{click:t.handelAddDocument}},[t._v(" 发布文档 ")])],1)]),e("div",{staticClass:"config-section"},[t._m(1),e("div",{staticClass:"config-content"},[e("div",{staticClass:"config-row"},[e("div",{staticClass:"config-item"},[e("label",{staticClass:"required"},[t._v("文档标题")]),e("el-input",{attrs:{placeholder:"请输入文档标题",size:"medium"},on:{input:t.handleAutoSave},model:{value:t.addParams.title,callback:function(e){t.$set(t.addParams,"title",e)},expression:"addParams.title"}})],1),e("div",{staticClass:"config-item"},[e("label",{staticClass:"required"},[t._v("文档类型")]),e("el-select",{attrs:{placeholder:"请选择文档类型",size:"medium"},on:{change:t.handleAutoSave},model:{value:t.addParams.type,callback:function(e){t.$set(t.addParams,"type",e)},expression:"addParams.type"}},t._l(t.TypeList,(function(t){return e("el-option",{key:t.value,attrs:{label:t.label,value:t.value}})})),1)],1)])])]),e("div",{staticClass:"editor-section"},[t._m(2),e("div",{staticClass:"editor-container"},[e("Toolbar",{staticStyle:{"border-bottom":"1px solid #ccc"},attrs:{editor:t.editor,defaultConfig:t.toolbarConfig,mode:t.mode}}),e("Editor",{staticStyle:{height:"600px","overflow-y":"hidden"},attrs:{defaultConfig:t.editorConfig,mode:t.mode},on:{onCreated:t.onCreated,onChange:t.handleEditorChange},model:{value:t.addParams.content,callback:function(e){t.$set(t.addParams,"content",e)},expression:"addParams.content"}})],1)]),e("el-dialog",{staticClass:"preview-dialog",attrs:{title:"文档预览",visible:t.previewVisible,width:"80%","before-close":t.handlePreviewClose},on:{"update:visible":function(e){t.previewVisible=e}}},[e("div",{staticClass:"preview-content"},[e("div",{domProps:{innerHTML:t._s(t.addParams.content)}}),t.addParams.content?t._e():e("div",{staticClass:"preview-empty"},[e("i",{staticClass:"el-icon-document"}),e("p",[t._v("暂无内容")])])]),e("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[e("el-button",{on:{click:function(e){t.previewVisible=!1}}},[t._v("关闭")]),e("el-button",{attrs:{type:"primary"},on:{click:t.handlePrintPreview}},[t._v("打印预览")])],1)])],1)},e.Yp=[function(){var t=this,e=t._self._c;t._self._setupProxy;return e("div",{staticClass:"header-left"},[e("div",{staticClass:"title-section"},[e("i",{staticClass:"el-icon-edit-outline title-icon"}),e("h1",{staticClass:"page-title"},[t._v("wangeditor 富文本文档编辑器")])]),e("p",{staticClass:"page-description"},[t._v("使用富文本编辑器创建和管理文档,支持文本格式化、链接、列表等功能")])])},function(){var t=this,e=t._self._c;t._self._setupProxy;return e("div",{staticClass:"section-header"},[e("i",{staticClass:"el-icon-setting"}),e("span",[t._v("文档配置")])])},function(){var t=this,e=t._self._c;t._self._setupProxy;return e("div",{staticClass:"section-header"},[e("i",{staticClass:"el-icon-edit-outline"}),e("span",[t._v("富文本编辑器")])])}]},64909:function(t,e,a){a.r(e),a.d(e,{__esModule:function(){return s.B},default:function(){return l}});var i=a(98383),s=a(8619),n=s.A,o=a(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"0e9d673d",null),l=r.exports},67975:function(t,e,a){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0;e["default"]={data(){return{currencyList:[{value:"nexa",label:"nexa",img:a(95194),imgUrl:`${this.$baseApi}img/nexa.png`,poolPower:"565656",totalPower:"5656",totalDifficulty:"879789",algorithm:"545",height:"898989",price:"3333 USD",describe:"NEXA 全名为NEXA Coin。它的主要目标是建立一个安全、高效的去中心化数字资产交易生态系统,提供更好的交易体验和丰富的金融服务‌。"},{value:"grs",label:"grs",img:a(78628),imgUrl:`${this.$baseApi}img/grs.svg`,poolPower:"565656",totalPower:"5656",totalDifficulty:"879789",algorithm:"545",height:"898989",price:"3333 USD",describe:"‌GRS全称为Grscoin,也称为Groestlcoin。它于2014年创立,采用Groestl算法,旨在提供更快速、更节能的交易环境‌"},{value:"mona",label:"mona",img:a(85857),imgUrl:`${this.$baseApi}img/mona.svg`,poolPower:"565656",totalPower:"5656",totalDifficulty:"879789",algorithm:"545",height:"898989",price:"3333 USD",describe:"‌Mona币(Monacoin)‌,中文名为萌奈币,是2013年12月诞生的日本第一个数字货币。Mona币采用Scrypt算法和Proof of Work机制,旨在成为一种广泛接受的数字货币,主要用于日本的在线交易、游戏和文化产业‌。"},{value:"dgbs",label:"dgb(skein)",img:a(94045),imgUrl:`${this.$baseApi}img/dgb.svg`,poolPower:"565656",totalPower:"5656",totalDifficulty:"879789",algorithm:"545",height:"898989",price:"3333 USD",describe:"‌DGB币(DigiByte)是一种全球性的去中心化支付网络和数字货币,灵感来源于比特币‌‌ DGB币的中文名称为“极特币”,其设计理念是提供一个快速、安全且低成本的交易平台"},{value:"dgbq",label:"dgb(qubit)",img:a(94045),imgUrl:`${this.$baseApi}img/dgb.svg`,poolPower:"565656",totalPower:"5656",totalDifficulty:"879789",algorithm:"545",height:"898989",price:"3333 USD",describe:"‌DGB币(DigiByte)是一种全球性的去中心化支付网络和数字货币,灵感来源于比特币‌‌ DGB币的中文名称为“极特币”,其设计理念是提供一个快速、安全且低成本的交易平台"},{value:"dgbo",label:"dgb(odocrypt)",img:a(94045),imgUrl:`${this.$baseApi}img/dgb.svg`,poolPower:"565656",totalPower:"5656",totalDifficulty:"879789",algorithm:"545",height:"898989",price:"3333 USD",describe:"‌DGB币(DigiByte)是一种全球性的去中心化支付网络和数字货币,灵感来源于比特币‌‌ DGB币的中文名称为“极特币”,其设计理念是提供一个快速、安全且低成本的交易平台"},{value:"rxd",label:"radiant",img:a(94158),imgUrl:`${this.$baseApi}img/rxd.png`,poolPower:"565656",totalPower:"5656",totalDifficulty:"879789",algorithm:"545",height:"898989",price:"3333 USD",describe:"Radiant币(RDNT)是Radiant Capital项目的原生代币,主要用于借款利息支付、流动性挖矿释放以及提前提款的罚金‌‌.Radiant Capital是一个建立在Arbitrum上的跨链借贷协议平台,旨在发展成为一个跨链借贷市场,允许用户在多个区块链上进行借贷操作"}]}}}},70191:function(t,e,a){a.r(e),a.d(e,{__esModule:function(){return s.B},default:function(){return l}});var i=a(41299),s=a(32020),n=s.A,o=a(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"adda61ec",null),l=r.exports},70525:function(t,e,a){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,a(44114),a(18111),a(22489),a(20116),a(61701);var i=a(1652);e["default"]={data(){return{tableData:[],listParams:{pageNum:1,pageSize:50,keyword:"",lang:"",type:""},addParams:{content:"",buttonContent:"",buttonPath:""},editParams:{content:"",id:"",buttonContent:"",buttonPath:""},dialogVisible:!1,bthLoading:!1,documentLoading:!1,editDialogVisible:!1,editLoading:!1,byteCount:"",isOverLimit:!1,total:0,pageSizes:[50,100,300],currentPage:1,TypeList:[{value:"1",label:"backendSystem.miningTutorial",articleUrl:"AccessMiningPool"},{value:"2",label:"backendSystem.commonProblems",articleUrl:"commonProblem"},{value:"3",label:"backendSystem.announcementCenter",articleUrl:"announcementDetails"},{value:"0",label:"backendSystem.other",articleUrl:"",children:[{value:"1",label:"home.serviceTerms",articleUrl:"serviceTerms"},{value:"2",label:"home.rate",articleUrl:"rate"},{value:"3",label:"home.APIfile",articleUrl:"apiFile"}]}],queryParams:{keyword:"",type:""}}},mounted(){let t;this.$addStorageEvent(1,"TypeList",JSON.stringify(this.TypeList)),this.listParams.lang=this.$i18n.locale;try{t=JSON.parse(localStorage.getItem("token"))}catch(e){console.log(e)}t&&this.fetchListData(this.listParams)},methods:{async fetchListData(t){this.setLoading("documentLoading",!0);const e=await(0,i.getListDataByPage)(t);200===e.code&&(this.tableData=e.rows,this.total=e.total),this.setLoading("documentLoading",!1)},async fetchUpdateDocument(t){this.setLoading("editLoading",!0),console.log("发送编辑广播请求的参数:",t);const e=await(0,i.updateDocument)(t);200===e.code&&(this.$message.success(this.$t("backendSystem.editSuccess")),this.editDialogVisible=!1,this.fetchListData(this.listParams)),this.setLoading("editLoading",!1)},async deleteDocument(t){const e=await(0,i.deleteDocument)(t);200===e.code&&(this.$message.success(this.$t("backendSystem.deleteSuccess")),this.fetchListData(this.listParams))},handelAddDocument(){const t=this.$i18n.locale;this.$router.push(`/${t}/addDocument`)},handleClose(){this.dialogVisible=!1,this.addParams.content="",this.addParams.buttonContent="",this.addParams.buttonPath="",this.setLoading("bthLoading",!1)},sureAddBroadcast(){if(this.addParams.content=this.addParams.content.trim(),this.addParams.content=this.addParams.content.replace(/[\r\n]/g,""),this.addParams.buttonPath=this.addParams.buttonPath.trim(),this.addParams.buttonPath=this.addParams.buttonPath.replace(/[\r\n]/g,""),this.addParams.content)if(this.addParams.buttonContent&&this.addParams.buttonPath||!this.addParams.buttonContent&&!this.addParams.buttonPath){if(this.addParams.buttonPath){let t=this.addParams.buttonPath.split(/[,,]/).map((t=>t.trim())).filter((t=>t));if(t.length>5)return void this.$message.warning(this.$t("backendSystem.max5"));if(0===t.length)return void this.$message.warning(this.$t("backendSystem.pleaseInputButtonContentAndPath"));if(this.addParams.buttonContent){let e=this.addParams.buttonContent.split(/[,,]/).map((t=>t.trim())).filter((t=>t));if(e.length>5)return void this.$message.warning(this.$t("backendSystem.max5"));if(0===e.length)return void this.$message.warning(this.$t("backendSystem.pleaseInputButtonContentAndPath"));if(this.addParams.buttonContent&&this.addParams.buttonPath&&t.length!==e.length)return void this.$message.warning(this.$t("backendSystem.pathNumberNotMatch"))}const e=t.filter((t=>!isValidPath(t)));if(e.length>0){const t=getPathSuggestions(e[0]);return void this.$message.error(`${this.$t("backendSystem.invalidPath")}: ${e.join(", ")}。${this.$t("backendSystem.invalidPathSuggestions")}: ${t.slice(0,3).join(", ")}`)}}this.addBroadcast(this.addParams)}else this.$message.warning(this.$t("backendSystem.pleaseInputButtonContentAndPath"));else this.$message.warning(this.$t("backendSystem.pleaseInputContent"))},surefetchUpdateDocument(){let t,e;if(this.editParams.content=this.editParams.content.trim(),this.editParams.content=this.editParams.content.replace(/[\r\n]/g,""),this.editParams.content){if(this.editParams.buttonContent){if(this.editParams.buttonContent=this.editParams.buttonContent.trim().replace(/[\r\n]/g,""),!(this.editParams.buttonContent&&this.editParams.buttonPath||!this.editParams.buttonContent&&!this.editParams.buttonPath))return void this.$message.warning(this.$t("backendSystem.pleaseInputButtonContentAndPath"));if(this.editParams.buttonContent){if(t=this.editParams.buttonContent.split(/[,,]/).map((t=>t.trim())).filter((t=>t)),t.length>5)return void this.$message.warning(this.$t("backendSystem.max5"));if(0===t.length)return void this.$message.warning(this.$t("backendSystem.pleaseInputButtonContentAndPath"))}if(this.editParams.buttonPath){if(this.editParams.buttonPath=this.editParams.buttonPath.trim().replace(/[\r\n]/g,""),!(this.editParams.buttonContent&&this.editParams.buttonPath||!this.editParams.buttonContent&&!this.editParams.buttonPath))return void this.$message.warning(this.$t("backendSystem.pleaseInputButtonContentAndPath"));if(this.editParams.buttonPath){if(e=this.editParams.buttonPath.split(/[,,]/).map((t=>t.trim())).filter((t=>t)),e.length>5)return void this.$message.warning(this.$t("backendSystem.max5"));if(0===e.length)return void this.$message.warning(this.$t("backendSystem.pleaseInputButtonContentAndPath"));const t=e.filter((t=>!isValidPath(t)));if(t.length>0){const e=getPathSuggestions(t[0]);return void this.$message.error(`${this.$t("backendSystem.invalidPath")}: ${t.join(", ")}。${this.$t("backendSystem.invalidPathSuggestions")}: ${e.slice(0,3).join(", ")}`)}}}if(this.editParams.buttonContent&&this.editParams.buttonPath&&t.length!==e.length)return void this.$message.warning(this.$t("backendSystem.pathNumberNotMatch"))}this.fetchUpdateDocument(this.editParams)}else this.$message.warning(this.$t("backendSystem.pleaseInputContent"))},handleEdit(t){this.$router.push({path:`/${this.$i18n.locale}/modifyDocument`,query:{id:t.id}})},handleEditClose(){this.editDialogVisible=!1,this.editParams.content="",this.editParams.buttonContent="",this.editParams.buttonPath="",this.setLoading("editLoading",!1)},handelDelete(t){this.deleteDocument({id:t.id})},getUtf8Bytes(t){let e=0;for(let a=0;a100){this.isOverLimit=!0;let i="",s=0;for(let e of t){let t=this.getUtf8Bytes(e);if(s+t>100)break;i+=e,s+=t}"add"===e?this.addParams.content=i:this.editParams.content=i,a=s}else this.isOverLimit=!1,"add"===e?this.addParams.content=t:this.editParams.content=t;this.byteCount=a},handelTime(t){return`${t.split("T")[0]} ${t.split("T")[1]}`},handleSizeChange(t){this.listParams.pageSize=t,this.listParams.pageNum=1,this.currentPage=1,this.fetchListData(this.listParams)},handleCurrentChange(t){this.listParams.pageNum=t,this.fetchListData(this.listParams)},getValidPathSuggestions(){return getPathSuggestions("").slice(0,8)},showPathHelp(){const t=this.getValidPathSuggestions(),e=`\n 常用路径示例:\n ${t.slice(0,10).join("\n")}\n \n 路径规则:\n • 多个路径用逗号分隔\n • 路径必须以 / 开头\n • 支持动态路由参数\n • 不要包含域名,只写路径部分\n `;this.$alert(e,"路径格式说明",{confirmButtonText:"知道了",type:"info",customClass:"path-help-dialog"})},formatButtonContent(t){return t&&"string"===typeof t?t.split(",").map((t=>t.trim())).filter((t=>t)):[]},formatButtonPath(t){return t&&"string"===typeof t?t.split(",").map((t=>t.trim())).filter((t=>t)):[]},handelType(t){try{let e=this.TypeList.find((e=>e.value==t)).label;return this.$t(e)}catch(error){return""}},changeScreen(t){this.listParams.type=t,this.fetchListData(this.listParams)},handelQuery(){this.listParams.keyword=this.queryParams.keyword,this.listParams.keyword?this.fetchListData(this.listParams):this.$message.warning(this.$t("backendSystem.pleaseInputKeyword"))},handleInputClear(){this.listParams.keyword=this.queryParams.keyword,this.fetchListData(this.listParams)}}}},81475:function(t,e,a){a.r(e),a.d(e,{__esModule:function(){return s.B},default:function(){return l}});var i=a(50600),s=a(36425),n=s.A,o=a(81656),r=(0,o.A)(n,i.XX,i.Yp,!1,null,"81190992",null),l=r.exports},89547:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;t._self._setupProxy;return e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.addLoading,expression:"addLoading"}],staticClass:"editor-page",class:{"no-scroll":t.addLoading}},[e("section",{staticClass:"header-section"},[e("h2",{staticStyle:{"margin-bottom":"20px"}},[t._v(t._s(t.$t("backendSystem.modifyDocument")||"修改文档"))]),e("div",{staticClass:"page-header"},[e("div",{staticClass:"header-left"},[e("div",{staticClass:"title-section"},[e("i",{staticClass:"el-icon-edit-outline title-icon"}),e("h1",{staticClass:"page-title"},[t._v(t._s(t.$t("backendSystem.wangeditor")||"wangeditor 富文本文档编辑器"))])])]),e("div",{staticClass:"header-actions"},[e("el-button",{attrs:{type:"primary",icon:"el-icon-link"},on:{click:t.handleInsertAnchor}},[t._v(" "+t._s(t.$t("backendSystem.insertAnchor")||"插入锚点")+" ")]),e("el-button",{attrs:{type:"info",icon:"el-icon-view"},on:{click:t.handlePreview}},[t._v(" "+t._s(t.$t("backendSystem.previewDocument")||"预览文档")+" ")]),e("el-button",{attrs:{type:"success",icon:"el-icon-document"},on:{click:t.handleSave}},[t._v(" "+t._s(t.$t("backendSystem.saveDocument")||"保存文档")+" ")]),e("el-button",{attrs:{type:"warning",icon:"el-icon-upload2"},on:{click:t.handelAddDocument}},[t._v(" "+t._s(t.$t("backendSystem.modifyDocument")||"修改文档")+" ")])],1)])]),e("section",{staticClass:"content-section"},[e("div",{staticClass:"config-section"},[e("div",{staticClass:"section-header"},[e("i",{staticClass:"el-icon-setting"}),e("span",[t._v(t._s(t.$t("backendSystem.documentConfiguration")||"文档配置"))])]),e("div",{staticClass:"config-content"},[e("div",{staticClass:"config-row"},[e("div",{staticClass:"config-item"},[e("label",[t._v(t._s(t.$t("backendSystem.navigationTitle")||"导航标题"))]),e("el-input",{attrs:{placeholder:t.$t("backendSystem.pleaseInputDocumentTitle")||"请输入文档标题",size:"medium",maxlength:"30","show-word-limit":""},on:{input:t.handleAutoSave},model:{value:t.addParams.title,callback:function(e){t.$set(t.addParams,"title",e)},expression:"addParams.title"}})],1),e("div",{staticClass:"config-item"},[e("label",{staticClass:"required"},[t._v(t._s(t.$t("backendSystem.documentType")||"文档类型"))]),e("el-cascader",{attrs:{options:t.TypeList,clearable:"",placeholder:t.$t("backendSystem.pleaseSelectDocumentType")||"请选择文档类型",props:{label:"label",value:"value",children:"children"}},on:{change:function(e){return t.handleAutoSaveType(t.typeArray)}},model:{value:t.typeArray,callback:function(e){t.typeArray=e},expression:"typeArray"}})],1)])]),e("div",{staticClass:"config-content"},[e("div",{staticClass:"config-row"},[e("div",{staticClass:"config-item"},[e("label",[t._v(t._s(t.$t("backendSystem.titleImageAddress")||"标题图片地址"))]),e("el-input",{attrs:{placeholder:t.$t("backendSystem.pleaseInputImageAddress")||"请输入图片地址",size:"medium"},on:{input:t.handleAutoSave},model:{value:t.addParams.titleUrl,callback:function(e){t.$set(t.addParams,"titleUrl",e)},expression:"addParams.titleUrl"}})],1),e("div",{staticClass:"config-item"},[e("label",[t._v(t._s(t.$t("backendSystem.articleAccessAddress")||"文章访问地址"))]),e("el-input",{attrs:{placeholder:t.$t("backendSystem.pleaseInputAccessAddress")||"请输入访问地址",size:"medium",maxlength:"50","show-word-limit":""},on:{input:t.handleAutoSave},model:{value:t.addParams.articleUrl,callback:function(e){t.$set(t.addParams,"articleUrl",e)},expression:"addParams.articleUrl"}})],1)])]),e("div",{staticClass:"config-content"},[e("div",{staticClass:"config-row"},[e("div",{staticClass:"config-item"},[e("label",[t._v(t._s(t.$t("backendSystem.coin2")||"币种"))]),e("el-select",{ref:"screen",staticClass:"input",attrs:{size:"middle",placeholder:t.$t("backendSystem.selectCurrency")},on:{change:function(e){return t.changeScreen(t.screenCurrency)}},model:{value:t.screenCurrency,callback:function(e){t.screenCurrency=e},expression:"screenCurrency"}},t._l(t.currencyList,(function(a){return e("el-option",{key:a.value,attrs:{label:a.label,value:a.value}},[e("div",{staticStyle:{display:"flex","align-items":"center"}},[e("img",{staticStyle:{float:"left",width:"20px"},attrs:{src:a.imgUrl}}),e("span",{staticStyle:{float:"left","margin-left":"5px"}},[t._v(" "+t._s(a.label))])])])})),1)],1)])])]),e("div",{staticClass:"editor-section"},[e("div",{staticClass:"section-header"},[e("i",{staticClass:"el-icon-edit-outline"}),e("span",[t._v(t._s(t.$t("backendSystem.richTextEditor")||"富文本编辑器"))])]),e("div",{staticClass:"editor-container"},[e("div",{ref:"editor"})])])]),e("el-dialog",{staticClass:"preview-dialog wangeditor-preview",attrs:{title:t.$t("backendSystem.documentPreview")||"文档预览",visible:t.previewVisible,width:"80%","before-close":t.handlePreviewClose},on:{"update:visible":function(e){t.previewVisible=e}}},[e("div",{staticClass:"preview-content"},[e("div",{staticClass:"dynamic-content",domProps:{innerHTML:t._s(t.addParams.content)}}),t.addParams.content?t._e():e("div",{staticClass:"preview-empty"},[e("i",{staticClass:"el-icon-document"}),e("p",[t._v(t._s(t.$t("backendSystem.noContent")||"暂无内容"))])])]),e("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[e("el-button",{on:{click:function(e){t.previewVisible=!1}}},[t._v(t._s(t.$t("backendSystem.close")||"关闭"))])],1)])],1)},e.Yp=[]},93852:function(t,e,a){var i=a(3999)["default"];Object.defineProperty(e,"B",{value:!0}),e.A=void 0;var s=i(a(37320)),n=i(a(45018));e.A={components:{HorizontalBroadcast:n.default},metaInfo:{meta:[{name:"keywords",content:"M2Pool 矿池,首页,热门币种挖矿,稳定收益,Home,Popular Coins Mining,Stable Income Permission Levels,Account Privileges,Member Level Rates"},{name:"description",content:window.vm.$t("seo.Home")}]},mixins:[s.default]}},98383:function(t,e){e.Yp=e.XX=void 0;e.XX=function(){var t=this,e=t._self._c;return e("div",{directives:[{name:"loading",rawName:"v-loading",value:t.documentLoading,expression:"documentLoading"}]},[e("div",{staticClass:"main-title-box"},[e("div",{staticClass:"main-title"},[t._v(t._s(t.$t("backendSystem.documentManagement")))]),e("el-button",{staticClass:"add-btn",on:{click:t.handelAddDocument}},[t._v(t._s(t.$t("backendSystem.addDocument"))+" "),e("i",{staticClass:"iconfont icon-youjiantou1 arrow"})])],1),e("el-form",{ref:"formRef",staticClass:"demo-form-inline",attrs:{inline:!0,model:t.queryParams}},[e("el-form-item",{attrs:{label:t.$t("backendSystem.documentType")||"文档类型",prop:"type"}},[e("el-select",{ref:"screen",staticClass:"input",attrs:{clearable:"",size:"middle",placeholder:t.$t("backendSystem.pleaseSelect")},on:{change:function(e){return t.changeScreen(t.queryParams.type)}},model:{value:t.queryParams.type,callback:function(e){t.$set(t.queryParams,"type",e)},expression:"queryParams.type"}},t._l(t.TypeList,(function(a){return e("el-option",{key:a.value,attrs:{label:t.$t(a.label),value:a.value}},[e("div",{staticStyle:{display:"flex","align-items":"center"}},[e("img",{staticStyle:{float:"left",width:"20px"},attrs:{src:a.imgUrl}}),e("span",{staticStyle:{float:"left","margin-left":"5px"}},[t._v(" "+t._s(t.$t(a.label)))])])])})),1)],1),e("el-form-item",{staticStyle:{"margin-left":"5vw"},attrs:{label:t.$t("backendSystem.search")||"搜索",prop:"minerUser"}},[e("el-input",{attrs:{placeholder:t.$t("backendSystem.pleaseInput"),clearable:""},on:{clear:t.handleInputClear},model:{value:t.queryParams.keyword,callback:function(e){t.$set(t.queryParams,"keyword",e)},expression:"queryParams.keyword"}})],1),e("el-form-item",{staticStyle:{"margin-left":"1vw"}},[e("el-button",{attrs:{type:"primary"},on:{click:t.handelQuery}},[t._v(t._s(t.$t("backendSystem.query")))])],1)],1),e("el-table",{staticStyle:{width:"100%","margin-bottom":"18px"},attrs:{data:t.tableData,border:"","header-cell-style":{"text-align":"center"},"cell-style":{"text-align":"center"},height:"60vh"}},[e("el-table-column",{attrs:{prop:"id",label:"ID",width:"60"}}),e("el-table-column",{attrs:{prop:"createTime",label:t.$t("backendSystem.createTime")||"创建时间",width:"160","show-overflow-tooltip":""},scopedSlots:t._u([{key:"default",fn:function(e){return[t._v(" "+t._s(t.handelTime(e.row.createTime))+" ")]}}])}),e("el-table-column",{attrs:{prop:"createUser",label:t.$t("backendSystem.createUser")||"创建人",width:"160","show-overflow-tooltip":""}}),e("el-table-column",{attrs:{prop:"content",label:t.$t("backendSystem.content")||"文档内容","show-overflow-tooltip":""}}),e("el-table-column",{attrs:{prop:"title",label:t.$t("backendSystem.documentTitle")||"文档标题",width:"200","show-overflow-tooltip":""}}),e("el-table-column",{attrs:{prop:"type",label:t.$t("backendSystem.documentType")||"文档类型",width:"100","show-overflow-tooltip":""},scopedSlots:t._u([{key:"default",fn:function(e){return[t._v(" "+t._s(t.handelType(e.row.type))+" ")]}}])}),e("el-table-column",{attrs:{prop:"updateTime",label:t.$t("backendSystem.updateTime")||"修改时间",width:"160","show-overflow-tooltip":""},scopedSlots:t._u([{key:"default",fn:function(e){return[t._v(" "+t._s(t.handelTime(e.row.updateTime))+" ")]}}])}),e("el-table-column",{attrs:{prop:"updateUser",label:t.$t("backendSystem.updateUser")||"修改人",width:"160","show-overflow-tooltip":""}}),e("el-table-column",{attrs:{label:t.$t("backendSystem.operation"),width:"160"},scopedSlots:t._u([{key:"default",fn:function(a){return[e("el-button",{attrs:{size:"mini"},on:{click:function(e){return t.handleEdit(a.row)}}},[t._v(t._s(t.$t("backendSystem.edit")))]),e("el-popconfirm",{attrs:{"confirm-button-text":t.$t("work.confirm"),"cancel-button-text":t.$t("work.cancel"),icon:"el-icon-info","icon-color":"red",title:t.$t("alerts.deleteRemind")},on:{confirm:function(e){return t.handelDelete(a.row)}}},[e("el-button",{staticClass:"elBtn",attrs:{slot:"reference",size:"mini"},slot:"reference"},[t._v(t._s(t.$t("personal.delete")))])],1)]}}])})],1),e("el-row",[e("el-col",{staticStyle:{display:"flex","justify-content":"center"},attrs:{span:24}},[e("el-pagination",{staticStyle:{margin:"0 auto"},attrs:{"current-page":t.currentPage,"page-sizes":t.pageSizes,"page-size":t.listParams.pageSize,layout:"total, sizes, prev, pager, next, jumper",total:t.total},on:{"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange,"update:currentPage":function(e){t.currentPage=e},"update:current-page":function(e){t.currentPage=e}}})],1)],1)],1)},e.Yp=[]},99129:function(t,e,a){Object.defineProperty(e,"__esModule",{value:!0}),e["default"]=void 0,a(44114),a(18111),a(20116);var i=a(1652);e["default"]={name:"HelpCenter",data(){return{searchQuery:"",selectedLanguage:"zh",categories:[{id:1,name:"home.APIfile",route:"apiFile"},{id:2,name:"home.miningTutorial",route:"AccessMiningPool/nexaAccess"},{id:3,name:"home.serviceTerms",route:"ServiceTerms"},{id:4,name:"home.rate",route:"rate"},{id:5,name:"home.announcements",route:"announcements"},{id:6,name:"home.commonProblem",route:"commonProblem"}],recommendedItems:[{id:1,description:"home.allocationExplanation",route:"allocationExplanation"}],activities:[],activeParams:{type:"3",lang:this.$i18n.locale,pageNum:1,pageSize:10},TypeList:[{value:"1",label:"挖矿教程"},{value:"2",label:"常见问题"},{value:"3",label:"公告中心"},{value:"0",label:"其他"}]}},mounted(){try{this.TypeList=JSON.parse(localStorage.getItem("TypeList"))}catch(error){console.log(error)}this.fetchActivityList(this.activeParams)},methods:{async fetchActivityList(t){const e=await(0,i.documentsList)(t);console.log(e,"res"),200===e.code&&(this.activities=e.rows)},handleSearch(){if(this.searchQuery.trim()){let t=`/${this.$i18n.locale}/searchResult`;this.$router.push({path:t,query:{keyword:this.searchQuery}})}},handleCategoryClick(t){console.log(t,"i肯定看到");const e=this.$i18n.locale;this.$router.push(`/${e}/${t.route}`)},handleViewMore(){this.$router.push(`/${this.$i18n.locale}/announcements`)},handelType(t){try{let e=this.TypeList.find((e=>e.value==t)).label;return this.$t(e)}catch(error){return""}},handelTime(t){try{return`${t.split("T")[0]} ${t.split("T")[1]}`}catch(error){return""}},handleActivityClick(t){let e=`/${this.$i18n.locale}/announcementDetails`;this.$router.push({path:e,query:{id:t.id}})}}}}}]); \ No newline at end of file diff --git a/mining-pool/test/js/app-ca0caf25.ba8086a4.js.gz b/mining-pool/test/js/app-ca0caf25.ba8086a4.js.gz new file mode 100644 index 0000000..c54e787 Binary files /dev/null and b/mining-pool/test/js/app-ca0caf25.ba8086a4.js.gz differ diff --git a/mining-pool/test/js/app-cfd820c8.9d119032.js b/mining-pool/test/js/app-cfd820c8.9d119032.js new file mode 100644 index 0000000..b23e3ef --- /dev/null +++ b/mining-pool/test/js/app-cfd820c8.9d119032.js @@ -0,0 +1 @@ +"use strict";(self["webpackChunkmining_pool"]=self["webpackChunkmining_pool"]||[]).push([[213],{7330:function(t,i,e){var a=e(91774)["default"];Object.defineProperty(i,"__esModule",{value:!0}),i["default"]=void 0,e(44114),e(18111),e(22489),e(20116),e(7588);var s=a(e(3574)),n=e(22327),o=e(82908);i["default"]={data(){return{activeName:"power",option:{legend:{right:100,show:!0,formatter:function(t){return t}},grid:{},tooltip:{trigger:"axis",textStyle:{align:"left"},animation:!1,formatter:function(t){var i;i=t[0].axisValueLabel;for(let e=0;e<=t.length-1;e++)"Rejection rate"==t[e].seriesName||"拒绝率"==t[e].seriesName?i+=`
${t[e].marker} ${t[e].seriesName}      ${t[e].value}%`:i+=`
${t[e].marker} ${t[e].seriesName}      ${t[e].value}`;return i},axisPointer:{animation:!1,snap:!0,label:{precision:2},type:"cross",crossStyle:{width:.5},lineStyle:{}}},xAxis:{boundaryGap:!1,axisTick:{show:!1},axisLine:{show:!1},data:[]},yAxis:[{position:"left",type:"value",name:"GH/s",nameTextStyle:{padding:[0,0,0,-40]}},{position:"right",splitNumber:"5",show:!0,min:0,max:100,splitLine:{show:!1}}],dataZoom:[{type:"inside",start:0,end:100,maxSpan:100,minSpan:2},{type:"inside",start:0,end:100}],series:[{name:"总算力",type:"line",smooth:!1,symbol:"circle",symbolSize:5,showSymbol:!1,itemStyle:{color:"#5721E4",borderColor:"rgba(221,220,107,0.1)",borderWidth:12},lineStyle:{color:"#5721E4",width:"2"},areaStyle:{origin:"start",color:new s.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"rgb(210,195,234)"},{offset:1,color:"rgb(255, 255, 255)"}])},data:[]},{name:"Refusal rate",type:"line",smooth:!1,symbol:"circle",symbolSize:5,showSymbol:!1,itemStyle:{color:"#FE2E74",borderColor:"rgba(221,220,107,0.1)",borderWidth:12},lineStyle:{color:"#FE2E74",width:"2"},areaStyle:{origin:"start",color:new s.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"rgb(252,220,233)"},{offset:1,color:"rgb(255, 255, 255)"}])},data:[],yAxisIndex:1}]},barOption:{tooltip:{trigger:"axis",axisPointer:{type:"shadow"}},grid:{left:"3%",right:"8%",bottom:"3%",containLabel:!0},xAxis:[{name:"MH/s",type:"category",data:[],axisTick:{alignWithLabel:!0}}],yAxis:[{type:"value",show:!0,name:"Pcs",nameTextStyle:{padding:[0,0,0,-25]}}],dataZoom:[{type:"inside",start:0,end:100,maxSpan:100,minSpan:2,animation:!1},{type:"inside",start:0,end:100}],series:[{name:"count",type:"bar",barWidth:"60%",data:[],itemStyle:{borderRadius:[100,100,0,0],color:"#7645EE"}}]},miniOption:{legend:{right:100,show:!1,formatter:function(t){return t}},grid:{left:"5%",containLabel:!0},tooltip:{trigger:"axis",textStyle:{align:"left"},animation:!1,formatter:function(t){var i;i=t[0].axisValueLabel;for(let e=0;e<=t.length-1;e++)"Rejection rate"==t[e].seriesName||"拒绝率"==t[e].seriesName?i+=`
${t[e].marker} ${t[e].seriesName}      ${t[e].value}%`:i+=`
${t[e].marker} ${t[e].seriesName}      ${t[e].value}`;return i},axisPointer:{animation:!1,snap:!0,label:{precision:2},type:"cross",crossStyle:{width:.5},lineStyle:{}}},xAxis:{boundaryGap:!1,axisTick:{show:!1},axisLine:{show:!1},axisLabel:{},data:["07-1","07-1","07-1","07-1","07-1","07-1","07-1","07-1","07-1"]},yAxis:[{position:"left",type:"value",name:"MH/s",nameTextStyle:{padding:[0,0,0,-40]}},{position:"right",splitNumber:"5",show:!0,splitLine:{show:!1}},{position:"right",splitNumber:"5",show:!1},{position:"right",splitNumber:"5",show:!1}],dataZoom:[{type:"inside",start:0,end:100,maxSpan:100,minSpan:2,animation:!1},{type:"inside",start:0,end:100}],series:[{name:"Computational power",type:"line",smooth:!1,symbol:"circle",symbolSize:5,showSymbol:!1,itemStyle:{color:"#5721E4",borderColor:"rgba(221,220,107,0.1)",borderWidth:12},lineStyle:{color:"#5721E4",width:"2"},areaStyle:{origin:"start",color:new s.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"rgb(210,195,234)"},{offset:1,color:"rgb(255, 255, 255)"}])},data:[12,15,8,3,6,9,78,12,63]},{name:"Refusal rate",type:"line",smooth:!1,symbol:"circle",symbolSize:5,showSymbol:!1,itemStyle:{color:"#FE2E74",borderColor:"rgba(221,220,107,0.1)",borderWidth:12},lineStyle:{color:"#FE2E74",width:"2"},areaStyle:{origin:"start",color:new s.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"rgb(252,220,233)"},{offset:1,color:"rgb(255, 255, 255)"}])},data:[12,15,8,3,6,9,78,12,63],yAxisIndex:1}]},onLineOption:{legend:{right:100,show:!1,formatter:function(t){return t}},grid:{left:"5%",containLabel:!0},tooltip:{trigger:"axis",textStyle:{align:"left"},animation:!1,formatter:function(t){var i;return i=t[0].axisValueLabel,i+=`
${t[0].marker} ${t[0].seriesName}     ${t[0].value}\n
${t[1].marker} ${t[1].seriesName}     ${t[1].value}% \n `,i},axisPointer:{animation:!1,snap:!0,label:{precision:2},type:"cross",crossStyle:{width:.5},lineStyle:{}}},xAxis:{boundaryGap:!1,axisTick:{show:!1},axisLine:{show:!1},data:["07-1","07-1","07-1","07-1","07-1","07-1","07-1","07-1","07-1"]},yAxis:[{position:"left",type:"value",name:"MH/s",nameTextStyle:{padding:[0,0,0,-40]}},{position:"right",splitNumber:"5",show:!0},{position:"right",splitNumber:"5",show:!1},{position:"right",splitNumber:"5",show:!1}],dataZoom:[{type:"inside",start:0,end:100,maxSpan:100,minSpan:2,animation:!1},{type:"inside",start:0,end:100}],series:[{name:"Computational power",type:"line",smooth:!1,symbol:"circle",symbolSize:5,showSymbol:!1,itemStyle:{color:"#5721E4",borderColor:"rgba(221,220,107,0.1)",borderWidth:12},lineStyle:{color:"#5721E4",width:"2"},areaStyle:{origin:"start",color:new s.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"rgb(210,195,234)"},{offset:1,color:"rgb(255, 255, 255)"}])},data:[12,15,8,3,6,9,78,12,63]},{name:"Refusal rate",type:"line",smooth:!1,symbol:"circle",symbolSize:5,showSymbol:!1,itemStyle:{color:"#FE2E74",borderColor:"rgba(221,220,107,0.1)",borderWidth:12},lineStyle:{color:"#FE2E74",width:"2"},areaStyle:{origin:"start",color:new s.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"rgb(252,220,233)"},{offset:1,color:"rgb(255, 255, 255)"}])},data:[12,15,8,3,6,9,78,12,63],yAxisIndex:1}]},OffLineOption:{legend:{right:100,show:!1,formatter:function(t){return t}},grid:{left:"5%",containLabel:!0},tooltip:{trigger:"axis",textStyle:{align:"left"},animation:!1,formatter:function(t){var i;return i=t[0].axisValueLabel,i+=`
${t[0].marker} ${t[0].seriesName}     ${t[0].value}\n
${t[1].marker} ${t[1].seriesName}     ${t[1].value}% \n `,i},axisPointer:{animation:!1,snap:!0,label:{precision:2},type:"cross",crossStyle:{width:.5},lineStyle:{}}},xAxis:{boundaryGap:!1,axisTick:{show:!1},axisLine:{show:!1},data:["07-1","07-1","07-1","07-1","07-1","07-1","07-1","07-1","07-1"]},yAxis:[{position:"left",type:"value",name:"MH/s",nameTextStyle:{padding:[0,0,0,-40]}},{position:"right",splitNumber:"5",show:!0,splitLine:{show:!1}}],dataZoom:[{type:"inside",start:0,end:100,maxSpan:100,minSpan:2,animation:!1},{type:"inside",start:0,end:100}],series:[{name:"Computational power",type:"line",smooth:!1,symbol:"circle",symbolSize:5,showSymbol:!1,itemStyle:{color:"#5721E4",borderColor:"rgba(221,220,107,0.1)",borderWidth:12},lineStyle:{color:"#5721E4",width:"2"},areaStyle:{origin:"start",color:new s.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"rgb(210,195,234)"},{offset:1,color:"rgb(255, 255, 255)"}])},data:[12,15,8,3,6,9,78,12,63]},{name:"Refusal rate",type:"line",smooth:!1,symbol:"circle",symbolSize:5,showSymbol:!1,itemStyle:{color:"#FE2E74",borderColor:"rgba(221,220,107,0.1)",borderWidth:12},lineStyle:{color:"#FE2E74",width:"2"},areaStyle:{origin:"start",color:new s.graphic.LinearGradient(0,0,0,1,[{offset:0,color:"rgb(252,220,233)"},{offset:1,color:"rgb(255, 255, 255)"}])},data:[12,15,8,3,6,9,78,12,63],yAxisIndex:1}]},sunTabActiveName:"all",Accordion:"",currentPage:1,params:{account:"lx888",coin:"grs"},PowerParams:{account:"lx888",coin:"grs",interval:"rt"},PowerDistribution:{account:"lx888",coin:"grs",interval:"rt"},MinerListParams:{account:"lx888",coin:"grs",type:"0",filter:"",limit:50,page:1,sort:"30m",collation:"asc"},activeName2:"power",IncomeParams:{account:"lx888",coin:"grs",limit:10,page:1},OutcomeParams:{account:"lx888",coin:"grs",limit:10,page:1},MinerAccountData:{},MinerListData:{},intervalList:[{value:"rt",label:"home.realTime"},{value:"1d",label:"home.day"}],HistoryIncomeData:[],HistoryOutcomeData:[],currentPageIncome:1,MinerListTableData:[],AccountPowerDistributionintervalList:[{value:"rt",label:"home.realTime"},{value:"1d",label:"home.day"}],miniLoading:!1,search:"",input2:"",timeActive:"rt",barActive:"rt",powerChartLoading:!1,barChartLoading:!1,miniChartParams:{miner:"",coin:"grs"},ids:"smallChart107fx61",activeMiner:"",miniId:"",MinerListLoading:!1,miner:"miner",accountId:"",currentPageMiner:1,minerTotal:0,accountItem:{},HistoryIncomeTotal:0,HistoryOutcomeTotal:0,stateList:[{value:"1",label:"mining.onLine"},{value:"2",label:"mining.offLine"}],Sort30:"asc",Sort1h:"asc",paymentStatusList:[{value:0,label:"mining.paymentInProgress"},{value:1,label:"mining.paymentCompleted"}],lang:"zh"}},computed:{sortedMinerListTableData(){return this.MinerListTableData?[...this.MinerListTableData].sort(((t,i)=>{const e=String(t.status),a=String(i.status);return"2"===e&&"2"!==a?-1:"2"!==e&&"2"===a?1:0})):[]}},watch:{$route(t,i){this.accountItem=JSON.parse(localStorage.getItem("accountItem")),this.accountId=this.accountItem.id,this.params.account=this.accountItem.ma,this.params.coin=this.accountItem.coin,this.PowerParams.account=this.accountItem.ma,this.PowerParams.coin=this.accountItem.coin,this.PowerDistribution.account=this.accountItem.ma,this.PowerDistribution.coin=this.accountItem.coin,this.MinerListParams.account=this.accountItem.ma,this.MinerListParams.coin=this.accountItem.coin,this.OutcomeParams.account=this.accountItem.ma,this.OutcomeParams.coin=this.accountItem.coin,this.IncomeParams.account=this.accountItem.ma,this.IncomeParams.coin=this.accountItem.coin,this.getMinerAccountInfoData(this.params),this.getMinerAccountPowerData(this.PowerParams),this.getAccountPowerDistributionData(this.PowerDistribution),this.getMinerListData(this.MinerListParams),this.getHistoryIncomeData(this.IncomeParams),this.getHistoryOutcomeData(this.OutcomeParams)},"$i18n.locale":{handler(t){location.reload()}}},mounted(){this.lang=this.$i18n.locale,this.accountItem=JSON.parse(localStorage.getItem("accountItem")),this.accountId=this.accountItem.id,this.params.account=this.accountItem.ma,this.params.coin=this.accountItem.coin,this.PowerParams.account=this.accountItem.ma,this.PowerParams.coin=this.accountItem.coin,this.PowerDistribution.account=this.accountItem.ma,this.PowerDistribution.coin=this.accountItem.coin,this.MinerListParams.account=this.accountItem.ma,this.MinerListParams.coin=this.accountItem.coin,this.OutcomeParams.account=this.accountItem.ma,this.OutcomeParams.coin=this.accountItem.coin,this.IncomeParams.account=this.accountItem.ma,this.IncomeParams.coin=this.accountItem.coin,this.$isMobile&&(this.option.yAxis[1].show=!1,this.option.grid.left="16%",this.option.grid.right="5%",this.option.grid.top="10%",this.option.grid.bottom="45%",this.option.legend.bottom=18,this.option.legend.right="30%",this.option.xAxis.axisLabel={interval:8,rotate:70},this.barOption.grid.right="16%",this.miniOption.yAxis[1].show=!1),this.getMinerAccountInfoData(this.params),this.getMinerAccountPowerData(this.PowerParams),this.getAccountPowerDistributionData(this.PowerDistribution),this.getMinerListData(this.MinerListParams),this.getHistoryIncomeData(this.IncomeParams),this.getHistoryOutcomeData(this.OutcomeParams),this.registerRecoveryMethod("getMinerAccountInfoData",this.params),this.registerRecoveryMethod("getMinerAccountPowerData",this.PowerParams),this.registerRecoveryMethod("getAccountPowerDistributionData",this.PowerDistribution),this.registerRecoveryMethod("getMinerListData",this.MinerListParams),this.registerRecoveryMethod("getHistoryIncomeData",this.IncomeParams),this.registerRecoveryMethod("getHistoryOutcomeData",this.OutcomeParams)},methods:{inCharts(){this.myChart=s.init(document.getElementById("powerChart")),this.option.series[0].name=this.$t("home.finallyPower"),this.option.series[1].name=this.$t("home.rejectionRate"),this.myChart.setOption(this.option),window.addEventListener("resize",(0,o.throttle)((()=>{this.myChart&&this.myChart.resize()}),200))},smallInCharts(t){this.$isMobile&&(this.miniOption.yAxis[1].show=!1),t.series[0].name=this.$t("home.minerSComputingPower"),t.series[1].name=this.$t("home.rejectionRate"),this.miniChart.setOption(t,!0),window.addEventListener("resize",(0,o.throttle)((()=>{this.miniChart&&this.miniChart.resize()}),200))},barInCharts(){null==this.barChart&&(this.barChart=s.init(document.getElementById("barChart"))),this.barOption.series[0].name=this.$t("home.numberOfMiningMachines"),this.barChart.setOption(this.barOption),window.addEventListener("resize",(0,o.throttle)((()=>{this.barChart&&this.barChart.resize()}),200))},async getMinerAccountInfoData(t){const i=await(0,n.getMinerAccountInfo)(t);this.MinerAccountData=i.data},async getMinerAccountPowerData(t){this.setLoading("powerChartLoading",!0);const i=await(0,n.getMinerAccountPower)(t);if(!i)return this.setLoading("powerChartLoading",!1),void(this.myChart&&this.myChart.dispose());let e=i.data,a=[],s=[],o=[];e.forEach((i=>{i.date.includes("T")&&"rt"==t.interval?i.date=`${i.date.split("T")[0]} ${i.date.split("T")[1].split(".")[0]}`:i.date.includes("T")&&"1d"==t.interval&&(i.date=i.date.split("T")[0]),a.push(i.date),s.push(i.pv.toFixed(2)),o.push((100*i.rejectRate).toFixed(4))}));let r=Math.max(...o);r=Math.round(3*r),r>0&&(this.option.yAxis[1].max=r),this.option.xAxis.data=a,this.option.series[0].data=s,this.option.series[1].data=o,this.inCharts(),this.setLoading("powerChartLoading",!1)},async getAccountPowerDistributionData(t){this.setLoading("barChartLoading",!0);const i=await(0,n.getAccountPowerDistribution)(t);let e=i.data,a=[],s=[];e.forEach((t=>{a.push(`${t.low}-${t.high}`),s.push(t.count)})),this.barOption.xAxis[0].data=a,this.barOption.series[0].data=s,this.barInCharts(),this.setLoading("barChartLoading",!1)},formatNumber(t){const i=Math.floor(t),e=Math.floor(100*(t-i));return`${i}.${String(e).padStart(2,"0")}`},async getMinerListData(t){this.setLoading("MinerListLoading",!0);const i=await(0,n.getMinerList)(t);i&&200==i.code&&(this.MinerListData=i.data,this.MinerListData.submit&&this.MinerListData.submit.includes("T")&&(this.MinerListData.submit=`${this.MinerListData.submit.split("T")[0]} ${this.MinerListData.submit.split("T")[1].split(".")[0]}`),this.MinerListTableData=i.data.rows,this.MinerListData.rate=this.formatNumber(this.MinerListData.rate),this.MinerListData.dailyRate=this.formatNumber(this.MinerListData.dailyRate),this.MinerListTableData.forEach((t=>{t.submit.includes("T")&&(t.submit=`${t.submit.split("T")[0]} ${t.submit.split("T")[1].split(".")[0]}`),t.rate=this.formatNumber(t.rate),t.dailyRate=this.formatNumber(t.dailyRate)})),this.minerTotal=i.data.total),this.setLoading("MinerListLoading",!1)},getMinerPowerData:(0,o.Debounce)((async function(t){this.setLoading("miniLoading",!0);const i=await(0,n.getMinerPower)(t);if(!i)return void this.setLoading("miniLoading",!1);let e=i.data,a=[],o=[],r=[];e.forEach((i=>{i.date.includes("T")&&"1h"==t.interval?i.date=`${i.date.split("T")[0]} ${i.date.split("T")[1].split(".")[0]}`:i.date.includes("T")&&"1d"==t.interval&&(i.date=i.date.split("T")[0]),i.date=`${i.date.split("T")[0]} ${i.date.split("T")[1].split(".")[0]}`,a.push(i.date),o.push(i.pv.toFixed(2)),r.push((100*i.rejectRate).toFixed(4))})),this.miniOption.xAxis.data=a,this.miniOption.series[0].data=o,this.miniOption.series[1].data=r,this.miniOption.series[0].name=this.$t("home.finallyPower"),this.miniOption.series[1].name=this.$t("home.rejectionRate"),this.ids=`SmallChart${this.miniId}`,this.miniChart=s.init(document.getElementById(this.ids));let l=Math.max(...r);l=Math.round(3*l),l>0&&(this.miniOption.yAxis[1].max=l),this.$nextTick((()=>{this.smallInCharts(this.miniOption)})),console.log(this.miniOption,5656565),this.setLoading("miniLoading",!1)}),200),getMinerPowerOnLine:(0,o.Debounce)((async function(t){this.setLoading("miniLoading",!0);const i=await(0,n.getMinerPower)(t);if(!i)return void this.setLoading("miniLoading",!1);let e=i.data,a=[],r=[],l=[];e.forEach((t=>{t.date.includes("T")?a.push(`${t.date.split("T")[0]} ${t.date.split("T")[1].split(".")[0]}`):a.push(t.date),r.push(t.pv.toFixed(2)),l.push((100*t.rejectRate).toFixed(4))})),this.onLineOption.xAxis.data=a,this.onLineOption.series[0].data=r,this.onLineOption.series[1].data=l,this.onLineOption.series[0].name=this.$t("home.finallyPower"),this.onLineOption.series[1].name=this.$t("home.rejectionRate"),this.ids=`Small${this.miniId}`,this.miniChartOnLine=s.init(document.getElementById(this.ids)),this.$nextTick((()=>{this.miniChartOnLine.setOption(this.onLineOption,!0),window.addEventListener("resize",(0,o.throttle)((()=>{this.miniChartOnLine&&this.miniChartOnLine.resize()}),200))})),this.setLoading("miniLoading",!1)}),200),getMinerPowerOffLine:(0,o.Debounce)((async function(t){this.setLoading("miniLoading",!0);const i=await(0,n.getMinerPower)(t);if(!i)return void this.setLoading("miniLoading",!1);let e=i.data,a=[],r=[],l=[];e.forEach((t=>{t.date.includes("T")?a.push(`${t.date.split("T")[0]} ${t.date.split("T")[1].split(".")[0]}`):a.push(t.date),r.push(t.pv.toFixed(2)),l.push((100*t.rejectRate).toFixed(4))})),this.OffLineOption.xAxis.data=a,this.OffLineOption.series[0].data=r,this.OffLineOption.series[1].data=l,this.OffLineOption.series[0].name=this.$t("home.finallyPower"),this.OffLineOption.series[1].name=this.$t("home.rejectionRate"),this.ids=`SmallOff${this.miniId}`,this.miniChartOff=s.init(document.getElementById(this.ids)),this.$nextTick((()=>{this.miniChartOff.setOption(this.OffLineOption,!0),window.addEventListener("resize",(0,o.throttle)((()=>{this.miniChartOff&&this.miniChartOff.resize()}),200))})),this.setLoading("miniLoading",!1)}),200),async getHistoryIncomeData(t){const i=await(0,n.getHistoryIncome)(t);i&&200==i.code&&(this.HistoryIncomeData=i.rows,this.HistoryIncomeTotal=i.total,this.HistoryIncomeData.forEach((t=>{t.date.includes("T")&&(t.date=t.date.split("T")[0])})))},async getHistoryOutcomeData(t){const i=await(0,n.getHistoryOutcome)(t);i&&200==i.code&&(this.HistoryOutcomeData=i.rows,this.HistoryOutcomeTotal=i.total,this.HistoryOutcomeData.forEach((t=>{t.date.includes("T")&&(t.date=`${t.date.split("T")[0]} `)})))},handelMiniChart:(0,o.throttle)((function(t,i){this.Accordion&&(this.miniId=t,this.miner=i,this.$nextTick((()=>{this.getMinerPowerData({miner:i,coin:this.params.coin,account:this.params.account})})))}),1e3),handelOnLineMiniChart:(0,o.throttle)((function(t,i){this.Accordion&&(this.miniId=t,this.$nextTick((()=>{this.getMinerPowerOnLine({miner:i,coin:this.params.coin,account:this.params.account})})))}),1e3),handelMiniOffLine:(0,o.throttle)((function(t,i){this.Accordion&&(this.miniId=t,this.$nextTick((()=>{this.getMinerPowerOffLine({miner:i,coin:this.params.coin,account:this.params.account})})))}),1e3),handleClick(){switch(this.activeName){case"power":this.inCharts();break;case"miningMachineDistribution":this.distributionInCharts();break;default:break}},handleClick2(t){switch(this.activeName2=t,this.search="",this.MinerListParams.filter="",this.Accordion="",this.IncomeParams.limit=10,this.MinerListParams.limit=50,this.OutcomeParams.limit=10,this.activeName2){case"power":this.getMinerListData(this.MinerListParams);break;case"miningMachine":this.getHistoryIncomeData(this.IncomeParams);break;case"payment":this.getHistoryOutcomeData(this.OutcomeParams);break;default:break}},onlineStatus(t){switch(this.Accordion="",this.search="",this.MinerListParams.filter="",this.sunTabActiveName=t,this.sunTabActiveName){case"all":this.MinerListParams.type=0;break;case"onLine":this.MinerListParams.type=1;break;case"off-line":this.MinerListParams.type=2;break;default:break}this.getMinerListData(this.MinerListParams)},handleInterval(t){this.PowerParams.interval=t,this.timeActive=t,this.getMinerAccountPowerData(this.PowerParams)},distributionInterval(t){this.PowerDistribution.interval=t,this.barActive=t,this.getAccountPowerDistributionData(this.PowerDistribution)},handelSearch(){this.MinerListParams.filter=this.search,this.getMinerListData(this.MinerListParams)},handleSizeChange(t){console.log(`每页 ${t} 条`),this.OutcomeParams.limit=t,this.OutcomeParams.page=1,this.getHistoryOutcomeData(this.OutcomeParams),this.currentPage=1},handleCurrentChange(t){console.log(`当前页: ${t}`),this.OutcomeParams.page=t,this.getHistoryOutcomeData(this.OutcomeParams)},handleSizeChangeIncome(t){console.log(`每页 ${t} 条`),this.IncomeParams.limit=t,this.IncomeParams.page=1,this.getHistoryIncomeData(this.IncomeParams),this.currentPageIncome=1},handleCurrentChangeIncome(t){console.log(`当前页: ${t}`),this.IncomeParams.page=t,this.getHistoryIncomeData(this.IncomeParams)},handleSizeMiner(t){console.log(`每页 ${t} 条`),this.MinerListParams.limit=t,this.MinerListParams.page=1,this.getMinerListData(this.MinerListParams),this.currentPageMiner=1},handleCurrentMiner(t){console.log(`当前页: ${t}`),this.MinerListParams.page=t,this.getMinerListData(this.MinerListParams)},handelStateList(t){return this.stateList.find((i=>i.value==t)).label||""},handleSort(t){this.MinerListParams.sort=t,"asc"==this.MinerListParams.collation?this.MinerListParams.collation="desc":this.MinerListParams.collation="asc",this.getMinerListData(this.MinerListParams)},handleSort30(){"asc"==this.MinerListParams.collation[0]?this.MinerListParams.collation[0]="desc":this.MinerListParams.collation[0]="asc",this.getMinerListData(this.MinerListParams)},handleSort1h(){"asc"==this.MinerListParams.collation[1]?this.MinerListParams.collation[1]="desc":this.MinerListParams.collation[1]="asc",this.getMinerListData(this.MinerListParams)},handelTimeInterval(t){if(t){var i=60*t,e=Math.floor(i/86400),a=Math.floor(i%86400/3600),s=Math.floor(i%3600/60);if(e)return`(${e}${this.$t("personal.day")} ${a}${this.$t("personal.hour")} ${s}${this.$t("personal.minute")} ${this.$t("personal.front")})`;if(a)return`(${a}${this.$t("personal.hour")} ${s}${this.$t("personal.minute")} ${this.$t("personal.front")})`;if(s)return`( ${s}${this.$t("personal.minute")} ${this.$t("personal.front")})`}},jumpPage(){this.$router.push({path:`/${this.lang}/personalCenter/personalMining`,query:{id:this.accountId,coin:this.params.coin,ma:this.params.account}})},async copyTxid(t){let i=`id${t}`,e=document.getElementById(i);try{await navigator.clipboard.writeText(e.textContent),this.$message({showClose:!0,message:this.$t("personal.copySuccessful"),type:"success"})}catch(a){console.log(a),this.$message({showClose:!0,message:this.$t("personal.copyFailed"),type:"error"})}},handelPayment(t){if(t||0==t){let i=this.paymentStatusList.find((i=>i.value==t));return i.label}return""},clickCopyAddress(t){var i=document.createElement("input");i.value=t.address,document.body.appendChild(i);try{i.select();const t=document.execCommand("copy");t?this.$message({showClose:!0,message:this.$t("personal.copySuccessful"),type:"success"}):this.$message({showClose:!0,message:this.$t("personal.copyFailed"),type:"success"})}catch(e){this.$message({showClose:!0,message:this.$t("personal.copyFailed"),type:"success"})}finally{document.body.contains(i)?document.body.removeChild(i):console.log("临时输入框不是 body 的子节点,无法移除。")}},clickCopyTxid(t){var i=document.createElement("input");i.value=t.txid,document.body.appendChild(i);try{i.select();const t=document.execCommand("copy");t?this.$message({showClose:!0,message:this.$t("personal.copySuccessful"),type:"success"}):this.$message({showClose:!0,message:this.$t("personal.copyFailed"),type:"success"})}catch(e){this.$message({showClose:!0,message:this.$t("personal.copyFailed"),type:"success"})}finally{document.body.contains(i)?document.body.removeChild(i):console.log("临时输入框不是 body 的子节点,无法移除。")}},handelTxid(t){if(this.accountItem.coin.includes("dgb"))window.open(`https://chainz.cryptoid.info/dgb/tx.dws?${t}.htm`);else switch(this.accountItem.coin){case"nexa":window.open(`https://explorer.nexa.org/tx/${t}`);break;case"mona":window.open(`https://mona.insight.monaco-ex.org/insight/tx/${t}`);break;case"grs":window.open(`https://chainz.cryptoid.info/grs/tx.dws?${t}.htm`);break;case"rxd":window.open(`https://explorer.radiantblockchain.org/tx/${t}`);break;case"enx":window.open(`https://explorer.entropyx.org/txs/${t}`);break;case"alph":window.open(`https://explorer.alephium.org/transactions/${t}`);break;default:break}}}}},18163:function(t,i,e){Object.defineProperty(i,"B",{value:!0}),i.A=void 0,e(44114);var a=e(47149),s=e(49704),n=e(6803);i.A={data(){return{loginForm:{userName:"",password:"",code:""},loginRules:{userName:[{required:!0,trigger:"blur",message:this.$t("user.inputEmail")}],password:[{required:!0,trigger:"blur",message:this.$t("user.inputPassword")}],code:[{required:!0,trigger:"change",message:this.$t("user.inputCode")}]},radio:"en",btnDisabled:!1,bthText:"user.obtainVerificationCode",time:"",loginLoading:!1,accountList:[],loginCodeTime:"",countDownTime:60,timer:null,lang:"en",currencyList:[{path:"nexaAccess",value:"nexa",label:"nexa",img:e(95194),imgUrl:`${this.$baseApi}img/nexa.png`,name:"course.NEXAcourse",show:!0,amount:1e4},{path:"grsAccess",value:"grs",label:"grs",img:e(78628),imgUrl:`${this.$baseApi}img/grs.svg`,name:"course.GRScourse",show:!0,amount:1},{path:"monaAccess",value:"mona",label:"mona",img:e(85857),imgUrl:`${this.$baseApi}img/mona.svg`,name:"course.MONAcourse",show:!0,amount:1},{path:"dgbsAccess",value:"dgbs",label:"dgb(skein)",img:e(94045),imgUrl:`${this.$baseApi}img/dgb.svg`,name:"course.dgbsCourse",show:!0,amount:1},{path:"dgbqAccess",value:"dgbq",label:"dgb(qubit)",img:e(94045),imgUrl:`${this.$baseApi}img/dgb.svg`,name:"course.dgbqCourse",show:!0,amount:1},{path:"dgboAccess",value:"dgbo",label:"dgb(odocrypt)",img:e(94045),imgUrl:`${this.$baseApi}img/dgb.svg`,name:"course.dgboCourse",show:!0,amount:1},{path:"rxdAccess",value:"rxd",label:"radiant(rxd)",img:e(94158),imgUrl:`${this.$baseApi}img/rxd.png`,name:"course.RXDcourse",show:!0,amount:100},{path:"enxAccess",value:"enx",label:"Entropyx(enx)",img:e(78945),imgUrl:`${this.$baseApi}img/enx.svg`,name:"course.ENXcourse",show:!0,amount:5e3},{path:"alphminingPool",value:"alph",label:"alephium",img:e(31413),imgUrl:`${this.$baseApi}img/alph.svg`,name:"course.alphCourse",show:!0,amount:1}]}},computed:{countDown(){Math.floor(this.countDownTime/60);const t=this.countDownTime%60,i=t<10?"0"+t:t;return`${i}`}},watch:{$route(t){const i=t.path.match(/^\/(zh|en)(\/|$)/);i&&(this.radio=i[1],this.lang=i[1],this.$i18n.locale=i[1],localStorage.setItem("lang",i[1]))},"$i18n.locale":function(){this.translate()}},created(){window.sessionStorage.getItem("exam_time")&&(this.countDownTime=Number(window.sessionStorage.getItem("exam_time")),this.startCountDown(),this.btnDisabled=!0,this.bthText="user.again")},mounted(){this.$addStorageEvent(1,"currencyList",JSON.stringify(this.currencyList));const t=this.$route.path,i=t.match(/^\/(zh|en)(\/|$)/);i?(this.radio=i[1],this.lang=i[1],this.$i18n.locale=i[1],localStorage.setItem("lang",i[1])):(this.radio=localStorage.getItem("lang")||"en",this.lang=this.radio,this.$i18n.locale=this.radio)},methods:{translate(){this.loginRules={userName:[{required:!0,trigger:"blur",message:this.$t("user.inputEmail")}],password:[{required:!0,trigger:"blur",message:this.$t("user.inputPassword")}],code:[{required:!0,trigger:"change",message:this.$t("user.inputCode")}]}},async fetchJurisdiction(){const t=await(0,a.getUserProfile)();this.$addStorageEvent(1,"jurisdiction",JSON.stringify(t.data.role)),this.$addStorageEvent(1,"userEmail",JSON.stringify(t.data.email)),t&&200==t.code&&(this.$message({message:this.$t("user.loginSuccess"),type:"success",showClose:!0}),this.$router.push(`/${this.lang}`))},async fetchAccountGradeList(){const t=await(0,a.getAccountGradeList)();t&&200==t.code&&this.$addStorageEvent(1,"miningAccountList",JSON.stringify(t.data))},async fetchAccountList(t){const i=await(0,n.getAccountList)(t);i&&200==i.code&&(this.accountList=i.data,this.$addStorageEvent(1,"accountList",JSON.stringify(this.accountList)))},async fetchLogin(t){this.loginLoading=!0;const i=await(0,a.getLogin)(t);i&&200===i.code&&(this.$addStorageEvent(1,"userName",i.data.userName),this.$addStorageEvent(1,"token",JSON.stringify(i.data.access_token)),await new Promise((t=>setTimeout(t,50))),this.$bus.$emit("user-logged-in"),this.fetchAccountList(),this.fetchAccountGradeList(),this.fetchJurisdiction()),this.loginLoading=!1},async fetchCOde(t){const i=await(0,a.getLoginCode)(t);i&&200==i.code&&this.$message({message:this.$t("user.codeSuccess"),type:"success",showClose:!0})},handelCode(){if(!this.loginForm.userName)return void this.$message({message:this.$t("user.inputAccount"),type:"error",customClass:"messageClass",showClose:!0});const t=/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,}$/;let i=t.test(this.loginForm.userName);this.loginForm.userName&&i?(this.fetchCOde({account:this.loginForm.userName}),null==window.sessionStorage.getItem("exam_time")||(this.countDownTime=Number(window.sessionStorage.getItem("exam_time"))),this.startCountDown()):this.$message({message:this.$t("user.emailVerification"),type:"error",showClose:!0})},startCountDown(){this.timer=setInterval((()=>{this.countDownTime<=1?(clearInterval(this.timer),sessionStorage.removeItem("exam_time"),this.countDownTime=60,this.btnDisabled=!1,this.bthText="user.obtainVerificationCode"):this.countDownTime>0&&(this.countDownTime--,this.btnDisabled=!0,this.bthText="user.again",window.sessionStorage.setItem("exam_time",this.countDownTime))}),1e3)},handelJump(t){const i=t.startsWith("/")?t.slice(1):t;this.$router.push(`/${this.lang}/${i}`)},handelRadio(t){const i=this.lang;this.lang=t,this.$i18n.locale=t,localStorage.setItem("lang",t);const e=this.$route.path,a=e.replace(`/${i}`,`/${t}`);this.$router.push({path:a,query:this.$route.query}).catch((t=>{"NavigationDuplicated"!==t.name&&console.error("Navigation failed:",t)}))},submitForm(){this.$refs.ruleForm.validate((t=>{if(t){this.loginForm.userName=this.loginForm.userName.trim(),this.loginForm.password=this.loginForm.password.trim();const t=/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,}$/;let i=t.test(this.loginForm.userName);if(!i)return void this.$message({message:this.$t("user.emailVerification"),type:"error",customClass:"messageClass",showClose:!0});const e=/^(?!.*[\u4e00-\u9fa5])(?![a-zA-Z]+$)(?![A-Z0-9]+$)(?![A-Z\W_]+$)(?![a-z0-9]+$)(?![a-z\W_]+$)(?![0-9\W_]+$)[a-zA-Z0-9\W_]{8,32}$/,a=e.test(this.loginForm.password);if(!a)return void this.$message({message:this.$t("user.PasswordReminder"),type:"error",showClose:!0});const n={...this.loginForm};n.password=(0,s.encryption)(this.loginForm.password),this.fetchLogin(n)}}))},handleClick(){this.$router.push(`/${this.lang}`)}}}},28702:function(t,i,e){var a=e(3999)["default"];Object.defineProperty(i,"B",{value:!0}),i.A=void 0;var s=a(e(7330)),n=a(e(45438));i.A={components:{Tooltip:n.default},mixins:[s.default]}},30751:function(t,i,e){e.r(i),e.d(i,{__esModule:function(){return s.B},default:function(){return l}});var a=e(47105),s=e(28702),n=s.A,o=e(81656),r=(0,o.A)(n,a.XX,a.Yp,!1,null,"0a0e912e",null),l=r.exports},47105:function(t,i,e){i.Yp=i.XX=void 0;i.XX=function(){var t=this,i=t._self._c;return i("div",{staticClass:"miningAccountMain"},[t.$isMobile?i("section",[i("div",{staticClass:"accountInformation"},[i("img",{attrs:{src:t.accountItem.img,alt:"coin"}}),i("span",{staticClass:"coin"},[t._v(t._s(t.accountItem.coin)+" ")]),i("i",{staticClass:"iconfont icon-youjiantou"}),i("span",{staticClass:"ma"},[t._v(" "+t._s(t.accountItem.ma))])]),i("div",{staticClass:"profitTop"},[i("div",{staticClass:"box"},[i("span",[t._v(t._s(t.$t("mining.totalRevenue"))+" "),i("div",{staticClass:"boxTitle",attrs:{"data-title":t.$t("mining.totalRevenueTips")}},[i("img",{attrs:{src:e(3832),alt:"profit",loading:"lazy"}})])]),i("span",{staticClass:"text"},[t._v(t._s(t.MinerAccountData.totalProfit))])]),i("div",{staticClass:"box"},[i("span",[t._v(t._s(t.$t("mining.totalExpenditure"))+" "),i("div",{staticClass:"boxTitle",attrs:{"data-title":t.$t("mining.totalExpenditureTips")}},[i("img",{attrs:{src:e(3832),alt:"profit",loading:"lazy"}})])]),i("span",{staticClass:"text"},[t._v(t._s(t.MinerAccountData.expend))])]),i("div",{staticClass:"box"},[i("span",[t._v(t._s(t.$t("mining.yesterdaySEarnings"))+" "),i("div",{staticClass:"boxTitle",attrs:{"data-title":t.$t("mining.yesterdaySEarningsTips")}},[i("img",{attrs:{src:e(3832),alt:"profit",loading:"lazy"}})])]),i("span",{staticClass:"text"},[t._v(t._s(t.MinerAccountData.preProfit))])]),i("div",{staticClass:"box"},[i("span",[t._v(t._s(t.$t("mining.diggedToday"))+" "),i("div",{staticClass:"boxTitle",attrs:{"data-title":t.$t("mining.diggedTodayTips")}},[i("img",{attrs:{src:e(3832),alt:"profit",loading:"lazy"}})])]),i("span",{staticClass:"text"},[t._v(t._s(t.MinerAccountData.todayPorfit))])]),i("div",{staticClass:"accountBalance"},[i("div",{staticClass:"box2"},[i("span",{staticClass:"paymentSettings"},[t._v(t._s(t.$t("mining.accountBalance"))+" "),i("div",{staticClass:"boxTitle",attrs:{"data-title":t.$t("mining.balanceReminder")}},[i("img",{attrs:{src:e(3832),alt:"profit",loading:"lazy"}})])]),i("span",{staticClass:"text"},[t._v(t._s(t.MinerAccountData.balance))])]),i("el-button",{on:{click:t.jumpPage}},[t._v(t._s(t.$t("mining.paymentSettings")))])],1)]),i("div",{directives:[{name:"loading",rawName:"v-loading",value:t.powerChartLoading,expression:"powerChartLoading"}],staticClass:"profitBtm2"},[i("div",{staticClass:"right"},[i("div",{staticClass:"intervalBox"},[i("div",{staticClass:"title"},[t._v(t._s(t.$t("mining.algorithmicDiagram")))]),i("div",{staticClass:"times"},t._l(t.intervalList,(function(e){return i("span",{key:e.value,class:{timeActive:t.timeActive==e.value},on:{click:function(i){return t.handleInterval(e.value)}}},[t._v(t._s(t.$t(e.label)))])})),0)]),i("div",{staticStyle:{width:"100%",height:"100%",padding:"0"},attrs:{id:"powerChart"}})])]),i("div",{directives:[{name:"loading",rawName:"v-loading",value:t.barChartLoading,expression:"barChartLoading"}],staticClass:"barBox"},[i("div",{staticClass:"lineBOX"},[i("div",{staticClass:"intervalBox"},[i("div",{staticClass:"title"},[t._v(t._s(t.$t("mining.computingPower")))]),i("div",{staticClass:"timesBox"},[i("div",{staticClass:"times2"},t._l(t.AccountPowerDistributionintervalList,(function(e){return i("span",{key:e.value,class:{timeActive:t.barActive==e.value},on:{click:function(i){return t.distributionInterval(e.value)}}},[t._v(t._s(t.$t(e.label)))])})),0)])]),i("div",{staticStyle:{width:"100%",height:"90%",padding:"0"},attrs:{id:"barChart"}})])]),i("div",{staticClass:"searchBox"},[i("input",{directives:[{name:"model",rawName:"v-model",value:t.search,expression:"search"}],staticClass:"inout",attrs:{type:"text",placeholder:t.$t("personal.pleaseEnter2")},domProps:{value:t.search},on:{input:function(i){i.target.composing||(t.search=i.target.value)}}}),i("i",{staticClass:"el-icon-search",on:{click:t.handelSearch}})]),i("div",{staticClass:"top3Box"},[i("section",{staticClass:"tabPageBox"},[i("div",{staticClass:"tabPageTitle"},[i("div",{staticClass:"TitleS minerTitle",on:{click:function(i){return t.handleClick2("power")}}},[i("span",{staticClass:"trapezoid",class:{activeHeadlines:"power"==t.activeName2}},[i("span",[t._v(t._s(t.$t("mining.miner")))])])]),i("div",{staticClass:"TitleS profitTitle",on:{click:function(i){return t.handleClick2("miningMachine")}}},[i("span",{staticClass:"trapezoid",class:{activeHeadlines:"miningMachine"==t.activeName2}},[i("span",[t._v(t._s(t.$t("mining.profit")))])])]),i("div",{staticClass:"TitleS paymentTitle",on:{click:function(i){return t.handleClick2("payment")}}},[i("span",{staticClass:"trapezoid",class:{activeHeadlines:"payment"==t.activeName2}},[i("span",[t._v(t._s(t.$t("mining.payment")))])])])]),"power"==t.activeName2?i("section",{directives:[{name:"loading",rawName:"v-loading",value:t.MinerListLoading,expression:"MinerListLoading"}],staticClass:"page"},[i("div",{staticClass:"minerTitleBox"},[i("div",{staticClass:"TitleOnLine"},[i("span",{on:{click:function(i){return t.onlineStatus("all")}}},[i("span",{staticClass:"circularDots3",class:{activeCircular:"all"==t.sunTabActiveName}}),t._v(" "+t._s(t.$t("mining.all"))+" "+t._s(t.MinerListData.all))]),i("span",{on:{click:function(i){return t.onlineStatus("onLine")}}},[i("div",{staticClass:"circularDots2",class:{activeCircular:"onLine"==t.sunTabActiveName}}),t._v(" "+t._s(t.$t("mining.onLine"))+" "+t._s(t.MinerListData.online))]),i("span",{on:{click:function(i){return t.onlineStatus("off-line")}}},[i("div",{staticClass:"circularDots2",class:{activeCircular:"off-line"==t.sunTabActiveName}}),t._v(" "+t._s(t.$t("mining.offLine"))+" "+t._s(t.MinerListData.offline))])])]),"all"==t.sunTabActiveName?i("div",{staticClass:"publicBox all"},[i("div",{staticClass:"TitleAll",staticStyle:{"font-weight":"600"}},[i("span",[t._v(" "+t._s(t.$t("mining.miner")))]),i("span",[t._v(" "+t._s(t.$t("mining.Minutes"))+" MH/s "),i("i",{staticClass:"iconfont icon-paixu sort",on:{click:function(i){return t.handleSort("30m")}}})]),i("span",[t._v(t._s(t.$t("mining.dayPower"))+" MH/s "),i("i",{staticClass:"iconfont icon-paixu sort",on:{click:function(i){return t.handleSort("24h")}}})])]),i("div",{staticClass:"totalTitleAll"},[i("span",[i("div",{staticClass:"circularDots"}),t._v(" "+t._s(t.$t("mining.total")))]),i("span",[t._v(t._s(t.MinerListData.rate)+" ")]),i("span",[t._v(t._s(t.MinerListData.dailyRate)+" ")])]),i("el-collapse",{staticStyle:{"max-height":"800px",overflow:"auto"},attrs:{accordion:""},model:{value:t.Accordion,callback:function(i){t.Accordion=i},expression:"Accordion"}},t._l(t.sortedMinerListTableData,(function(e,a){return i("div",{key:e.miner,class:"item-"+(a%2===0?"even":"odd")},[i("el-collapse-item",{attrs:{name:e.id},nativeOn:{click:function(i){return t.handelMiniOffLine(e.id,e.miner)}}},[i("template",{slot:"title"},[i("div",{staticClass:"accordionTitleAll"},[i("span",{class:{activeState:"2"==e.status}},["1"==e.status?i("div",{staticClass:"circularDotsOnLine"}):t._e(),"2"==e.status?i("div",{staticClass:"circularDotsOffLine"}):t._e(),t._v(" "+t._s(e.miner))]),i("span",[t._v(t._s(e.rate))]),i("span",[t._v(t._s(e.dailyRate))])])]),i("div",{staticClass:"table-item"},[i("div",[i("p",[t._v(t._s(t.$t("mining.submitTime")))]),i("p",[i("span",{staticClass:"offlineTime",class:{activeState:"2"==e.status},attrs:{title:e.submit}},[i("span",[t._v(t._s(e.submit)+" ")]),"2"==e.status?i("span",{staticClass:"timeTips",attrs:{title:t.handelTimeInterval(e.offline)}},[t._v(t._s(t.handelTimeInterval(e.offline)))]):t._e()])])]),i("div",[i("p",[t._v(t._s(t.$t("mining.state")))]),i("p",[i("span",{class:{activeState:"2"==e.status},attrs:{title:t.$t(t.handelStateList(e.status))}},[t._v(t._s(t.$t(t.handelStateList(e.status)))+" ")])])])]),i("p",{staticClass:"chartTitle"},[t._v(" "+t._s(t.$t("mining.miner"))+t._s(e.miner)+"  "+t._s(t.$t("mining.power24H"))+" ")]),i("div",{directives:[{name:"loading",rawName:"v-loading",value:t.miniLoading,expression:"miniLoading"}],staticStyle:{width:"100%",height:"300px"},attrs:{id:"SmallOff"+e.id}})],2)],1)})),0)],1):"onLine"==t.sunTabActiveName?i("div",{staticClass:"publicBox onLine"},[i("div",{staticClass:"TitleAll",staticStyle:{"font-weight":"600"}},[i("span",[t._v(" "+t._s(t.$t("mining.miner")))]),i("span",[t._v(t._s(t.$t("mining.Minutes"))+" MH/s "),i("i",{staticClass:"iconfont icon-paixu sort",on:{click:function(i){return t.handleSort("30m")}}})]),i("span",[t._v(t._s(t.$t("mining.dayPower"))+" MH/s "),i("i",{staticClass:"iconfont icon-paixu sort",on:{click:function(i){return t.handleSort("24h")}}})])]),i("div",{staticClass:"totalTitleAll"},[i("span",[i("div",{staticClass:"circularDots"}),t._v(" "+t._s(t.$t("mining.total"))+" ")]),i("span",[t._v(t._s(t.MinerListData.rate)+" ")]),i("span",[t._v(t._s(t.MinerListData.dailyRate)+" ")])]),i("el-collapse",{staticStyle:{"max-height":"800px",overflow:"auto"},attrs:{accordion:""},model:{value:t.Accordion,callback:function(i){t.Accordion=i},expression:"Accordion"}},t._l(t.MinerListTableData,(function(e,a){return i("div",{key:t.sunTabActiveName+e.miner,class:"item-"+(a%2==0?"even":"odd")},[i("el-collapse-item",{attrs:{name:e.id},nativeOn:{click:function(i){return t.handelOnLineMiniChart(e.id,e.miner)}}},[i("template",{slot:"title"},[i("div",{staticClass:"accordionTitleAll"},[i("span",[i("div",{staticClass:"circularDotsOnLine"}),t._v(" "+t._s(e.miner))]),i("span",[t._v(t._s(e.rate))]),i("span",[t._v(t._s(e.dailyRate))])])]),i("div",{staticClass:"table-itemOn"},[i("div",[i("p",[t._v(t._s(t.$t("mining.submitTime")))]),i("p",[i("span",{staticClass:"offlineTime",class:{activeState:"2"==e.status},attrs:{title:e.submit}},[i("span",[t._v(t._s(e.submit)+" ")]),"2"==e.status?i("span",{staticClass:"timeTips",attrs:{title:t.handelTimeInterval(e.offline)}},[t._v(t._s(t.handelTimeInterval(e.offline)))]):t._e()])])])]),i("p",{staticClass:"chartTitle"},[t._v(" "+t._s(t.$t("mining.miner"))+t._s(e.miner)+" "+t._s(t.$t("mining.power24H"))+" ")]),i("div",{directives:[{name:"loading",rawName:"v-loading",value:t.miniLoading,expression:"miniLoading"}],staticStyle:{width:"100%",height:"300px"},attrs:{id:"Small"+e.id}})],2)],1)})),0)],1):"off-line"==t.sunTabActiveName?i("div",{staticClass:"publicBox off-line"},[i("div",{staticClass:"TitleAll",staticStyle:{"font-weight":"600"}},[i("span",[t._v(" "+t._s(t.$t("mining.miner")))]),i("span",[t._v(t._s(t.$t("mining.Minutes"))+" MH/s "),i("i",{staticClass:"iconfont icon-paixu sort",on:{click:function(i){return t.handleSort("30m")}}})]),i("span",[t._v(t._s(t.$t("mining.dayPower"))+" MH/s "),i("i",{staticClass:"iconfont icon-paixu sort",on:{click:function(i){return t.handleSort("24h")}}})])]),i("div",{staticClass:"totalTitleAll"},[i("span",[i("div",{staticClass:"circularDots"}),t._v(" "+t._s(t.$t("mining.total"))+" ")]),i("span",[t._v(t._s(t.MinerListData.rate)+" ")]),i("span",[t._v(t._s(t.MinerListData.dailyRate)+" ")])]),i("el-collapse",{staticStyle:{"max-height":"800px",overflow:"auto"},attrs:{accordion:""},model:{value:t.Accordion,callback:function(i){t.Accordion=i},expression:"Accordion"}},t._l(t.MinerListTableData,(function(e,a){return i("div",{key:e.miner,class:"item-"+(a%2===0?"even":"odd")},[i("el-collapse-item",{attrs:{name:e.id},nativeOn:{click:function(i){return t.handelMiniOffLine(e.id,e.miner)}}},[i("template",{slot:"title"},[i("div",{staticClass:"accordionTitleAll"},[i("span",{class:{activeState:"2"==e.status}},[i("div",{staticClass:"circularDotsOffLine"}),t._v(" "+t._s(e.miner))]),i("span",[t._v(t._s(e.rate))]),i("span",[t._v(t._s(e.dailyRate))])])]),i("div",{staticClass:"table-itemOn"},[i("div",[i("p",[t._v(t._s(t.$t("mining.submitTime")))]),i("p",[i("span",{staticClass:"offlineTime",class:{activeState:"2"==e.status},attrs:{title:e.submit}},[i("span",[t._v(t._s(e.submit)+" ")]),"2"==e.status?i("span",{staticClass:"timeTips",attrs:{title:t.handelTimeInterval(e.offline)}},[t._v(t._s(t.handelTimeInterval(e.offline)))]):t._e()])])])]),i("p",{staticClass:"chartTitle"},[t._v(" "+t._s(t.$t("mining.miner"))+t._s(e.miner)+" "+t._s(t.$t("mining.power24H"))+" ")]),i("div",{directives:[{name:"loading",rawName:"v-loading",value:t.miniLoading,expression:"miniLoading"}],staticStyle:{width:"100%",height:"300px"},attrs:{id:"SmallOff"+e.id}})],2)],1)})),0)],1):t._e(),i("el-pagination",{staticStyle:{margin:"0 auto","margin-top":"10px","margin-bottom":"10px"},attrs:{"current-page":t.currentPageMiner,"page-sizes":[50,100,200,400],"page-size":t.MinerListParams.limit,layout:"sizes, prev, pager, next",total:t.minerTotal},on:{"size-change":t.handleSizeMiner,"current-change":t.handleCurrentMiner,"update:currentPage":function(i){t.currentPageMiner=i},"update:current-page":function(i){t.currentPageMiner=i}}})],1):t._e(),"miningMachine"==t.activeName2?i("section",{staticClass:"miningMachine"},[i("div",{staticClass:"belowTable"},[i("ul",[i("li",{staticClass:"table-title"},[i("span",{attrs:{title:t.$t("mining.settlementDate")}},[t._v(t._s(t.$t("mining.settlementDate")))]),i("span",[t._v(t._s(t.$t("mining.dayPower"))+" MH/s")]),i("span",{attrs:{title:t.$t("mining.profit")}},[t._v(t._s(t.$t("mining.profit")))])]),t._l(t.HistoryIncomeData,(function(e,a){return i("li",{key:a,staticClass:"currency-list"},[i("span",{attrs:{title:e.date}},[t._v(t._s(e.date))]),i("span",{attrs:{title:e.mhs}},[t._v(t._s(e.mhs)+" ")]),i("span",{attrs:{title:e.amount}},[t._v(t._s(e.amount)+" "),i("span",{staticStyle:{color:"rgba(0, 0, 0, 0.5)","text-transform":"capitalize"}},[t._v(t._s(t.accountItem.coin.includes("dgb")?"dgb":t.accountItem.coin))])])])}))],2),i("el-pagination",{staticClass:"pageBox",attrs:{"current-page":t.currentPageIncome,"page-sizes":[10,50,100,400],"page-size":t.IncomeParams.limit,layout:"sizes, prev, pager, next",total:t.HistoryIncomeTotal},on:{"size-change":t.handleSizeChangeIncome,"current-change":t.handleCurrentChangeIncome,"update:currentPage":function(i){t.currentPageIncome=i},"update:current-page":function(i){t.currentPageIncome=i}}})],1)]):t._e(),"payment"==t.activeName2?i("section",{staticClass:"payment"},[i("div",{staticClass:"belowTable"},[i("div",{staticClass:"table-title"},[i("span",{attrs:{title:t.$t("mining.withdrawalTime")}},[t._v(t._s(t.$t("mining.withdrawalTime")))]),i("span",{attrs:{title:t.$t("mining.withdrawalAmount")}},[t._v(t._s(t.$t("mining.withdrawalAmount")))]),i("span",{attrs:{title:t.$t("mining.paymentStatus")}},[t._v(t._s(t.$t("mining.paymentStatus")))])]),i("el-collapse",{attrs:{accordion:""}},t._l(t.HistoryOutcomeData,(function(e,a){return i("el-collapse-item",{key:e.txid,staticClass:"collapseItem",attrs:{name:a}},[i("template",{slot:"title"},[i("div",{staticClass:"paymentCollapseTitle"},[i("span",[t._v(t._s(e.date))]),i("span",[t._v(t._s(e.amount))]),i("span",[t._v(t._s(t.$t(t.handelPayment(e.status))))])])]),i("div",{staticClass:"dropDownContent"},[e.address?i("div",[i("p",[t._v(t._s(t.$t("mining.withdrawalAddress")))]),i("p",[t._v(t._s(e.address)+" "),i("span",{staticClass:"copy",on:{click:function(i){return t.clickCopyAddress(e)}}},[t._v(t._s(t.$t("personal.copy")))])])]):t._e(),e.txid?i("div",[i("p",[t._v("Txid")]),i("p",[i("span",{staticStyle:{cursor:"pointer","text-decoration":"underline",color:"#433278"},on:{click:function(i){return t.handelTxid(e.txid)}}},[t._v(" "+t._s(e.txid)+" ")]),t._v(" "),i("span",{staticClass:"copy",on:{click:function(i){return t.clickCopyTxid(e)}}},[t._v(t._s(t.$t("personal.copy")))])])]):t._e()])],2)})),1),i("el-pagination",{staticStyle:{"margin-top":"10px","margin-bottom":"10px"},attrs:{"current-page":t.currentPage,"page-sizes":[10,50,100,400],"page-size":t.OutcomeParams.limit,layout:"sizes, prev, pager, next",total:t.HistoryOutcomeTotal},on:{"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange,"update:currentPage":function(i){t.currentPage=i},"update:current-page":function(i){t.currentPage=i}}})],1)]):t._e()])])]):i("section",{staticClass:"miningAccount"},[i("div",{staticClass:"accountInformation"},[i("img",{attrs:{src:t.accountItem.img,alt:"coin"}}),i("span",{staticClass:"coin"},[t._v(t._s(t.accountItem.coin)+" ")]),i("i",{staticClass:"iconfont icon-youjiantou"}),i("span",{staticClass:"ma"},[t._v(" "+t._s(t.accountItem.ma))])]),i("div",{staticClass:"profitBox"},[i("div",{staticClass:"profitTop"},[i("div",{staticClass:"box"},[i("span",[t._v(t._s(t.$t("mining.totalRevenue"))+" ")]),i("span",{staticClass:"text"},[t._v(t._s(t.MinerAccountData.totalProfit))])]),i("div",{staticClass:"box"},[i("span",[t._v(t._s(t.$t("mining.totalExpenditure"))+" ")]),i("span",{staticClass:"text"},[t._v(t._s(t.MinerAccountData.expend))])]),i("div",{staticClass:"box"},[i("span",[t._v(t._s(t.$t("mining.yesterdaySEarnings"))+" ")]),i("span",{staticClass:"text"},[t._v(t._s(t.MinerAccountData.preProfit))])]),i("div",{staticClass:"box"},[i("span",[t._v(t._s(t.$t("mining.diggedToday"))+" "),i("div",{staticClass:"boxTitle",attrs:{"data-title":t.$t("mining.diggedTodayTips")}},[i("img",{attrs:{src:e(3832),alt:"profit",loading:"lazy"}})])]),i("span",{staticClass:"text"},[t._v(t._s(t.MinerAccountData.todayPorfit))])]),i("div",{staticClass:"box"},[i("span",{staticClass:"paymentSettings"},[t._v(t._s(t.$t("mining.accountBalance"))+" "),i("div",{staticClass:"boxTitle",attrs:{"data-title":t.$t("mining.balanceReminder")}},[i("img",{attrs:{src:e(3832),alt:"profit",loading:"lazy"}})])]),i("span",{staticClass:"text"},[t._v(t._s(t.MinerAccountData.balance))])])]),i("div",{staticClass:"paymentSettingBth"},[i("el-button",{on:{click:t.jumpPage}},[t._v(t._s(t.$t("mining.paymentSettings")))])],1),i("div",{directives:[{name:"loading",rawName:"v-loading",value:t.powerChartLoading,expression:"powerChartLoading"}],staticClass:"profitBtm"},[i("div",{staticClass:"right"},[i("div",{staticClass:"intervalBox"},[i("div",{staticClass:"title"},[t._v(t._s(t.$t("mining.algorithmicDiagram")))]),i("div",{staticClass:"times"},t._l(t.intervalList,(function(e){return i("span",{key:e.value,class:{timeActive:t.timeActive==e.value},on:{click:function(i){return t.handleInterval(e.value)}}},[t._v(t._s(t.$t(e.label)))])})),0)]),i("div",{staticStyle:{width:"100%",height:"100%",padding:"0"},attrs:{id:"powerChart"}})])])]),i("div",{directives:[{name:"loading",rawName:"v-loading",value:t.barChartLoading,expression:"barChartLoading"}],staticClass:"top2Box"},[i("div",{staticClass:"lineBOX"},[i("div",{staticClass:"intervalBox"},[i("div",{staticClass:"title"},[t._v(t._s(t.$t("mining.computingPower")))]),i("div",{staticClass:"times"},t._l(t.AccountPowerDistributionintervalList,(function(e){return i("span",{key:e.value,class:{timeActive:t.barActive==e.value},on:{click:function(i){return t.distributionInterval(e.value)}}},[t._v(t._s(t.$t(e.label)))])})),0)]),i("div",{staticStyle:{width:"100%",height:"90%",padding:"0"},attrs:{id:"barChart"}})])]),i("div",{staticClass:"top3Box"},[i("section",{staticClass:"tabPageBox"},[i("div",{staticClass:"tabPageTitle"},[i("div",{staticClass:"TitleS minerTitle",on:{click:function(i){return t.handleClick2("power")}}},[i("span",{staticClass:"trapezoid",class:{activeHeadlines:"power"==t.activeName2}},[i("span",[t._v(t._s(t.$t("mining.miner")))])])]),i("div",{staticClass:"TitleS profitTitle",on:{click:function(i){return t.handleClick2("miningMachine")}}},[i("span",{staticClass:"trapezoid",class:{activeHeadlines:"miningMachine"==t.activeName2}},[i("span",[t._v(t._s(t.$t("mining.profit")))])])]),i("div",{staticClass:"TitleS paymentTitle",on:{click:function(i){return t.handleClick2("payment")}}},[i("span",{staticClass:"trapezoid",class:{activeHeadlines:"payment"==t.activeName2}},[i("span",[t._v(t._s(t.$t("mining.payment")))])])])]),"power"==t.activeName2?i("section",{directives:[{name:"loading",rawName:"v-loading",value:t.MinerListLoading,expression:"MinerListLoading"}],staticClass:"page"},[i("div",{staticClass:"minerTitleBox"},[i("div",{staticClass:"TitleOnLine"},[i("span",{on:{click:function(i){return t.onlineStatus("all")}}},[i("span",{staticClass:"circularDots3",class:{activeCircular:"all"==t.sunTabActiveName}}),t._v(" "+t._s(t.$t("mining.all"))+" "+t._s(t.MinerListData.all))]),i("span",{on:{click:function(i){return t.onlineStatus("onLine")}}},[i("div",{staticClass:"circularDots2",class:{activeCircular:"onLine"==t.sunTabActiveName}}),t._v(" "+t._s(t.$t("mining.onLine"))+" "+t._s(t.MinerListData.online))]),i("span",{on:{click:function(i){return t.onlineStatus("off-line")}}},[i("div",{staticClass:"circularDots2",class:{activeCircular:"off-line"==t.sunTabActiveName}}),t._v(" "+t._s(t.$t("mining.offLine"))+" "+t._s(t.MinerListData.offline))])]),i("div",{staticClass:"searchBox"},[i("input",{directives:[{name:"model",rawName:"v-model",value:t.search,expression:"search"}],staticClass:"inout",attrs:{type:"text",placeholder:t.$t("personal.pleaseEnter2")},domProps:{value:t.search},on:{input:function(i){i.target.composing||(t.search=i.target.value)}}}),i("i",{staticClass:"el-icon-search",on:{click:t.handelSearch}})])]),"all"==t.sunTabActiveName?i("div",{staticClass:"publicBox all"},[i("div",{staticClass:"TitleAll",staticStyle:{"font-weight":"600"}},[i("span",[t._v(" "+t._s(t.$t("mining.miner")))]),i("span",[t._v(" "+t._s(t.$t("mining.Minutes"))+" MH/s "),i("i",{staticClass:"iconfont icon-paixu sort",on:{click:function(i){return t.handleSort("30m")}}})]),i("span",[t._v(t._s(t.$t("mining.dayPower"))+" MH/s "),i("i",{staticClass:"iconfont icon-paixu sort",on:{click:function(i){return t.handleSort("24h")}}})]),i("span",[t._v(t._s(t.$t("mining.submitTime")))]),i("span",[t._v(t._s(t.$t("mining.state")))])]),i("div",{staticClass:"totalTitleAll"},[i("span",[i("div",{staticClass:"circularDots"}),t._v(" "+t._s(t.$t("mining.total")))]),i("span",[t._v(t._s(t.MinerListData.rate)+" ")]),i("span",[t._v(t._s(t.MinerListData.dailyRate)+" ")]),i("span",[t._v("   --- ")]),i("span")]),i("el-collapse",{staticStyle:{"max-height":"800px",overflow:"auto"},attrs:{accordion:""},model:{value:t.Accordion,callback:function(i){t.Accordion=i},expression:"Accordion"}},t._l(t.sortedMinerListTableData,(function(e,a){return i("div",{key:e.miner,class:"item-"+(a%2===0?"even":"odd")},[i("el-collapse-item",{attrs:{name:e.id},nativeOn:{click:function(i){return t.handelMiniOffLine(e.id,e.miner)}}},[i("template",{slot:"title"},[i("div",{staticClass:"accordionTitleAll"},[i("span",{class:{activeState:"2"==e.status}},["1"==e.status?i("div",{staticClass:"circularDotsOnLine"}):t._e(),"2"==e.status?i("div",{staticClass:"circularDotsOffLine"}):t._e(),t._v(" "+t._s(e.miner))]),i("span",[t._v(t._s(e.rate)+" ")]),i("span",[t._v(t._s(e.dailyRate))]),i("span",{staticClass:"offlineTime",class:{activeState:"2"==e.status},attrs:{title:e.submit}},[i("span",[t._v(t._s(e.submit)+" ")]),"2"==e.status?i("span",{staticClass:"timeTips",attrs:{title:t.handelTimeInterval(e.offline)}},[t._v(t._s(t.handelTimeInterval(e.offline)))]):t._e()]),i("span",{class:{activeState:"2"==e.status},attrs:{title:t.$t(t.handelStateList(e.status))}},[t._v(t._s(t.$t(t.handelStateList(e.status)))+" ")])])]),i("p",{staticClass:"chartTitle"},[t._v(" "+t._s(t.$t("mining.miner"))+t._s(e.miner)+"  "+t._s(t.$t("mining.power24H"))+" ")]),i("div",{directives:[{name:"loading",rawName:"v-loading",value:t.miniLoading,expression:"miniLoading"}],staticStyle:{width:"100%",height:"300px"},attrs:{id:"SmallOff"+e.id}})],2)],1)})),0)],1):"onLine"==t.sunTabActiveName?i("div",{staticClass:"publicBox onLine"},[i("div",{staticClass:"Title",staticStyle:{"font-weight":"600"}},[i("span",[t._v(" "+t._s(t.$t("mining.miner")))]),i("span",[t._v(t._s(t.$t("mining.Minutes"))+" MH/s "),i("i",{staticClass:"iconfont icon-paixu sort",on:{click:function(i){return t.handleSort("30m")}}})]),i("span",[t._v(t._s(t.$t("mining.dayPower"))+" MH/s "),i("i",{staticClass:"iconfont icon-paixu sort",on:{click:function(i){return t.handleSort("24h")}}})]),i("span",[t._v(t._s(t.$t("mining.submitTime")))])]),i("div",{staticClass:"totalTitle"},[i("span",[i("div",{staticClass:"circularDots"}),t._v(" "+t._s(t.$t("mining.total"))+" ")]),i("span",[t._v(t._s(t.MinerListData.rate)+" ")]),i("span",[t._v(t._s(t.MinerListData.dailyRate)+" ")]),i("span",[t._v("   --- ")])]),i("el-collapse",{staticStyle:{"max-height":"800px",overflow:"auto"},attrs:{accordion:""},model:{value:t.Accordion,callback:function(i){t.Accordion=i},expression:"Accordion"}},t._l(t.MinerListTableData,(function(e,a){return i("div",{key:t.sunTabActiveName+e.miner,class:"item-"+(a%2==0?"even":"odd")},[i("el-collapse-item",{attrs:{name:e.id},nativeOn:{click:function(i){return t.handelOnLineMiniChart(e.id,e.miner)}}},[i("template",{slot:"title"},[i("div",{staticClass:"accordionTitle"},[i("span",[i("div",{staticClass:"circularDotsOnLine"}),t._v(" "+t._s(e.miner))]),i("span",[t._v(t._s(e.rate))]),i("span",[t._v(t._s(e.dailyRate))]),i("span",[t._v(t._s(e.submit))])])]),i("p",{staticClass:"chartTitle"},[t._v(" "+t._s(t.$t("mining.miner"))+t._s(e.miner)+" "+t._s(t.$t("mining.power24H"))+" ")]),i("div",{directives:[{name:"loading",rawName:"v-loading",value:t.miniLoading,expression:"miniLoading"}],staticStyle:{width:"100%",height:"300px"},attrs:{id:"Small"+e.id}})],2)],1)})),0)],1):"off-line"==t.sunTabActiveName?i("div",{staticClass:"publicBox off-line"},[i("div",{staticClass:"Title",staticStyle:{"font-weight":"600"}},[i("span",[t._v(" "+t._s(t.$t("mining.miner")))]),i("span",[t._v(t._s(t.$t("mining.Minutes"))+" MH/s "),i("i",{staticClass:"iconfont icon-paixu sort",on:{click:function(i){return t.handleSort("30m")}}})]),i("span",[t._v(t._s(t.$t("mining.dayPower"))+" MH/s "),i("i",{staticClass:"iconfont icon-paixu sort",on:{click:function(i){return t.handleSort("24h")}}})]),i("span",[t._v(t._s(t.$t("mining.submitTime")))])]),i("div",{staticClass:"totalTitle"},[i("span",[i("div",{staticClass:"circularDots"}),t._v(" "+t._s(t.$t("mining.total"))+" ")]),i("span",[t._v(t._s(t.MinerListData.rate)+" ")]),i("span",[t._v(t._s(t.MinerListData.dailyRate)+" ")]),i("span",[t._v("   --- ")])]),i("el-collapse",{staticStyle:{"max-height":"800px",overflow:"auto"},attrs:{accordion:""},model:{value:t.Accordion,callback:function(i){t.Accordion=i},expression:"Accordion"}},t._l(t.MinerListTableData,(function(e,a){return i("div",{key:e.miner,class:"item-"+(a%2===0?"even":"odd")},[i("el-collapse-item",{attrs:{name:e.id},nativeOn:{click:function(i){return t.handelMiniOffLine(e.id,e.miner)}}},[i("template",{slot:"title"},[i("div",{staticClass:"accordionTitle"},[i("span",{class:{activeState:"2"==e.status}},[i("div",{staticClass:"circularDotsOffLine"}),t._v(" "+t._s(e.miner))]),i("span",[t._v(t._s(e.rate))]),i("span",[t._v(t._s(e.dailyRate))]),i("span",{staticClass:"offlineTime",class:{activeState:"2"==e.status},attrs:{title:e.submit}},[i("span",[t._v(t._s(e.submit)+" ")]),"2"==e.status?i("span",{staticClass:"timeTips",attrs:{title:t.handelTimeInterval(e.offline)}},[t._v(t._s(t.handelTimeInterval(e.offline)))]):t._e()])])]),i("p",{staticClass:"chartTitle"},[t._v(" "+t._s(t.$t("mining.miner"))+t._s(e.miner)+" "+t._s(t.$t("mining.power24H"))+" ")]),i("div",{directives:[{name:"loading",rawName:"v-loading",value:t.miniLoading,expression:"miniLoading"}],staticStyle:{width:"100%",height:"300px"},attrs:{id:"SmallOff"+e.id}})],2)],1)})),0)],1):t._e(),i("el-pagination",{staticClass:"minerPagination",attrs:{"current-page":t.currentPageMiner,"page-sizes":[50,100,200,400],"page-size":t.MinerListParams.limit,layout:"total, sizes, prev, pager, next, jumper",total:t.minerTotal},on:{"size-change":t.handleSizeMiner,"current-change":t.handleCurrentMiner,"update:currentPage":function(i){t.currentPageMiner=i},"update:current-page":function(i){t.currentPageMiner=i}}})],1):t._e(),"miningMachine"==t.activeName2?i("section",{staticClass:"miningMachine"},[i("div",{staticClass:"belowTable"},[i("ul",[i("li",{staticClass:"table-title"},[i("span",{attrs:{title:t.$t("mining.settlementDate")}},[t._v(t._s(t.$t("mining.settlementDate")))]),i("span",[t._v(t._s(t.$t("mining.dayPower"))+" MH/s")]),i("span",{attrs:{title:t.$t("mining.profit")}},[t._v(t._s(t.$t("mining.profit")))])]),t._l(t.HistoryIncomeData,(function(e,a){return i("li",{key:a,staticClass:"currency-list"},[i("span",{attrs:{title:e.date}},[t._v(t._s(e.date))]),i("span",{attrs:{title:e.mhs}},[t._v(t._s(e.mhs)+" ")]),i("span",{attrs:{title:e.amount}},[t._v(t._s(e.amount)+" "),i("span",{staticStyle:{color:"rgba(0, 0, 0, 0.5)","text-transform":"capitalize"}},[t._v(t._s(t.accountItem.coin.includes("dgb")?"dgb":t.accountItem.coin))])])])}))],2),i("el-pagination",{attrs:{"current-page":t.currentPageIncome,"page-sizes":[10,50,100,400],"page-size":t.IncomeParams.limit,layout:"total, sizes, prev, pager, next, jumper",total:t.HistoryIncomeTotal},on:{"size-change":t.handleSizeChangeIncome,"current-change":t.handleCurrentChangeIncome,"update:currentPage":function(i){t.currentPageIncome=i},"update:current-page":function(i){t.currentPageIncome=i}}})],1)]):t._e(),"payment"==t.activeName2?i("section",{staticClass:"payment"},[i("div",{staticClass:"belowTable"},[i("ul",[i("li",{staticClass:"table-title"},[i("span",{attrs:{title:t.$t("mining.withdrawalTime")}},[t._v(t._s(t.$t("mining.withdrawalTime")))]),i("span",{attrs:{title:t.$t("mining.withdrawalAddress")}},[t._v(t._s(t.$t("mining.withdrawalAddress")))]),i("span",{attrs:{title:t.$t("mining.withdrawalAmount")}},[t._v(t._s(t.$t("mining.withdrawalAmount")))]),i("span",{attrs:{title:t.$t("mining.paymentStatus")}},[t._v(t._s(t.$t("mining.paymentStatus")))])]),t._l(t.HistoryOutcomeData,(function(e){return i("li",{key:e.txid,staticClass:"currency-list"},[i("span",{attrs:{title:e.date}},[t._v(t._s(e.date))]),i("span",{staticStyle:{"text-align":"left"},attrs:{title:e.address}},[t._v(t._s(e.address))]),i("span",{attrs:{title:e.amount}},[t._v(t._s(e.amount)+" "),i("span",{staticStyle:{color:"rgba(0, 0, 0, 0.5)","text-transform":"capitalize"}},[t._v(t._s(t.accountItem.coin.includes("dgb")?"dgb":t.accountItem.coin))])]),i("span",{staticClass:"txidBox"},[i("span",{staticStyle:{"font-size":"0.8rem"}},[t._v(t._s(t.$t(t.handelPayment(e.status)))+" ")]),0!==e.status?i("span",{staticClass:"txid"},[i("el-popover",{attrs:{placement:"top",width:"300",trigger:"hover"}},[i("span",{ref:"txidRef",refInFor:!0,attrs:{id:`id${e.txid}`}},[t._v(t._s(e.txid)+" ")]),i("div",{staticStyle:{"text-align":"right",margin:"0"}},[i("el-button",{staticStyle:{"border-radius":"5px"},attrs:{size:"mini"},on:{click:function(i){return t.copyTxid(e.txid)}}},[t._v(t._s(t.$t("personal.copy"))+" ")])],1),i("div",{attrs:{slot:"reference"},on:{click:function(i){return t.handelTxid(e.txid)}},slot:"reference"},[t._v("Txid ")])])],1):t._e()])])}))],2),i("el-pagination",{attrs:{"current-page":t.currentPage,"page-sizes":[10,50,100,400],"page-size":t.OutcomeParams.limit,layout:"total, sizes, prev, pager, next, jumper",total:t.HistoryOutcomeTotal},on:{"size-change":t.handleSizeChange,"current-change":t.handleCurrentChange,"update:currentPage":function(i){t.currentPage=i},"update:current-page":function(i){t.currentPage=i}}})],1)]):t._e()])])])])},i.Yp=[]},65418:function(t,i,e){e.r(i),e.d(i,{__esModule:function(){return s.B},default:function(){return l}});var a=e(81035),s=e(18163),n=s.A,o=e(81656),r=(0,o.A)(n,a.XX,a.Yp,!1,null,"e3add720",null),l=r.exports},71133:function(t,i,e){i.Yp=i.XX=void 0;i.XX=function(){var t=this,i=t._self._c;return i("div",{staticClass:"wscn-http404-container"},[i("div",{staticClass:"wscn-http404"},[t._m(0),i("div",{staticClass:"bullshit"},[i("div",{staticClass:"bullshit__oops"},[t._v(" 404 ")]),i("div",{staticClass:"bullshit__headline"},[t._v(" "+t._s(t.$t(t.message))+" ")]),i("div",{staticClass:"bullshit__info"},[t._v(" "+t._s(t.$t("user.noPage"))+" ")])])])])},i.Yp=[function(){var t=this,i=t._self._c;return i("div",{staticClass:"pic-404"},[i("img",{staticClass:"pic-404__parent",attrs:{src:e(22792),alt:"404"}}),i("img",{staticClass:"pic-404__child left",attrs:{src:e(950),alt:"404"}}),i("img",{staticClass:"pic-404__child mid",attrs:{src:e(950),alt:"404"}}),i("img",{staticClass:"pic-404__child right",attrs:{src:e(950),alt:"404"}})])}]},81035:function(t,i,e){i.Yp=i.XX=void 0;i.XX=function(){var t=this,i=t._self._c;return i("div",{staticClass:"loginPage"},[t.$isMobile?i("section",{staticClass:"mobileMain"},[i("header",{staticClass:"headerBox"},[i("img",{attrs:{src:e(87596),alt:"logo",loading:"lazy"},on:{click:function(i){return t.handelJump("/")}}}),i("span",{staticClass:"title"},[t._v(t._s(t.$t("home.MLogin")))]),i("span")]),t._m(0),i("section",{staticClass:"formInput"},[i("el-form",{ref:"ruleForm",staticClass:"demo-ruleForm",attrs:{model:t.loginForm,"status-icon":"",rules:t.loginRules}},[i("el-form-item",{attrs:{prop:"userName"}},[i("el-input",{attrs:{"prefix-icon":"el-icon-user",autocomplete:"off",placeholder:t.$t("user.Account")},model:{value:t.loginForm.userName,callback:function(i){t.$set(t.loginForm,"userName",i)},expression:"loginForm.userName"}})],1),i("el-form-item",{attrs:{prop:"password"}},[i("el-input",{attrs:{type:"password","prefix-icon":"el-icon-unlock",autocomplete:"off",showPassword:"",placeholder:t.$t("user.password")},model:{value:t.loginForm.password,callback:function(i){t.$set(t.loginForm,"password",i)},expression:"loginForm.password"}})],1),i("el-form-item",{attrs:{prop:"code"}},[i("div",{staticClass:"verificationCode"},[i("el-input",{attrs:{type:"text","prefix-icon":"el-icon-chat-line-square",autocomplete:"off",placeholder:t.$t("user.verificationCode")},model:{value:t.loginForm.code,callback:function(i){t.$set(t.loginForm,"code",i)},expression:"loginForm.code"}}),i("el-button",{staticClass:"codeBtn",attrs:{disabled:t.btnDisabled},on:{click:t.handelCode}},[t.countDownTime<60&&t.countDownTime>0?i("span",[t._v(t._s(t.countDownTime))]):t._e(),t._v(" "+t._s(t.$t(t.bthText)))])],1)]),i("div",{staticClass:"registerBox"},[i("span",{staticClass:"noAccount"},[t._v(t._s(t.$t("user.noAccount")))]),i("span",{staticStyle:{color:"#661fff"},on:{click:function(i){return t.handelJump("register")}}},[t._v(t._s(t.$t("user.register")))]),i("span",{staticClass:"forget",staticStyle:{color:"#661fff"},on:{click:function(i){return t.handelJump("resetPassword")}}},[t._v(t._s(t.$t("user.forgotPassword")))])]),i("el-form-item",[i("el-button",{staticStyle:{width:"100%",background:"#661fff",color:"aliceblue","margin-top":"6%"},attrs:{loading:t.loginLoading},on:{click:function(i){return t.submitForm("ruleForm")}}},[t._v(t._s(t.$t("user.login")))]),i("div",{staticStyle:{"text-align":"left"}},[i("el-radio",{attrs:{label:"zh"},on:{input:t.handelRadio},model:{value:t.radio,callback:function(i){t.radio=i},expression:"radio"}},[t._v("简体中文")]),i("el-radio",{attrs:{label:"en"},on:{input:t.handelRadio},model:{value:t.radio,callback:function(i){t.radio=i},expression:"radio"}},[t._v("English")])],1)],1)],1)],1)]):i("section",{staticClass:"loginModular"},[i("div",{staticClass:"leftBox"},[i("img",{staticClass:"logo",attrs:{src:e(79613),alt:"logo"},on:{click:t.handleClick}}),i("img",{attrs:{src:e(58455),alt:"Login for mining"}})]),i("div",{staticClass:"loginBox"},[i("div",{staticClass:"closeBox",on:{click:t.handleClick}},[i("i",{staticClass:"iconfont icon-guanbi1 close"})]),i("el-form",{ref:"ruleForm",staticClass:"demo-ruleForm",attrs:{model:t.loginForm,"status-icon":"",rules:t.loginRules}},[i("el-form-item",[i("p",{staticClass:"loginTitle"},[t._v(t._s(t.$t("user.login")))])]),i("el-form-item",{attrs:{prop:"userName"}},[i("el-input",{attrs:{"prefix-icon":"el-icon-user",autocomplete:"off",placeholder:t.$t("user.Account"),type:"email"},model:{value:t.loginForm.userName,callback:function(i){t.$set(t.loginForm,"userName",i)},expression:"loginForm.userName"}})],1),i("el-form-item",{attrs:{prop:"password"}},[i("el-input",{attrs:{type:"password","prefix-icon":"el-icon-unlock",autocomplete:"off",showPassword:"",placeholder:t.$t("user.password")},model:{value:t.loginForm.password,callback:function(i){t.$set(t.loginForm,"password",i)},expression:"loginForm.password"}})],1),i("el-form-item",{attrs:{prop:"code"}},[i("div",{staticClass:"verificationCode"},[i("el-input",{attrs:{type:"text","prefix-icon":"el-icon-chat-line-square",autocomplete:"off",placeholder:t.$t("user.verificationCode")},model:{value:t.loginForm.code,callback:function(i){t.$set(t.loginForm,"code",i)},expression:"loginForm.code"}}),i("el-button",{staticClass:"codeBtn",attrs:{disabled:t.btnDisabled},on:{click:t.handelCode}},[t.countDownTime<60&&t.countDownTime>0?i("span",[t._v(t._s(t.countDownTime))]):t._e(),t._v(" "+t._s(t.$t(t.bthText)))])],1)]),i("div",{staticClass:"registerBox"},[i("span",{staticClass:"noAccount"},[t._v(t._s(t.$t("user.noAccount")))]),i("span",{staticStyle:{cursor:"pointer"},on:{click:function(i){return t.handelJump("/register")}}},[t._v(t._s(t.$t("user.register")))]),i("span",{staticClass:"forget",on:{click:function(i){return t.handelJump("/resetPassword")}}},[t._v(t._s(t.$t("user.forgotPassword")))])]),i("el-form-item",[i("el-button",{staticStyle:{width:"100%",background:"#661fff",color:"aliceblue","margin-top":"6%"},attrs:{loading:t.loginLoading},on:{click:function(i){return t.submitForm("ruleForm")}}},[t._v(t._s(t.$t("user.login")))]),i("div",{staticStyle:{"text-align":"left"}},[i("el-radio",{attrs:{label:"zh"},on:{input:t.handelRadio},model:{value:t.radio,callback:function(i){t.radio=i},expression:"radio"}},[t._v("简体中文")]),i("el-radio",{attrs:{label:"en"},on:{input:t.handelRadio},model:{value:t.radio,callback:function(i){t.radio=i},expression:"radio"}},[t._v("English")])],1)],1)],1)],1)])])},i.Yp=[function(){var t=this,i=t._self._c;return i("div",{staticClass:"imgTop"},[i("img",{attrs:{src:e(6006),alt:"Login for mining",loading:"lazy"}})])}]},91064:function(t,i,e){e.r(i),e.d(i,{__esModule:function(){return s.B},default:function(){return l}});var a=e(71133),s=e(94729),n=s.A,o=e(81656),r=(0,o.A)(n,a.XX,a.Yp,!1,null,"a5129446",null),l=r.exports},94729:function(t,i){Object.defineProperty(i,"B",{value:!0}),i.A=void 0;i.A={name:"Page404",computed:{message(){return"user.canTFind"}}}}}]); \ No newline at end of file diff --git a/mining-pool/test/js/app-cfd820c8.9d119032.js.gz b/mining-pool/test/js/app-cfd820c8.9d119032.js.gz new file mode 100644 index 0000000..2fdb084 Binary files /dev/null and b/mining-pool/test/js/app-cfd820c8.9d119032.js.gz differ diff --git a/mining-pool/test/js/app-d87c119a.9b7e8112.js b/mining-pool/test/js/app-d87c119a.9b7e8112.js new file mode 100644 index 0000000..2a94665 --- /dev/null +++ b/mining-pool/test/js/app-d87c119a.9b7e8112.js @@ -0,0 +1 @@ +"use strict";(self["webpackChunkmining_pool"]=self["webpackChunkmining_pool"]||[]).push([[655],{857:function(e,t,n){Object.defineProperty(t,"B",{value:!0}),t.A=void 0,n(44114);var i=n(47149),o=n(6803),a=n(82908);t.A={computed:{key(){return this.$route.path}},data(){return{isLogin:!1,bthText:"English",token:"",accountList:[],miningAccountList:[],isOrderKey:"",activeIndex2:"",isDropdownVisible:!1,activeIndex:"",jurisdiction:{roleKey:""},ManagementShow:!1,currencyList:[],activeItem:{value:"nexa",label:"nexa",imgUrl:(0,a.getImageUrl)("/img/nexa.png")},customerIsOnline:!1,userEmail:""}},watch:{token:{handler(e){this.isLogin=!!e},immediate:!0,deep:!0},accountList:{handler(e){},immediate:!0,deep:!0},miningAccountList:{handler(e){},immediate:!0,deep:!0},$route(e,t){"/miningAccount"!==e.path&&(this.activeIndex="")},activeItemCoin:{handler(e){this.changeMenuName($event,this.activeItem)},deep:!0}},mounted(){this.$addStorageEvent(1,"activeItemCoin",JSON.stringify(this.activeItem));let e=localStorage.getItem("token");this.token=JSON.parse(e);let t=localStorage.getItem("accountList");this.accountList=JSON.parse(t);let n=localStorage.getItem("miningAccountList");this.miningAccountList=JSON.parse(n);let i=localStorage.getItem("jurisdiction");this.jurisdiction=JSON.parse(i);let o=localStorage.getItem("currencyList");this.currencyList=JSON.parse(o);let a=localStorage.getItem("userEmail");this.userEmail=JSON.parse(a),window.addEventListener("setItem",(()=>{let e=localStorage.getItem("token");this.token=JSON.parse(e);let t=localStorage.getItem("accountList");this.accountList=JSON.parse(t);let n=localStorage.getItem("miningAccountList");this.miningAccountList=JSON.parse(n);let i=localStorage.getItem("jurisdiction");this.jurisdiction=JSON.parse(i);let o=localStorage.getItem("currencyList");this.currencyList=JSON.parse(o);let a=localStorage.getItem("activeItemCoin");this.activeItem=JSON.parse(a);let s=localStorage.getItem("userEmail");this.userEmail=JSON.parse(s),this.jurisdiction&&"admin"==this.jurisdiction.roleKey?this.ManagementShow=!0:this.ManagementShow=!1})),this.jurisdiction&&"admin"==this.jurisdiction.roleKey?this.ManagementShow=!0:this.ManagementShow=!1,document.addEventListener("click",(function(){const e=document.querySelector(".dropdown"),t=document.querySelector(".arrow");try{e.classList.contains("show")&&(e.classList.remove("show"),t.classList.remove("up"))}catch(n){console.log(n)}}))},methods:{toggleDropdown(e){if(!e)return;const t=e.currentTarget,n=t.querySelector(".dropdown"),i=t.querySelector(".arrow");n&&(n.classList.toggle("show"),i?.classList.toggle("up"))},changeMenuName(e,t){if(!e)return;e.stopPropagation();const n=document.getElementById("menu1");if(!n)return;this.activeItem=t;const i=n.querySelector(".dropdown"),o=n.querySelector(".arrow");i?.classList.remove("show"),o?.classList.remove("up"),this.$addStorageEvent(1,"activeItemCoin",JSON.stringify(t))},handelDarkMode(){},async fetchAccountGradeList(){const e=await(0,i.getAccountGradeList)();this.miningAccountList=e.data,this.$addStorageEvent(1,"miningAccountList",JSON.stringify(this.miningAccountList))},async fetchAccountList(e){const t=await(0,o.getAccountList)(e);t&&200==t.code&&(this.accountList=t.data,this.$addStorageEvent(1,"accountList",JSON.stringify(this.accountList)))},async fetchUserid(e){try{const t=await getUserid(e);t&&200==t.code&&(this.customerIsOnline=t.data.customerIsOnline,localStorage.setItem("customerIsOnline",JSON.stringify(this.customerIsOnline)))}catch(t){throw console.error("获取用户ID失败:",t),t}},async fetchSignOut(){const e=await(0,i.getLogout)();if(e&&200==e.code){await this.$store.dispatch("logout");const e=this.$i18n.locale;this.fetchUserid({email:this.userEmail}),this.$router.push(`/${e}`)}},handleDropdownClick(){this.isDropdownVisible=!0},handleCommand(e){},handleSelect(){},handelLogin(){this.isLogin=!0;const e=this.$i18n.locale;this.$router.push(`/${e}/login`)},handelRegister(){const e=this.$i18n.locale;this.$router.push(`/${e}/register`)},handelLogin222(){this.isLogin=!this.isLogin},handelJump(e){try{const t=this.$i18n.locale;if("personalCenter"===e)return void this.$router.push(`/${t}/personalCenter/personalMining`).catch((e=>{"NavigationDuplicated"!==e.name&&console.error("Navigation failed:",e)}));const n=`/${t}${"/"===e?"":"/"+e}`;this.$router.push(n).catch((e=>{"NavigationDuplicated"!==e.name&&console.error("Navigation failed:",e)}))}catch(t){console.error("Navigation error:",t),this.$message.error(this.$t("common.navigationError"))}},handelJumpAccount(e,t,n){const i=this.$i18n.locale;let o={ma:t.account,coin:n,id:t.id,img:e.img};this.$addStorageEvent(1,"accountItem",JSON.stringify(o)),this.$router.push({path:`/${i}/miningAccount`,query:{ma:t.account+n}}),this.isDropdownVisible=!1},handelLang(e){try{const t=this.$route.path,n=this.$i18n.locale,i=this.$route.query;if(!["zh","en"].includes(e))throw new Error("Unsupported language");this.$i18n.locale=e,localStorage.setItem("lang",e||"en");const o=t.replace(`/${n}`,`/${e}`);this.$router.push({path:o,query:i}).catch((e=>{"NavigationDuplicated"!==e.name&&(console.error("路由更新失败:",e),this.$message.error(this.$t("common.langChangeFailed")))})),document.documentElement.lang=e}catch(t){console.error("语言切换失败:",t),this.$message.error(this.$t("common.langChangeFailed"))}},handelSignOut(){localStorage.setItem("cs_disconnect_all",Date.now().toString()),this.fetchSignOut(),localStorage.removeItem("token"),localStorage.removeItem("username"),localStorage.removeItem("userName"),localStorage.removeItem("userEmail"),localStorage.removeItem("jurisdiction"),this.$addStorageEvent(1,"miningAccountList",JSON.stringify("")),this.isLogin=!1,this.isDropdownVisible=!1}}}},8643:function(e,t,n){var i=n(91774)["default"],o=n(3999)["default"];Object.defineProperty(t,"B",{value:!0}),t.A=void 0,n(44114),n(18111),n(20116);var a=o(n(91774)),s=n(84403),r=i(n(3574)),l=n(82908);t.A={name:"AppMain",components:{comHeard:()=>Promise.resolve().then((()=>(0,a.default)(n(13904))))},computed:{key(){return this.$route.path}},data(){return{activeName:"second",option:{...s.line},option2:{...s.line},powerDialogVisible:!1,minerDialogVisible:!1,currentPage:1,currency:"mona",currencyPath:"https://s2.coinmarketcap.com/static/img/coins/64x64/213.png",currencyList:[{value:"grs",label:"grs",imgUrl:"https://s2.coinmarketcap.com/static/img/coins/64x64/258.png"},{value:"mona",label:"mona",imgUrl:"https://s2.coinmarketcap.com/static/img/coins/64x64/213.png"},{value:"dgb_skein",label:"dgb-skein-pool1",imgUrl:"https://s2.coinmarketcap.com/static/img/coins/64x64/109.png"},{value:"dgb_qubit",label:"dgb-qubit-pool1",imgUrl:"https://s2.coinmarketcap.com/static/img/coins/64x64/109.png"},{value:"dgb_odo",label:"dgb-odocrypt-pool1",imgUrl:"https://s2.coinmarketcap.com/static/img/coins/64x64/109.png"},{value:"dgb2_odo",label:"dgb-odocrypt-pool2",imgUrl:"https://s2.coinmarketcap.com/static/img/coins/64x64/109.png"},{value:"dgb_qubit_a10",label:"dgb-qubit-pool2",imgUrl:"https://s2.coinmarketcap.com/static/img/coins/64x64/109.png"},{value:"dgb_skein_a10",label:"dgb-skein-pool2",imgUrl:"https://s2.coinmarketcap.com/static/img/coins/64x64/109.png"},{value:"dgb_odo_b20",label:"dgb-odoscrypt-pool3",imgUrl:"https://s2.coinmarketcap.com/static/img/coins/64x64/109.png"}],scrollTop:0,isLogin:!0,bthText:"English",miningAccountList:[{title:"grs",coin:"grs",imgUrl:"https://s2.coinmarketcap.com/static/img/coins/64x64/258.png",children:[{account:"miner",id:"1"},{account:"test",id:"2"}]},{title:"mona",coin:"mona",imgUrl:"https://s2.coinmarketcap.com/static/img/coins/64x64/213.png",children:[{account:"miner",id:"1"},{account:"test",id:"2"}]},{title:"dgb-skein-pool1",coin:"dgb_skein",imgUrl:"https://s2.coinmarketcap.com/static/img/coins/64x64/109.png",children:[{account:"miner",id:"1"},{account:"test",id:"2"}]}],activeItemCoin:{coin:"nexa",imgUrl:(0,l.getImageUrl)("/img/nexa.png")},lang:"zh"}},created(){},mounted(){this.lang=this.$i18n.locale,window.scrollTo(0,0);let e=localStorage.getItem("activeItemCoin");this.activeItemCoin=JSON.parse(e);let t=localStorage.getItem("currencyList");this.currencyList=JSON.parse(t),window.addEventListener("setItem",(()=>{let e=localStorage.getItem("activeItemCoin");this.activeItemCoin=JSON.parse(e);let t=localStorage.getItem("currencyList");this.currencyList=JSON.parse(t)}))},methods:{jumpPage(){const e=this.$i18n.locale;this.$router.push(`/${e}/ServiceTerms`)},jumpPage1(){const e=this.$i18n.locale;this.$router.push(`/${e}/apiFile`)},jumpPage2(){const e=this.$i18n.locale;this.$router.push(`/${e}/rate`)},jumpPage3(e){console.log(e,1366565);const t=this.$i18n.locale;if("/AccessMiningPool"===e){const e=this.currencyList.find((e=>e.value===this.activeItemCoin.value));if(!e)return;let t=e.path.charAt(0).toUpperCase()+e.path.slice(1);console.log(t,1366565,e);this.$router.push({name:"AccessMiningPool",params:{coin:this.activeItemCoin.value,imgUrl:this.activeItemCoin.imgUrl},replace:!1})}else{let e=`/${t}/AccessMiningPool`;this.$router.push(e)}},handleCommand(e){},handleScroll(e){"/"==this.$route.path&&(this.scrollTop=e.target.scrollTop,this.scrollTop>=300?(this.$refs.head.style.backgroundColor="#FFF",this.$refs.head.style.position="fixed",this.$refs.head.style.top="0"):(this.$refs.head.style.backgroundColor="initial",this.$refs.head.style.position="tatic"))},clickCurrency(e){this.currency=e.label,this.currencyPath=e.imgUrl},handleClick(e,t){console.log(e,t)},handelPower(){this.powerDialogVisible=!0,this.$nextTick((()=>{this.inCharts()}))},handelMiner(){this.minerDialogVisible=!0,this.$nextTick((()=>{this.myChart2=r.init(document.getElementById("minerChart")),this.myChart2.setOption(this.option2)}))},handleSizeChange(e){console.log(`每页 ${e} 条`)},handleCurrentChange(e){console.log(`当前页: ${e}`)},inCharts(){this.myChart=r.init(document.getElementById("chart")),this.myChart.setOption(this.option)},handelLogin(){this.isLogin=!0,this.$router.push("/login")},handelRegister(){this.$router.push({path:"/register"})},handelLogin222(){this.isLogin=!this.isLogin},handelJump(e){this.$router.push({path:e})},handelLang(){const e=this.$route.path,t=this.$i18n.locale,n="zh"===t?"en":"zh";this.$i18n.locale=n,this.lang=n,this.bthText="zh"===n?"English":"简体中文";const i=e.replace(`/${t}/`,`/${n}/`);this.$router.push(i).catch((e=>{"NavigationDuplicated"!==e.name&&console.error("路由跳转失败:",e)})),localStorage.setItem("lang",n)}}}},12173:function(e,t){Object.defineProperty(t,"B",{value:!0}),t.A=void 0;t.A={name:"Tooltip",props:{maxWidth:{type:Number,default:120}},data(){return{showTooltip:!1,hideTimer:null,top:0,left:0}},methods:{show(e){clearTimeout(this.hideTimer);const t=e.getBoundingClientRect(),n=t.top+window.pageYOffset,i=t.left+window.pageXOffset,o=t.width;this.showTooltip=!0,this.$nextTick((()=>{const e=this.$refs.tooltip.offsetWidth,t=this.$refs.tooltip.offsetHeight;this.top=n-t,this.left=i-(e-o)/2}))},onShow(){clearTimeout(this.hideTimer),this.showTooltip=!0},onHide(){this.hideTimer=setTimeout((()=>{this.showTooltip=!1}),100)}}}},13904:function(e,t,n){n.r(t),n.d(t,{__esModule:function(){return o.B},default:function(){return l}});var i=n(24597),o=n(857),a=o.A,s=n(81656),r=(0,s.A)(a,i.XX,i.Yp,!1,null,"2329c878",null),l=r.exports},17623:function(e,t,n){n.r(t),n.d(t,{__esModule:function(){return o.B},default:function(){return l}});var i=n(84269),o=n(99047),a=o.A,s=n(81656),r=(0,s.A)(a,i.XX,i.Yp,!1,null,"c3955b78",null),l=r.exports},20074:function(e,t,n){var i=n(3999)["default"];Object.defineProperty(t,"B",{value:!0}),t.A=void 0;var o=i(n(91774));t.A={components:{comHeard:()=>Promise.resolve().then((()=>(0,o.default)(n(13904)))),appMain:()=>Promise.resolve().then((()=>(0,o.default)(n(31606)))),MoveHead:()=>Promise.resolve().then((()=>(0,o.default)(n(34038)))),BackAdminLayout:()=>Promise.resolve().then((()=>(0,o.default)(n(17069))))},data(){return{jurisdiction:{roleKey:""}}},mounted(){let e=localStorage.getItem("jurisdiction");try{e=e?JSON.parse(e):{roleKey:""}}catch(t){e={roleKey:""}}this.jurisdiction=e,window.addEventListener("setItem",(()=>{let e=localStorage.getItem("jurisdiction");try{e=e?JSON.parse(e):{roleKey:""}}catch(t){e={roleKey:""}}this.jurisdiction=e}))}}},24597:function(e,t,n){t.Yp=t.XX=void 0;t.XX=function(){var e=this,t=e._self._c;return t("div",{staticClass:"headerBox",class:{whiteBg:"/"!==e.key}},[t("div",{staticClass:"header"},[t("div",{staticClass:"logo",on:{click:function(t){return e.handelJump("/")}}},[t("img",{attrs:{src:n(65549),alt:"logo图片"}})]),t("div",{staticClass:"topMenu"},[t("div",{directives:[{name:"show",rawName:"v-show",value:e.isLogin&&(e.$route.path.includes("reportBlock")||"Home"==e.$route.name),expression:"isLogin &&( $route.path.includes(`reportBlock`) || $route.name == `Home` ) "}],staticClass:"nav"},[t("div",{staticClass:"nav-item",attrs:{id:"menu1"},on:{click:function(t){return t.stopPropagation(),e.toggleDropdown.apply(null,arguments)}}},[t("img",{staticClass:"itemImg",attrs:{src:e.activeItem.imgUrl,alt:e.activeItem.label}}),t("span",{staticStyle:{"text-transform":"capitalize"}},[e._v(" "+e._s(e.activeItem.label))]),t("i",{staticClass:"arrow"}),t("div",{staticClass:"dropdown"},e._l(e.currencyList,(function(n){return t("div",{key:n.value,staticClass:"option",class:{optionActive:n.value===e.activeItem.value},on:{click:function(t){return t.stopPropagation(),e.changeMenuName(t,n)}}},[t("img",{staticClass:"dropdownCoin",attrs:{src:n.imgUrl,alt:n.label}}),t("div",{staticClass:"dropdownText"},[e._v(e._s(n.label))])])})),0)])]),t("ul",{directives:[{name:"show",rawName:"v-show",value:e.isLogin,expression:"isLogin"}],staticClass:"menuBox afterLoggingIn"},[t("li",{staticClass:"home",class:{active:e.$route.path===`/${e.$i18n.locale}`||e.$route.path===`/${e.$i18n.locale}/`},on:{click:function(t){return e.handelJump("/")}}},[e._v(" "+e._s(e.$t("home.home"))+" "),t("div",{staticClass:"horizontalLine",class:{hidden:e.$route.path===`/${e.$i18n.locale}`||e.$route.path===`/${e.$i18n.locale}/`}},[t("span",{staticClass:"circular"}),t("span",{staticClass:"line"})])]),t("li",{directives:[{name:"show",rawName:"v-show",value:e.isLogin,expression:"isLogin"}],staticClass:"miningAccount"},[t("el-menu",{staticClass:"el-menu-demo",attrs:{"active-text-color":"#6E3EDB",mode:"horizontal"}},[t("el-submenu",{attrs:{index:"888888"}},[t("span",{staticClass:"miningAccountTitle",class:{active:e.$route.path.includes(`/${e.$i18n.locale}/miningAccount`)},staticStyle:{color:"#000"},attrs:{slot:"title"},slot:"title"},[e._v(e._s(e.$t("home.accountCenter")))]),e._l(e.miningAccountList,(function(n){return t("el-submenu",{key:n.coin,attrs:{index:n.coin}},[t("template",{slot:"title"},[t("img",{staticStyle:{width:"20px"},attrs:{src:n.img,alt:n.coin}}),e._v(" "+e._s(n.title))]),e._l(n.children,(function(i){return t("el-menu-item",{key:i.id,attrs:{index:i.id.toString()},nativeOn:{click:function(t){return e.handelJumpAccount(n,i,n.coin)}}},[e._v(" "+e._s(i.account))])}))],2)})),t("el-menu-item",{staticClass:"signOut",staticStyle:{"font-size":"0.9rem"},attrs:{index:"999999"},nativeOn:{click:function(t){return e.handelSignOut.apply(null,arguments)}}},[e._v("    "+e._s(e.$t("user.signOut")))])],2)],1),t("div",{staticClass:"horizontalLine",class:{hidden:"/miningAccount"==e.$route.path}},[t("span",{staticClass:"circular"}),t("span",{staticClass:"line"})])],1),t("li",{staticClass:"reportBlock",class:{active:e.$route.path.includes(`/${e.$i18n.locale}/reportBlock`)},on:{click:function(t){return e.handelJump("reportBlock")}}},[e._v(" "+e._s(e.$t("home.reportBlock"))+" "),t("div",{staticClass:"horizontalLine",class:{hidden:e.$route.path.includes(`/${e.$i18n.locale}/reportBlock`)}},[t("span",{staticClass:"circular"}),t("span",{staticClass:"line"})])]),t("li",{staticClass:"personalCenter",class:{active:e.$route.path.includes(`/${e.$i18n.locale}/personalCenter`)},on:{click:function(t){return e.handelJump("personalCenter")}}},[e._v(" "+e._s(e.$t("home.personalCenter"))+" "),t("div",{staticClass:"horizontalLine",class:{hidden:e.$route.path.includes(`/${e.$i18n.locale}/personalCenter`)||e.$route.path.includes(`/${e.$i18n.locale}/personalCenter/personalMining`)}},[t("span",{staticClass:"circular"}),t("span",{staticClass:"line"})])]),t("li",{staticClass:"personalCenter",class:{active:e.$route.path.includes(`/${e.$i18n.locale}/workOrderRecords`)},on:{click:function(t){return e.handelJump("workOrderRecords")}}},[e._v(" "+e._s(e.$t("personal.workOrderRecord"))+" "),t("div",{staticClass:"horizontalLine",class:{hidden:e.$route.path.includes("workOrderRecords")}},[t("span",{staticClass:"circular"}),t("span",{staticClass:"line"})])]),t("li",{staticClass:"personalCenter",class:{active:e.$route.path.includes(`/${e.$i18n.locale}/helpCenter`)},on:{click:function(t){return e.handelJump("helpCenter")}}},[e._v(" "+e._s(e.$t("home.helpCenter"))+" "),t("div",{staticClass:"horizontalLine",class:{hidden:e.$route.path.includes("helpCenter")}},[t("span",{staticClass:"circular"}),t("span",{staticClass:"line"})])]),t("li",{staticClass:"langBox"},[t("div",{staticClass:"LangLine"}),t("el-dropdown",[t("span",{staticClass:"el-dropdown-link",staticStyle:{"font-size":"0.9rem",color:"rgba(0, 0, 0, 1)"}},[t("img",{staticStyle:{width:"20px"},attrs:{src:n(77738),alt:"lang"}}),t("i",{staticClass:"el-icon-caret-bottom el-icon--right"})]),t("el-dropdown-menu",{attrs:{slot:"dropdown"},slot:"dropdown"},[t("el-dropdown-item",{staticStyle:{"font-size":"0.8rem",color:"rgba(0, 0, 0, 1)"},nativeOn:{click:function(t){return e.handelLang("zh")}}},[e._v("简体中文")]),t("el-dropdown-item",{staticStyle:{"font-size":"0.8rem",color:"rgba(0, 0, 0, 1)"},nativeOn:{click:function(t){return e.handelLang("en")}}},[e._v("English")])],1)],1)],1)]),t("ul",{directives:[{name:"show",rawName:"v-show",value:!e.isLogin,expression:"!isLogin"}],staticClass:"menuBox notLoggedIn"},[t("li",{staticClass:"login",on:{click:e.handelLogin}},[e._v(e._s(e.$t("user.login")))]),t("li",{staticClass:"register",on:{click:e.handelRegister}},[e._v(" "+e._s(e.$t("user.register"))+" ")]),t("li",{staticClass:"personalCenter",class:{active:e.$route.path.includes(`/${e.$i18n.locale}/helpCenter`)},staticStyle:{"margin-left":"20px"},on:{click:function(t){return e.handelJump("helpCenter")}}},[e._v(" "+e._s(e.$t("home.helpCenter"))+" "),t("div",{staticClass:"horizontalLine",class:{hidden:e.$route.path.includes("helpCenter")}},[t("span",{staticClass:"circular"}),t("span",{staticClass:"line"})])]),t("li",{staticClass:"langBox"},[t("div",{staticClass:"LangLine"}),t("el-dropdown",[t("span",{staticClass:"el-dropdown-link",staticStyle:{"font-size":"0.9rem",color:"rgba(0, 0, 0, 1)"}},[t("img",{staticStyle:{width:"20px"},attrs:{src:n(77738),alt:"lang"}}),t("i",{staticClass:"el-icon-caret-bottom el-icon--right"})]),t("el-dropdown-menu",{attrs:{slot:"dropdown"},slot:"dropdown"},[t("el-dropdown-item",{staticStyle:{"font-size":"0.8rem",color:"rgba(0, 0, 0, 1)"},nativeOn:{click:function(t){return e.handelLang("zh")}}},[e._v("简体中文")]),t("el-dropdown-item",{staticStyle:{"font-size":"0.8rem",color:"rgba(0, 0, 0, 1)"},nativeOn:{click:function(t){return e.handelLang("en")}}},[e._v("English")])],1)],1)],1)])])])])},t.Yp=[]},31606:function(e,t,n){n.r(t),n.d(t,{__esModule:function(){return o.B},default:function(){return l}});var i=n(67345),o=n(8643),a=o.A,s=n(81656),r=(0,s.A)(a,i.XX,i.Yp,!1,null,"2e905810",null),l=r.exports},33859:function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.workOrder_zh=t.workOrder_en=void 0;t.workOrder_zh={work:{mailbox:"用户邮箱",problem:"问题描述",enclosure:"附件",fileType:"支持上传文件类型",PleaseEnter:"请输入问题描述",fileCharacters:"将文件拖到此处,或",fileCharacters2:"点击上传",submit:"提 交",enterEmail:"请输入邮箱",pending:"进行中",completeWK:"已完成",allWK:"全部工单",WorkID:"工单号",submissionTime:"提交时间",status:"工单状态",operation:"操作",notSupported4:"最多上传3个文件!",notSupported:"不支持文件类型:",notSupported2:"文件大小不能超过",notSupported3:"同一文件名不能重复上传!",details:"详情",WKDetails:"工单详情",describe:"故障描述",record:"处理记录",continue:"继续提交",input:"请输入...",user1:"用户",time4:"时间",downloadFile:"下载附件",submit2:"继续提交",confirmInput:"请确认输入提交内容",submitted:"提交成功!",endWork:"关闭工单",WKend:"工单已关闭!",WorkOrderManagement:"工单管理",processed:"处理中",pendingProcessing:"待处理",ReplyWork:"回复工单",ReplyContent:"回复内容",SubmitWK:"提交工单",problemDescription:"请填写问题描述",close:"关闭",confirm:"确认",cancel:"取消",confirmClose:"确定关闭此工单吗?",replyContent2:"请输入回复内容!",Tips:"提示"}},t.workOrder_en={work:{mailbox:"Contact email",problem:"Problem Description",enclosure:"Upload attachments",fileType:"Support uploading file types",PleaseEnter:"Please enter a problem description",fileCharacters:"Drag files here, or",fileCharacters2:"Click to upload",submit:"Submit",enterEmail:"Please enter your email address",pending:"Toward",completeWK:"Done",allWK:"All Work Orders",WorkID:"work order number",submissionTime:"Submission time",status:"Status",operation:"Operation",notSupported:"Unsupported file type:",notSupported2:"The file size cannot exceed",notSupported3:"The same file name cannot be uploaded repeatedly!",notSupported4:"Upload up to 3 files!",details:"Particulars",WKDetails:"Work Order Details",describe:"fault description",record:"Processing records",continue:"Continued submission",input:"Please enter...",user1:"user",time4:"time",downloadFile:"Download file",submit2:"Continue submitting",confirmInput:"Please confirm the input of the submitted content",submitted:"Submitted successfully!",endWork:"close workOrder",WKend:"The work order has been closed!",WorkOrderManagement:"WorkOrder Management",processed:"processed",pendingProcessing:"pending",ReplyWork:"Restore",ReplyContent:"Reply content",SubmitWK:"Submit work order",problemDescription:"Please fill in the problem description",close:"Close",confirm:"Confirm",cancel:"Cancel",confirmClose:"Are you sure to close this ticket?",replyContent2:"Please enter the reply content!",Tips:"Tips"}}},42133:function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.backendSystem_zh=t.backendSystem_en=void 0;t.backendSystem_zh={backendSystem:{title:"后台管理系统",broadcast:"广播",userManagement:"用户管理",workOrder:"工单管理",workOrderRecord:"工单记录",userComputingPower:"用户算力",addBroadcast:"新增广播",editBroadcast:"修 改",publishedBroadcast:"已发布广播",createTime:"创建时间",content:"内容",createUser:"创建人",updateTime:"修改时间",updateUser:"修改人",operation:"操作",edit:"编辑",exceedingInput:"超出输入最大限制",deleteRemind:"确定删除该广播吗?",deleteSuccess:"删除成功",editSuccess:"修改成功",addSuccess:"发布成功",cancel:"取 消",publish:"发 布",logout:"退出",editContent:"修改广播内容",dialogTitle:"新增广播内容",pleaseInputContent:"请输入广播内容",pleaseInputContent2:"请输入内容",newlineInvalid:"广播内容输入换行符无效",onlineUserNum:"在线数量",offlineUserNum:"离线数量",userPower:"用户算力",chartTitle:"用户算力及在离线状态图",noData:"无数据",startDate:"开始日期",endDate:"结束日期",to:"至",userDetails:"用户详情",return:"返回",coin:"币种:",user:"挖矿账户:",amount:"交易金额:",createDate:"收益分配日期",maxHeight:"最大高度",shouldOutDate:"实际转账日期",address:"转账地址",historyAddress:"历史支付地址:",userManagementTitle:"注册用户管理",pleaseInput:"请输入",email:"邮箱:",email2:"邮箱",query:"查询",coin2:"币种",amount2:"最小起付金额",status2:"用户状态",minerUser2:"挖矿账号",balance2:"支付地址",active2:"是否自动提现",normal:"正常",delete:"删除",yes:"是",no:"否",Details:"详情",sendEmail:"发送邮件",sendSuccess:"发送成功",sendFail:"发送失败",sendRemind:"确定发送邮件吗?",recipient:"收件人",subject:"邮件主题",text:"邮件内容",send:"发送",emailRemind:"可输入多个邮箱,用逗号隔开",pleaseInputCorrectEmail:"请输入正确的邮箱地址",pleaseInputSubject:"请输入邮件主题",pleaseInputText:"请输入邮件内容",pleaseInputCorrectEmail2:"请输入正确的邮箱地址,多个邮箱用逗号分隔",existDuplicateEmail:"存在重复邮箱,请检查",pleaseInputQueryConditions:"请输入查询条件(挖矿账号、邮箱)",emailContent:"邮件内容",leftNavigation:"选择左侧导航栏查看页面",broadcastPause:"广播已暂停,移开鼠标继续滚动",broadcastResume:"鼠标悬停可暂停滚动",transactionAmount:"交易金额",walletBalance:"钱包余额",bthContent:"广播按钮内容(输入多个按钮,用逗号隔开):",bthContent2:"广播按钮内容",bthPath:"按钮对应跳转页面路径(根据按钮数量顺序输入):",bthPath2:"按钮对应跳转页面路径",broadcastContent:"广播内容:",bthPathStandard:"跳转路径以逗号分隔,最多5个(例:/reportBlock,/miningAccount,/personalMining,/workOrderRecords,/UserWorkDetails),输入换行符无效",pleaseInputButtonContentAndPath:"请输入广播按钮内容和跳转路径",max5:"跳转路径最多输入5个",invalidPath:"无效的跳转地址",invalidPathSuggestions:"建议使用",pathNumberNotMatch:"按钮数量和路径数量不匹配",documentManagement:"文档管理",addDocument:"新增文档",allocationAmount:"分配金额",transferAmount:"转账金额",updateSuccess:"修改成功",publishArticle:"发布文章",pleaseInputKeyword:"请输入搜索内容",pleaseInputType:"请选择文档类型",pleaseSelect:"请选择",miningTutorial:"挖矿教程",commonProblems:"常见问题",other:"其他",announcementCenter:"公告中心",search:"搜索",recommendContent:"推荐内容",recentActivities:"最近活动",viewMore:"查看更多活动公告",documentType:"文档类型",documentTitle:"文档标题",wangeditor:"wangeditor 富文本文档编辑器",insertAnchor:"插入锚点",previewDocument:"预览文档",saveDocument:"保存文档",publishDocument:"发布文档",reset:"重置",documentConfiguration:"文档配置",navigationTitle:"导航标题",pleaseInputDocumentTitle:"请输入文档标题",pleaseSelectDocumentType:"请选择文档类型",titleImageAddress:"标题图片地址",pleaseInputImageAddress:"请输入图片地址",articleAccessAddress:"文章访问地址",pleaseInputAccessAddress:"请输入访问地址",richTextEditor:"富文本编辑器",documentPreview:"文档预览",printPreview:"打印预览",close:"关闭",noContent:"暂无内容",modifyDocument:"修改文档",contentSaved:"内容已保存到本地,请尽快发布,关闭页面可能丢失内容",pleaseInputAnchorName:"请输入锚点名称(不能重复)",anchorNameErrorMessage:"锚点名只能包含字母、数字、下划线和中划线",anchorInserted:"锚点已插入",confirm:"确定",pleaseSelectHeader:"请先选中一个标题(h1~h6)",pleaseInputAnchorID:"请输入锚点ID(不能重复)",titleAnchor:"标题锚点",anchorIDErrorMessage:"ID只能包含字母、数字、下划线和中划线",anchorIDAdded:"锚点ID已添加",contentReset:"内容已重置",selectCurrency:"选择币种",pleaseSelectCurrency2:"添加挖矿教程,请选择币种",pleaseInputTitle:"请输入标题"}},t.backendSystem_en={backendSystem:{title:"Backend System",broadcast:"Broadcast",userManagement:"User Management",workOrder:"Work Order Management",workOrderRecord:"Work Order Record",userComputingPower:"User Computing Power",addBroadcast:"Add Broadcast",editBroadcast:"Modify",publishedBroadcast:"Published Broadcast",createTime:"Create Time",content:"Content",createUser:"Create User",updateTime:"Update Time",updateUser:"Update User",operation:"Operation",edit:"Edit",exceedingInput:"Exceeding Input Maximum Limit",deleteRemind:"Are you sure you want to delete this broadcast?",deleteSuccess:"Delete Success",editSuccess:"Edit Success",addSuccess:"Add Success",cancel:"Cancel",publish:"Publish",logout:"Logout",editContent:"Edit Broadcast Content",dialogTitle:"Add Broadcast Content",pleaseInputContent:"Please input broadcast content",newlineInvalid:"Invalid line break for broadcasting content input",onlineUserNum:"Online Number",offlineUserNum:"Offline Number",userPower:"User Power",chartTitle:"User Power and Online/Offline Status Chart",noData:"No Data",startDate:"Start Date",endDate:"End Date",to:"To",userDetails:"User Details",return:"Return",coin:"Coin:",user:"Mining account:",amount:"Amount:",createDate:"Create Date",maxHeight:"Max Height",shouldOutDate:"Should Out Date",address:"Address",historyAddress:"History Payment Address:",userManagementTitle:"User Management",pleaseInput:"Please Input",email:"Email:",email2:"Email",query:"Query",coin2:"Coin",amount2:"Minimum Payout Amount",status2:"User Status",minerUser2:"Miner User",balance2:"Payment Address",active2:"Automatic Withdrawal",normal:"Normal",delete:"Delete",yes:"Yes",no:"No",Details:"Details",sendEmail:"Send Email",sendSuccess:"Send Success",sendFail:"Send Fail",sendRemind:"Are you sure you want to send an email?",recipient:"Recipient",subject:"Email Subject",text:"Email Content",send:"Send",emailRemind:"Multiple emails can be entered, separated by commas",pleaseInputCorrectEmail:"Please enter a valid email address",pleaseInputSubject:"Please enter an email subject",pleaseInputText:"Please enter an email content",pleaseInputCorrectEmail2:"Please enter a valid email address, multiple emails separated by commas",existDuplicateEmail:"Duplicate email exists, please check",pleaseInputQueryConditions:"Please enter the query conditions (miner account, email)",emailContent:"Email Content",leftNavigation:"Select the left navigation bar to view the page",broadcastPause:"Broadcast has been paused, move the mouse to continue scrolling",broadcastResume:"Hover to pause scrolling",transactionAmount:"Transaction Amount",walletBalance:"Wallet Balance",bthContent:"Broadcast Button Content:",bthPath:"Button Corresponding Jump Page Path:",broadcastContent:"Broadcast Content:",bthPathStandard:"Jump paths separated by commas, up to 5 (example: /reportBlock,/miningAccount,/personalMining,/workOrderRecords,/UserWorkDetails), invalid for line breaks",pleaseInputButtonContentAndPath:"Please input broadcast button content and jump path",bthContent2:"Broadcast Button Content",bthPath2:"Button Corresponding Jump Page Path",max5:"The number of jump paths is up to 5",invalidPath:"Invalid jump address",invalidPathSuggestions:"Suggested paths",pathNumberNotMatch:"The number of buttons and paths does not match",documentManagement:"Document Management",addDocument:"Add Document",allocationAmount:"Allocation Amount",transferAmount:"Transfer Amount",updateSuccess:"Update Success",publishArticle:"Publish Article",pleaseInputKeyword:"Please input search content",pleaseInputType:"Please select document type",pleaseSelect:"Please select",miningTutorial:"Mining Tutorial",commonProblems:"Common Problems",other:"Other",announcementCenter:"Announcement Center",search:"Search",recommendContent:"Recommend Content",recentActivities:"Recent Activities",viewMore:"View More Activity Announcements",documentType:"Document Type",documentTitle:"Document Title",wangeditor:"wangeditor Rich Text Editor",insertAnchor:"Insert Anchor",previewDocument:"Preview Document",saveDocument:"Save Document",publishDocument:"Publish Document",reset:"Reset",documentConfiguration:"Document Configuration",navigationTitle:"Navigation Title",pleaseInputDocumentTitle:"Please input document title",pleaseSelectDocumentType:"Please select document type",titleImageAddress:"Title Image Address",pleaseInputImageAddress:"Please input image address",articleAccessAddress:"Article Access Address",pleaseInputAccessAddress:"Please input access address",richTextEditor:"Rich Text Editor",documentPreview:"Document Preview",printPreview:"Print Preview",close:"Close",noContent:"No Content",modifyDocument:"Modify Document",contentSaved:"Content has been saved to local, please publish it as soon as possible, the content may be lost if the page is closed",pleaseInputAnchorName:"Please input anchor name (cannot be repeated)",anchorNameErrorMessage:"Anchor name can only contain letters, numbers, underscores, and hyphens",anchorInserted:"Anchor inserted",confirm:"Confirm",pleaseSelectHeader:"Please select a title (h1~h6)",pleaseInputAnchorID:"Please input anchor ID (cannot be repeated)",titleAnchor:"Title Anchor",anchorIDErrorMessage:"ID can only contain letters, numbers, underscores, and hyphens",anchorIDAdded:"Anchor ID added",contentReset:"Content has been reset",selectCurrency:"Select Currency",pleaseSelectCurrency2:"Please select a currency when adding mining tutorials",pleaseInputContent2:"Please input content",pleaseInputTitle:"Please input title"}}},42450:function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.chooseUs_zh=t.chooseUs_en=void 0;t.chooseUs_zh={chooseUs:{why:"为什么选择我们?",title1:"高效挖矿 稳定收益",text1:"m2pool 矿池是全网费率最低的矿池之一,采用两种收益结算模式(PPLNS+PROPDIF)。自有开发运维团队在技术方面:我们自有软硬件开发运维能力。在团队方面:我们软硬件团队不断迭代维护,服务稳定性极高。高挖矿成功的概率和效率,使得挖矿收益更具稳定性和可预测性。",title2:"低风险成本",text2:"公平的分配机制,根据矿工的算力贡献来分配收益,确保每个参与者都能得到应有的回报。此外,m2pool 矿池降低了个体矿工的风险,即使个人算力有限,也能通过参与矿池获得收益‌。",title3:"技术支持 为您保驾护航",text3:"当您在使用m2pool 矿池网站过程中遇到任何问题时,可在网站提交工单。我们将尽快处理并回复,为您提供高效的技术支持服务。"}},t.chooseUs_en={chooseUs:{why:"Why choose us?",title1:"Efficient mining and stable returns",text1:"The m2pool mining pool is one of the lowest rate mining pools in the entire network, using two revenue settlement models (PPLNS+ROPDIF). We have our own development and operation team in terms of technology: we have our own software and hardware development and operation capabilities. In terms of team: Our software and hardware team constantly iterates and maintains, with extremely high service stability. The high probability and efficiency of successful mining make mining profits more stable and predictable.",title2:"Low risk cost",text2:"A fair distribution mechanism that distributes profits based on the contribution of miners' computing power, ensuring that each participant receives the appropriate return. In addition, the m2pool mining pool reduces the risk for individual miners, and even if their computing power is limited, they can still earn profits by participating in the mining pool.",title3:"Technical support to safeguard you",text3:"When you encounter any problems while using the m2pool mining pool website, you can submit a work order on the website. We will handle and reply as soon as possible to provide you with efficient technical support services."}}},43110:function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.AccessMiningPool_zh=t.AccessMiningPool_en=void 0;t.AccessMiningPool_zh={course:{NEXAcourse:"Nexa 挖矿教程",selectServer:"选择挖矿地址",serverLocation:"服务器地点",difficulty:"难度",TCP:"TCP 端口",SSL:"SSL 端口",rateRelated:"币种矿池费率相关",currency:"币种",miningAddress:"挖矿地址",miningFeeRate:"挖矿费率",settlementMode:"收益结算模式",minimumPaymentAmount:"起付额",Step1:"步骤1 - 注册m2pool账号",accountContent1:"1. m2pool 矿池挖矿方式为用户名挖矿,需注册m2pool账号",accountContent2:"2. 注册账号成功后,请前往个人中心-挖矿账户页面,添加币种挖矿账户,此处创建的挖矿账户即为您需要在矿机上配置的用户名。",Step2:"步骤2 - 获得并绑定钱包地址",bindWalletText1:"1. 获取钱包,您可以通过以下方式获得币种的的钱包地址,用于接收挖矿收益。",bindWalletText2:"(1) 官方全节点钱包:",bindWalletText3:"该类型钱包需要实时同步币种区块链节点。",bindWalletText4:"(2) 交易所钱包:前往支持该币种现货交易的交易所,",bindWalletText5:"等,找到充值即可获得钱包。",bindWalletText6:"(3) 硬件钱包:",bindWalletText7:"取决于您的硬件钱包是否支持该币种区块链,该类型钱包安全性高,但不是所有硬件钱包都支持,请您仔细了解您的硬件钱包。",bindWalletText8:"2. 获得钱包地址后,在个人中心-挖矿账户页面,点击右上方添加按钮,在钱包地址一栏填入您的钱包即可。",Step3:"步骤4 - 坐等挖矿收益",miningIncome1:"1. 在您添加完挖矿钱包后,即可在您的nexa矿机上配置相关参数,开启nexa挖矿。由于nexa区块需要5000个高度才能成熟,因此您的挖矿收益,需要等待5000个高度才可提现(大约为7天时间)。",miningIncome2:"2. 您在m2pool上的所有挖矿收益均为自动结算(不同币种有不同的收益结算方式,请仔细查看您选择币种的收益结算方式)。",Step4:"步骤3 - 矿工接入参数示例",parameter:"1. Pool/Url: 见上方",parameter5:"挖矿地址",parameter6:"表格",parameter2:"2. Wallet/User/Worker: 挖矿账户名.矿工号(英文句号.分隔挖矿账户名和矿工号),(用户名为您在 ",parameter3:"3. Password:任意输入,不同的挖矿软件或矿机可能会有不同的配置方式,但只需保证上述3个参数配置正确,即可接入m2pool矿池,如果您需要帮助,请通过",parameter4:"联系我们。",parameter7:"步骤1的第2步",parameter8:"生成的挖矿账号(非m2pool的登陆邮箱号),矿工号为您自行定义(长度不超过36个字符),如果您有多个矿工,请勿设置相同的矿工号,设置相同矿工号会将多个矿工的算力合并,虽然不会影响您的收益,但这会导致无法区分不同的矿工,不便于您对矿工的管理。)",notOpen:"矿池暂未开放,请耐心等待....",RXDcourse:"Rxd 挖矿教程",GRScourse:"Grs 挖矿教程",MONAcourse:"Mona 挖矿教程",dgbsCourse:"Dgb(skein) 挖矿教程",dgbqCourse:"Dgb(qubit) 挖矿教程",dgboCourse:"Dgb(odocrypt) 挖矿教程",ENXcourse:"Entropyx(Enx) 挖矿教程",alphCourse:"Alephium(alph) 挖矿教程",rxdIncome1:"1. 在您添加完挖矿钱包后,即可在您的Rxd矿机上配置相关参数,开启Rxd挖矿。",Adaptation:"适配性",amount:"最小起付额",ASIC:"ASIC矿机型号",GPU:"GPU挖矿软件",careful:"注意:如果您的GPU挖矿软件或ASIC矿机与m2pool无法适配,请通过",mail:"邮件",careful2:"与我们取得联系",dragonBall:"龍珠A21",dragonBallA11:"龍珠A11",RX0:"冰河RXD RX0",dragonBallA11Move:"龍珠A11、冰河RXD RX0",notOpenCurrency:"该币种暂未开放,请耐心等待....",Wallet1:"(该数据来源于",Wallet2:"本网站不能完全保证该数据的准确性,请您仔细甄别)",general4_1:"1.在您添加完挖矿钱包后,即可在您的矿机上配置相关参数,开启挖矿。",allocationExplanation:"矿池分配及转账规则",conditionNexa:"5000高度",conditionRxd:"100高度",conditionGrs:"140高度",conditionDgbs:"40高度",conditionDgbq:"40高度",conditionDgbo:"40高度",conditionMona:"100高度",conditionAlph:"500分钟",conditionEnx:"",intervalNexa:"120秒",intervalRxd:"300秒",intervalGrs:"60秒",intervalDgbs:"15秒",intervalDgbq:"15秒",intervalDgbo:"15秒",intervalMona:"90秒",intervalAlph:"16秒",intervalEnx:"1秒",estimatedTimeNexa:"≈ 7天",estimatedTimeRxd:"≈ 8.3小时",estimatedTimeGrs:"≈ 2.3小时",estimatedTimeDgbs:"≈ 10分钟",estimatedTimeDgbq:"≈ 10分钟",estimatedTimeDgbo:"≈ 10分钟",estimatedTimeMona:"≈ 2.5小时",estimatedTimeAlph:"500分钟",estimatedTimeEnx:"",describeNexa:"例如1-1日获得了1000000 NEXA奖励,则该笔奖励会在大约7天之后(1-8日)支付,具体取决于实际区块高度",describeAlph:"alph是固定成熟时间,而非区块高度",describeGrs:"",describeDgbs:"",describeDgbq:"",describeDgbo:"",describeMona:"",describeRxd:"",describeEnx:"",condition:"成熟条件",interval:"出块间隔",estimatedTime:"预估时间",describe:"说明",timeLimited:"限时"}},t.AccessMiningPool_en={course:{NEXAcourse:"Nexa Mining Tutorial",selectServer:"Select mining address",serverLocation:"Server location",difficulty:"Difficulty",TCP:"TCP Port",SSL:"SSL Port",rateRelated:"Currency mining pool rate related",currency:"Currency",miningAddress:"Mining address",miningFeeRate:"Mining fee rate",settlementMode:"Revenue settlement mode",minimumPaymentAmount:"Minimum payment amount",notOpen:"Mining pool is not open yet, please be patient....",RXDcourse:"Rxd Mining Tutorial",GRScourse:"Grs Mining Tutorial",dgbsCourse:"Dgb(skein) Mining Tutorial",dgbqCourse:"Dgb(qubit) Mining Tutorial",dgboCourse:"Dgb(odocrypt) Mining Tutorial",Step1:"Step 1 - Register for an m2pool account",accountContent1:"1. m2pool mining pool mining method for the user name mining, need to register m2pool account",accountContent2:"2. After successfully registering an account, please go to Personal Center - Mining Accounts page to add a cryptocurrency mining account, the mining account created here is the user name you need to configure on the mining machine.",Step2:"Step 2 - Obtain and bind the wallet address",bindWalletText1:"1. Getting a wallet, you can get the wallet address of the coin for receiving mining proceeds in the following ways.",bindWalletText2:"(1) Official full node wallet:",bindWalletText3:"This type of wallet requires real-time synchronization of coin blockchain nodes.Type wallets need to synchronize coin blockchain nodes in real time.",bindWalletText4:"(2) Exchange Wallet: Go to an exchange that supports spot trading of this coin.",bindWalletText5:"etc., find the recharge to get your wallet.",bindWalletText6:"(3) Hardware wallet.",bindWalletText7:"Depends on whether your hardware wallet supports this coin blockchain or not, this type of wallet is highly secure, but not all hardware wallets support it, please know your hardware wallet carefully.",bindWalletText8:"2. Once you have obtained your wallet address, click the Add button at the top right of the Personal Center - Mining Account page, and fill in your wallet address in the Wallet Address column.",Step3:"Step 4 - Sit Back and Wait for the Mining Profits",miningIncome1:"1. After you have added your mining wallet, you can configure the relevant parameters on your nexa miner and start nexa mining. Since nexa blocks need 5000 heights to mature, you need to wait for 5000 heights before you can withdraw your mining earnings (about 7 days).",miningIncome2:"2. All your mining earnings on m2pool are automatically settled (different coins have different earnings settlement methods, please check the earnings settlement methods of the coins you choose carefully).",rxdIncome1:"1. After you have added your mining wallet, you can configure the relevant parameters on your Rxd mining machine to enable Rxd mining.",Adaptation:"Adaptability",amount:"Minimum Starting Amount",ASIC:"ASIC Miner Model",GPU:"GPU Mining Software",careful:"Note: If your GPU mining software or ASIC mining machine is not compatible with the m2pool, please check your GPU mining software through the",mail:" mail ",careful2:"Get in touch with us",dragonBall:"DragonBall Miner A21",dragonBallA11:"DragonBall Miner A11",Step4:"Step 3 - Example Miner Access Parameters",parameter:"1. Pool/Url: see above",parameter2:"2. Wallet/User/Worker: Mining account name. Miner number (period. Separate mining account name and miner number), (username is the name of the miner you are working with in the",parameter3:"3. Password: any input, different mining software or mining machine may have different configuration, but only need to ensure that the above three parameters are configured correctly, you can access the m2pool mining pool, if you need help, please through the",parameter4:"Contact Us",parameter5:" Mining address ",parameter6:" table ",parameter7:"Step 2 of Step 1",parameter8:"Generated mining account (not m2pool login email number), miner number for your own definition (length not more than 36 characters), if you have more than one miner, please do not set up the same miner number, set up the same miner number will be more than one miner arithmetic will be merged, although it will not affect your revenue, but this will lead to the inability to distinguish between the different miners, it is not easy for you to the management of the miners).",RX0:"ICERIVER RXD RX0",dragonBallA11Move:"DragonBall Miner A11、ICERIVER RXD RX0",notOpenCurrency:"This currency is currently not open, please be patient and wait....",MONAcourse:"Mona Mining Tutorial",Wallet1:"(This data is sourced from ",Wallet2:"This website cannot fully guarantee the accuracy of this data, please carefully verify)",general4_1:"1.After adding the mining wallet, you can configure the relevant parameters on your mining machine to enable mining.",conditionNexa:"5000 height",conditionRxd:"100 height",conditionGrs:"140 height",conditionDgbs:"40 height",conditionDgbq:"40 height",conditionDgbo:"40 height",conditionMona:"100 height",conditionAlph:"500 minutes",conditionEnx:"",intervalNexa:"120 seconds",intervalRxd:"300 seconds",intervalGrs:"60 seconds",intervalDgbs:"15 seconds",intervalDgbq:"15 seconds",intervalDgbo:"15 seconds",intervalMona:"90 seconds",intervalAlph:"16 seconds",intervalEnx:"1 second",estimatedTimeNexa:"≈ 7 days",estimatedTimeRxd:"≈ 8.3 hours",estimatedTimeGrs:"≈ 2.3 hours",estimatedTimeDgbs:"≈ 10 minutes",estimatedTimeDgbq:"≈ 10 minutes",estimatedTimeDgbo:"≈ 10 minutes",estimatedTimeMona:"≈ 25 hours",estimatedTimeAlph:" 500 minutes",estimatedTimeEnx:"",describeNexa:"For example, if a 1,000,000 NEXA reward was earned on 1-1, that reward will be paid out approximately 7 days later (1-8), depending on actual block heights",describeAlph:"alph is a fixed maturity time, not a block height",describeGrs:"",describeDgbs:"",describeDgbq:"",describeDgbo:"",describeMona:"",describeRxd:"",describeEnx:"",allocationExplanation:"Mining Pool Allocation and Transfer Rules",condition:"Maturity conditions",interval:"Chunking interval",estimatedTime:"Estimated time",describe:"Clarification",ENXcourse:"Entropyx(Enx) Mining Tutorial",timeLimited:"Time limited",alphCourse:"Alephium(alph) Mining Tutorial"}}},45438:function(e,t,n){n.r(t),n.d(t,{__esModule:function(){return o.B},default:function(){return l}});var i=n(97390),o=n(12173),a=o.A,s=n(81656),r=(0,s.A)(a,i.XX,i.Yp,!1,null,"763fcf11",null),l=r.exports},46373:function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.alerts_zh=t.alerts_en=void 0;t.alerts_zh={alerts:{Alarm:"离线警报设置",beCareful:"矿机离线时,会通过以下对应邮箱通知您。",beCareful1:" 每个账号最多添加三个邮箱。",add:"添加邮箱",addAlarmEmail:"添加告警邮箱",modifyRemarks:"修改备注",deleteRemind:"确认删除吗?",addedSuccessfully:"添加成功",modifiedSuccessfully:"修改成功",deleteSuccessfully:"删除成功",modificationReminder:"修改备注内容不能为空",acquisitionFailed:"信息获取失败,请重新进入该页面",more:"更多",alarmNotification:"离线警报",alarmMove:"警报",turnOffReminder:"暂未开放该功能,请耐心等待.."}},t.alerts_en={alerts:{Alarm:"Offline alarm settings",beCareful:"When the mining machine is offline, you will be notified through the corresponding email address below.",beCareful1:"Each account can add up to three email addresses.",add:"Add Email",addAlarmEmail:"Add alarm email",modifyRemarks:"Modify remarks",deleteRemind:"Are you sure to delete?",addedSuccessfully:"Added successfully",modifiedSuccessfully:"Modified successfully",deleteSuccessfully:"Delete successfully",modificationReminder:"The modified remarks cannot be empty",acquisitionFailed:"Information retrieval failed, please re-enter the page",more:"More",alarmNotification:"Offline Alert",alarmMove:"Alarm",turnOffReminder:"This feature has not been opened yet, please be patient and wait.."}}},49967:function(e,t,n){Object.defineProperty(t,"B",{value:!0}),t.A=void 0,n(18111),n(7588);var i=n(1652);t.A={name:"SplitScreenEditor",props:{value:{type:String,default:""},options:{type:Object,default:()=>({})},height:{type:[String,Number],default:500}},data(){return{localContent:"",editorMode:"split",isFullscreen:!1,wordCount:0,editorInstance:null,editorId:`editor_${Date.now()}_${Math.random().toString(36).substr(2,9)}`,showUsageGuide:!1,demoEditorInstance:null,demoEditorId:`demo_editor_${Date.now()}_${Math.random().toString(36).substr(2,9)}`,publishLoading:!1,documentInfo:{title:"",subTitle:"",type:0,lang:"zh"},defaultOptions:{height:this.height,menubar:!1,plugins:["advlist","autolink","lists","link","image","charmap","preview","anchor","searchreplace","visualblocks","code","fullscreen","insertdatetime","media","table","help","wordcount"],toolbar:["undo redo | formatselect | bold italic underline strikethrough","forecolor backcolor | alignleft aligncenter alignright alignjustify","bullist numlist outdent indent | removeformat | help"].join(" | "),content_style:"\n body { \n font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; \n font-size: 14px; \n line-height: 1.6;\n color: #2c3e50;\n }\n p { margin: 10px 0; }\n ul, ol { margin: 10px 0; padding-left: 20px; }\n li { margin: 4px 0; }\n ",language:"zh_CN",branding:!1,resize:!1,statusbar:!1,placeholder:"开始编写您的内容...",setup:e=>{this.editorInstance=e,e.on("input",(()=>{this.handleEditorChange()})),e.on("change",(()=>{this.handleEditorChange()})),e.ui.registry.addButton("bulletpoint",{text:"• 圆点",tooltip:"插入黑色圆点",onAction:()=>{this.insertBulletPoint()}})}}}},computed:{mergedOptions(){return{...this.defaultOptions,...this.options,height:this.height,toolbar:this.defaultOptions.toolbar+" | bulletpoint"}},previewContent(){if(!this.localContent)return'

预览内容将在这里显示...

';let e=this.localContent;return e=e.replace(/
    /g,'
      '),e=e.replace(/
        /g,'
          '),e=e.replace(/
        1. /g,'
        2. '),e}},watch:{value:{handler(e){e!==this.localContent&&(this.localContent=e,this.editorInstance&&this.editorInstance.setContent(e))},immediate:!0},localContent(){this.updateWordCount()}},mounted(){this.initEditor(),this.updateWordCount(),document.addEventListener("keydown",this.handleKeydown),this.showUsageGuide&&this.$nextTick((()=>{setTimeout((()=>{console.log("页面加载完成,初始化演示编辑器"),this.initDemoEditor()}),1e3)}))},beforeDestroy(){this.destroyEditor(),this.destroyDemoEditor(),document.removeEventListener("keydown",this.handleKeydown)},methods:{async initEditor(){if("undefined"!==typeof window.tinymce)try{await window.tinymce.init({selector:`#${this.editorId}`,...this.mergedOptions}),console.log("编辑器初始化成功")}catch(e){console.error("编辑器初始化失败:",e)}else console.error("TinyMCE未加载,请确保已正确引入TinyMCE")},destroyEditor(){this.editorInstance&&(this.editorInstance.destroy(),this.editorInstance=null)},handleEditorChange(){if(this.editorInstance){const e=this.editorInstance.getContent();this.localContent=e,this.$emit("input",e),this.$emit("change",e)}},handleContentChange(e){const t=e.target.value;this.localContent=t,this.$emit("input",t),this.$emit("change",t)},insertBulletPoint(){if(this.editorInstance){const e=this.editorInstance.selection,t=e.getContent({format:"text"});if(t){const e=`• ${t}`;this.editorInstance.execCommand("mceReplaceContent",!1,e)}else this.editorInstance.execCommand("mceInsertContent",!1,"• ");this.editorInstance.focus()}else{const e=document.getElementById(this.editorId);if(e){const t=e.selectionStart,n=e.selectionEnd,i=e.value,o=i.substring(0,t)+"• "+i.substring(n);this.localContent=o,this.$emit("input",o),this.$nextTick((()=>{e.focus(),e.setSelectionRange(t+2,t+2)}))}}},toggleFullscreen(){this.isFullscreen=!this.isFullscreen,this.isFullscreen?document.body.style.overflow="hidden":document.body.style.overflow=""},handleKeydown(e){"Escape"===e.key&&this.isFullscreen&&this.toggleFullscreen()},updateWordCount(){const e=this.localContent.replace(/<[^>]*>/g,"");this.wordCount=e.length},copyHtml(){if(navigator.clipboard)navigator.clipboard.writeText(this.localContent).then((()=>{this.$message.success("HTML内容已复制到剪贴板")})).catch((e=>{console.error("复制失败:",e),this.$message.error("复制失败")}));else{const t=document.createElement("textarea");t.value=this.localContent,document.body.appendChild(t),t.select();try{document.execCommand("copy"),this.$message.success("HTML内容已复制到剪贴板")}catch(e){console.error("复制失败:",e),this.$message.error("复制失败")}document.body.removeChild(t)}},getContent(){return this.localContent},setContent(e){this.localContent=e,this.editorInstance&&this.editorInstance.setContent(e)},clear(){this.setContent("")},toggleUsageGuide(){this.showUsageGuide=!this.showUsageGuide,this.showUsageGuide?(console.log("使用指南已打开,准备初始化演示编辑器"),this.$nextTick((()=>{setTimeout((()=>{this.initDemoEditor()}),500)}))):(console.log("使用指南已关闭,销毁演示编辑器"),this.destroyDemoEditor())},handlePublish(){this.localContent.trim()?this.showPublishDialog():this.$message.warning("请先输入内容再发布")},showPublishDialog(){this.$prompt("请输入文档标题:","发布文档",{confirmButtonText:"发布",cancelButtonText:"取消",inputPlaceholder:"请输入文档标题",inputValue:this.documentInfo.title||`编辑器文档_${(new Date).toLocaleDateString()}`,inputValidator:e=>e&&e.trim()?!(e.trim().length>100)||"文档标题不能超过100个字符":"文档标题不能为空"}).then((({value:e})=>{this.documentInfo.title=e.trim(),this.showDocumentTypeDialog()})).catch((()=>{console.log("用户取消发布")}))},showDocumentTypeDialog(){const e=[{label:"其他",value:0},{label:"服务条款",value:1},{label:"API文档",value:2},{label:"挖矿教程",value:3}],t=e.map((e=>``)).join("");this.$msgbox({title:"选择文档类型",message:`\n
          \n \n \n
          \n
          \n 文档信息:
          \n 标题:${this.documentInfo.title}
          \n 字数:${this.wordCount} 字\n
          \n `,dangerouslyUseHTMLString:!0,confirmButtonText:"确认发布",cancelButtonText:"取消",beforeClose:(e,t,n)=>{if("confirm"===e){const e=document.getElementById("documentTypeSelect");e&&(this.documentInfo.type=parseInt(e.value))}n()}}).then((()=>{this.confirmPublish()})).catch((()=>{console.log("用户取消选择文档类型")}))},async confirmPublish(){this.publishLoading=!0;try{let e=this.localContent;this.editorInstance?(e=this.editorInstance.getContent(),console.log("发布前 - 从编辑器获取的最新内容:",e),console.log("发布前 - 内容长度:",e.length),console.log("发布前 - localContent:",this.localContent),this.localContent=e):console.warn("编辑器实例不存在,使用本地内容:",e);const t=e.replace(/<[^>]*>/g,"").trim();if(!t)return this.$message.warning("编辑器内容为空,请先输入内容"),void(this.publishLoading=!1);const n={id:null,title:this.documentInfo.title,subTitle:this.documentInfo.subTitle||"",content:e,lang:this.$i18n?.locale||this.documentInfo.lang,type:this.documentInfo.type};console.log("=== 发布文档数据调试信息 ==="),console.log("完整参数:",n),console.log("当前语言:",this.$i18n?.locale),console.log("内容预览 (前200字符):",e.substring(0,200)),console.log("内容是否包含h2标签:",e.includes("

          ")),console.log("内容是否包含h3标签:",e.includes("

          ")),console.log("===========================");const o=await(0,i.addDocument)(n);if(!o||200!==o.code)throw new Error(o?.message||"发布失败");this.$message.success("文档发布成功!"),this.$emit("publish",{success:!0,documentId:o.data?.id,title:this.documentInfo.title,content:e,wordCount:t.length,timestamp:(new Date).toISOString(),response:o.data}),this.$notify({title:"发布成功",message:`文档 "${this.documentInfo.title}" 已成功发布`,type:"success",duration:4e3}),this.clearAutoSave()}catch(e){console.error("文档发布失败:",e),this.$message.error(`发布失败:${e.message||"网络错误"}`),this.$emit("publish",{success:!1,error:e.message||"发布失败",title:this.documentInfo.title,content:currentContent||this.localContent})}finally{this.publishLoading=!1}},async initDemoEditor(){if("undefined"===typeof window.tinymce)return void console.error("TinyMCE未加载,无法初始化演示编辑器");let e=0;const t=10,n=()=>{const i=document.getElementById(this.demoEditorId);i&&this.showUsageGuide?this.doInitDemoEditor():e{this.demoEditorInstance=e,console.log("演示编辑器实例已创建"),setTimeout((()=>{e.setContent('\n

          🎯 演示编辑器

          \n

          在这里直接尝试各种功能:

          \n
            \n
          • 选中文字后点击 粗体斜体下划线
          • \n
          • 使用颜色按钮改变文字颜色
          • \n
          • 点击"• 圆点"按钮插入项目符号
          • \n
          • 创建有序或无序列表
          • \n
          \n

          • ALEO矿工必须质押一定数量的ALEO代币

          \n

          💡 你可以直接编辑这些内容来测试功能!

          \n ')}),200)},setup:e=>{e.ui.registry.addButton("bulletpoint",{text:"• 圆点",tooltip:"插入黑色圆点",onAction:()=>{e.insertContent("• "),e.focus()}})}};await window.tinymce.init({selector:`#${this.demoEditorId}`,...e}),console.log("演示编辑器初始化成功")}catch(t){console.error("演示编辑器初始化失败:",t)}},destroyDemoEditor(){if(this.demoEditorInstance)try{this.demoEditorInstance.destroy(),this.demoEditorInstance=null,console.log("演示编辑器已销毁")}catch(e){console.error("销毁演示编辑器时出错:",e)}},clearAutoSave(){try{const e=Object.keys(localStorage);e.forEach((e=>{e.startsWith("splitscreen_editor_draft_")&&localStorage.removeItem(e)})),console.log("已清空自动保存的草稿")}catch(e){console.warn("清空自动保存草稿时出错:",e)}},checkDemoEditorStatus(){console.log("=== 演示编辑器状态检查 ==="),console.log("使用指南显示状态:",this.showUsageGuide),console.log("演示编辑器ID:",this.demoEditorId),console.log("DOM元素存在:",!!document.getElementById(this.demoEditorId)),console.log("演示编辑器实例:",this.demoEditorInstance),console.log("TinyMCE可用:","undefined"!==typeof window.tinymce);const e=document.getElementById(this.demoEditorId);e&&console.log("DOM元素详情:",{id:e.id,className:e.className,offsetHeight:e.offsetHeight,offsetWidth:e.offsetWidth})}}}},51406:function(e,t,n){var i=n(3999)["default"],o=i(n(66848)),a=i(n(92038)),s=i(n(39325)),r=i(n(55129)),l=i(n(89143));n(91475),n(79412);var c=i(n(58044)),d=i(n(86425));n(40665);var u=n(82908),m=i(n(18614)),p=i(n(54211)),h=i(n(98986));n(9526);var g=i(n(37465));o.default.prototype.$bus=new o.default,o.default.use(m.default),o.default.prototype.$addStorageEvent=u.$addStorageEvent,o.default.config.productionTip=!1,o.default.use(l.default,{i18n:(e,t)=>c.default.t(e,t)}),o.default.prototype.$axios=d.default,console.log=()=>{},o.default.mixin(p.default),o.default.mixin(h.default),o.default.prototype.$baseApi="https://test.m2pool.com/";const f=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,y=f<1280;o.default.prototype.$isMobile=y,s.default.beforeEach(((e,t,n)=>{const i=e.params.lang||localStorage.getItem("lang")||"en";document.documentElement.lang=i,c.default.locale!==i&&(c.default.locale=i);const o=localStorage.getItem("token");o&&"null"!==o||localStorage.setItem("cs_disconnect_all",Date.now().toString()),n()})),setInterval((()=>{g.default.cleanup()}),6e4),window.vm=new o.default({router:s.default,store:r.default,i18n:c.default,render:e=>e(a.default),created(){this.$watch((()=>this.$i18n.locale),(e=>{this.updateMetaAndTitle()})),this.updateMetaAndTitle()},mounted(){document.dispatchEvent(new Event("render-event"))},methods:{updateMetaAndTitle(){document.title=this.$i18n.t("home.appTitle");const e=document.querySelector('meta[name="description"]');e&&(e.content=this.$i18n.t("home.metaDescription"))}}}).$mount("#app"),document.addEventListener("DOMContentLoaded",(()=>{window.vm.updateMetaAndTitle()}))},53724:function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.announcements_zh=t.announcements_en=void 0;t.announcements_zh={title:"公告中心",latestTitle:"最新公告",searchPlaceholder:"搜索",homeCenter:"首页中心",viewAll:"查看所有",articles:"篇文章",noData:"暂无公告",loadError:"加载公告失败",importantNotice:"重要通知",systemAnnouncement:"系统公告",marketDynamic:"市场动态",serviceNotice:"服务通知",faultDescription:"故障说明",offlineNotice:"下线通知",today:"今天",yesterday:"昨天",daysAgo:"天前",back:"返回",refresh:"刷新",search:"搜索",reset:"重置",total:"共",page:"页",items:"条",goToPage:"跳至",networkError:"网络连接失败,请检查网络设置",serverError:"服务器异常,请稍后重试",dataError:"数据加载失败",searchTip:"请输入关键词进行搜索",noSearchResult:"未找到相关公告",loadingTip:"正在加载...",published:"已发布",draft:"草稿",archived:"已归档",detail:"详情",content:"内容",publishTime:"发布时间",updateTime:"更新时间",author:"作者",category:"分类",tags:"标签",readCount:"阅读量",viewDetail:"查看详情",share:"分享",favorite:"收藏",print:"打印",download:"下载",filter:"筛选",sort:"排序",sortByTime:"按时间排序",sortByPopularity:"按热度排序",filterByType:"按类型筛选",filterByDate:"按日期筛选",allTypes:"全部类型",allDates:"全部日期",advancedSearch:"高级搜索",searchByTitle:"按标题搜索",searchByContent:"按内容搜索",searchByAuthor:"按作者搜索",dateRange:"日期范围",startDate:"开始日期",endDate:"结束日期"},t.announcements_en={title:"Announcement Center",latestTitle:"Latest Announcements",searchPlaceholder:"Search",homeCenter:"Home Center",viewAll:"View All",articles:"Articles",noData:"No announcements",loadError:"Failed to load announcements",importantNotice:"Important Notice",systemAnnouncement:"System Announcement",marketDynamic:"Market Dynamic",serviceNotice:"Service Notice",faultDescription:"Fault Description",offlineNotice:"Offline Notice",today:"Today",yesterday:"Yesterday",daysAgo:"days ago",back:"Back",refresh:"Refresh",search:"Search",reset:"Reset",total:"Total",page:"Page",items:"Items",goToPage:"Go to",networkError:"Network connection failed, please check network settings",serverError:"Server error, please try again later",dataError:"Data loading failed",searchTip:"Please enter keywords to search",noSearchResult:"No related announcements found",loadingTip:"Loading...",published:"Published",draft:"Draft",archived:"Archived",detail:"Detail",content:"Content",publishTime:"Publish Time",updateTime:"Update Time",author:"Author",category:"Category",tags:"Tags",readCount:"Read Count",viewDetail:"View Detail",share:"Share",favorite:"Favorite",print:"Print",download:"Download",filter:"Filter",sort:"Sort",sortByTime:"Sort by Time",sortByPopularity:"Sort by Popularity",filterByType:"Filter by Type",filterByDate:"Filter by Date",allTypes:"All Types",allDates:"All Dates",advancedSearch:"Advanced Search",searchByTitle:"Search by Title",searchByContent:"Search by Content",searchByAuthor:"Search by Author",dateRange:"Date Range",startDate:"Start Date",endDate:"End Date"}},57637:function(e,t,n){var i=n(3999)["default"];Object.defineProperty(t,"__esModule",{value:!0}),t.seo_zh=t.seo_en=void 0;i(n(94368));t.seo_zh={seo:{Home:"M2Pool 矿池,2024 全新升级!为您带来更稳定的网络服务,高效提升单位收益。透明的分配机制,可靠的技术服务,让您挖矿无忧。支持 nexa、grs、mona、dgb、rxd 等众多热门币种挖矿,开启财富增长新通道。",miningAccount:"M2Pool 矿池的挖矿账户页面,为用户提供详尽的账户信息展示。在这里,您可以直观地查看该账户的收益情况,通过算力走势图清晰了解算力变化趋势,掌握矿工情况,同时还能深入查看收益及支付的详细信息,助力您更好地管理挖矿业务。",readOnlyDisplay:"M2Pool 矿池只读页面展示页,通过分享的链接地址及特定权限,清晰呈现矿池的收益状况、支付详情以及矿工信息等关键数据,让您随时了解矿池动态,把握挖矿收益走向。",reportBlock:"M2Pool 矿池报块页面,精准展示各个币种的幸运值、区块高度、出块时间、区块哈希值以及区块奖励等重要信息,为您提供全面的矿池运行数据,助力您做出更明智的挖矿决策。",rate:"M2Pool 矿池费率页面,清晰呈现各个币种的挖矿费率、收益计算模式以及起付额等关键信息,帮助您准确评估挖矿成本与收益,做出更合理的挖矿策略选择。",apiFile:"M2Pool 矿池 API 文档页面,为用户详细介绍如何通过 M2Pool 提供的 API 接口获取矿池及帐户算力。内容涵盖 API 的认证 token 生成、接口调用方法以及返回数据结构说明,助力开发者高效利用矿池数据资源。",AccessMiningPool:"M2Pool 矿池接入矿池页面,详细阐述每个币种接入矿池的具体步骤,为用户提供便捷的接入指南,轻松开启挖矿之旅。",ServiceTerms:"M2Pool 矿池服务条款页面,明确阐述关于使用 M2Pool 矿池网站的相关服务条款,确保用户在使用过程中清楚了解权利与义务,保障用户权益。",submitWorkOrder:"M2Pool 矿池提交工单页面,当您在使用矿池网站过程中遇到任何问题时,可在此提交工单。我们将尽快处理并回复,为您提供高效的技术支持服务。",workOrderRecords:"M2Pool 矿池工单记录页面,方便用户查看在 M2Pool 矿池网站提交的所有工单记录以及工单目前的处理状态,随时掌握问题解决进度。",userWorkDetails:"M2Pool 矿池用户工单详情页面,用户可在此查看提交工单的详细情况,包括提交时间、详细问题描述以及处理过程。同时,也可以通过该页面继续对该工单进行补充提交。",alerts:"M2Pool 矿池矿机离线告警,根据不同账户用户自定义设置告警邮箱及备注信息,方便用户及时掌握矿机情况,提升用户体验。",personalCenter:"M2Pool 矿池个人中心,为用户提供全面的个性化管理功能。在这里,您可以便捷地设置挖矿账户、管理钱包地址、调整只读页面权限、强化安全设置,还能订阅挖矿报告,以及生成个人 API 密钥,满足您对矿池管理的多样化需求。",personalMining:"M2Pool 矿池个人中心挖矿账户设置页面,用户可在此设置各个币种的挖矿账户,方便地进行账户的添加、删除操作,以及绑定和修改钱包地址。",readOnly:"在 M2Pool 矿池的只读页面设置中,轻松添加只读权限,根据自选权限分享矿池信息。无论是管理员还是注册用户,都能便捷查看,随时掌握矿池动态。",securitySetting:"M2Pool 矿池个人中心安全设置页面,用户可在此修改密码并开启双重验证,为账户安全增添多一层保障。",personalAPI:"M2Pool 矿池个人中心 API 页面,用户可以选择默认本地 IP 或输入特定 IP 地址,自主选择权限并生成对应的 API KEY,方便进行个性化的数据管理。",miningReport:"M2Pool 矿池个人中心挖矿报告页面,用户可开启周报、月报订阅服务,固定时间将上周或上月的挖矿数据发送至用户注册邮箱,随时掌握挖矿成果。",personal:"显示用户信息、登录历史相关信息:时间、位置、ip、设备等",nexaAccess:"M2Pool 矿池 nexa 接入页面,详细介绍如何接入 M2Pool 矿池进行 nexa 币种挖矿,提供用户便捷的接入指南,轻松开启挖矿之旅。",grsAccess:"M2Pool 矿池 grs 接入页面,详细介绍如何接入 M2Pool 矿池进行 grs 币种挖矿,提供用户便捷的接入指南,轻松开启挖矿之旅。",monaAccess:"M2Pool 矿池 mona 接入页面,详细介绍如何接入 M2Pool 矿池进行 mona 币种挖矿,提供用户便捷的接入指南,轻松开启挖矿之旅。",dgbAccess:"M2Pool 矿池 dgb 接入页面,详细介绍如何接入 M2Pool 矿池进行 dgb 币种挖矿,提供用户便捷的接入指南,轻松开启挖矿之旅。",rxdAccess:"M2Pool 矿池 rxd 接入页面,详细介绍如何接入 M2Pool 矿池进行 radiant 币种挖矿,提供用户便捷的接入指南,轻松开启挖矿之旅。",allocationExplanation:"M2Pool 矿池分配及转账说明页面,详细介绍各币种的成熟条件、出块间隔及预估时间,何时将挖矿收益分配及转账至用户账户,提供用户清晰的了解分配及转账指南。",enxAccess:"Entropyx(enx) 接入页面,详细介绍如何接入 M2Pool 矿池进行 enx 币种挖矿,提供用户便捷的接入指南,轻松开启挖矿之旅。",alphAccess:"Alephium(alph) 接入页面,详细介绍如何接入 M2Pool 矿池进行 Alephium(alph) 币种挖矿,提供用户便捷的接入指南,轻松开启挖矿之旅。",broadcast:"M2Pool 矿池广播页面,管理员可在此查看已发布的广播信息,包括广播内容、发布时间、发布者等。",userManagement:"M2Pool 矿池用户管理页面,管理员可在此查看所有用户信息,包括用户名、邮箱、注册时间、登录时间等。",helpCenter:"M2Pool 矿池帮助中心页面,提供用户全面的帮助中心信息,包括新手入门、矿业数据、常见问题、公告中心、其他等。",announcements:"M2Pool 矿池公告中心页面,提供最新的矿池公告、系统通知、服务更新和重要信息,让用户及时了解矿池动态和政策变更。",documentManagement:"M2Pool 矿池文档管理页面,提供最新的文档信息,让用户及时了解文档信息。"}},t.seo_en={seo:{Home:"M2Pool mining pool, upgraded in 2024! Bringing you more stable network services and efficiently increasing unit revenue. Transparent allocation mechanism and reliable technical services ensure worry free mining for you. Support mining of many popular currencies such as nexa, grs, mona, dgb, rxd, etc., opening up new channels for wealth growth.",miningAccount:"The mining account page of M2Pool provides users with detailed account information display. Here, you can intuitively view the income situation of the account, clearly understand the trend of computing power changes through the computing power trend chart, grasp the situation of miners, and also deeply view detailed information on income and payments, helping you better manage mining business",readOnlyDisplay:"The M2Pool read-only page display page presents key data such as the mining pool's revenue status, payment details, and miner information clearly through shared link addresses and specific permissions, allowing you to stay informed of the mining pool's dynamics and grasp the direction of mining revenue at any time.",reportBlock:"The M2Pool mining pool block report page accurately displays important information such as lucky value, block height, block time, block hash value, and block rewards for each currency, providing you with comprehensive mining pool operation data to help you make more informed mining decisions.",rate:"The M2Pool mining rate page clearly presents key information such as mining rates, profit calculation models, and deductibles for various currencies, helping you accurately evaluate mining costs and profits and make more reasonable mining strategy choices.",apiFile:"The M2Pool API documentation page provides users with detailed instructions on how to obtain mining pools and account computing power through the API interface provided by M2Pool. The content covers API authentication token generation, interface calling methods, and return data structure explanations, helping developers efficiently utilize mining pool data resources.",AccessMiningPool:"The M2Pool mining pool access page provides a detailed explanation of the specific steps for each currency to access the mining pool, offering users a convenient access guide to easily start their mining journey.",ServiceTerms:"The M2Pool mining pool service terms page clearly explains the relevant service terms regarding the use of the M2Pool mining pool website, ensuring that users have a clear understanding of their rights and obligations during use and protecting their rights and interests.",submitWorkOrder:"M2Pool submission ticket page, where you can submit a ticket if you encounter any problems while using the mining pool website. We will handle and reply as soon as possible to provide you with efficient technical support services.",workOrderRecords:"The M2Pool mining pool work order record page facilitates users to view all work order records submitted on the M2Pool mining pool website, as well as the current processing status of work orders, and to keep track of the progress of problem resolution at any time.",userWorkDetails:"M2Pool user work order details page, where users can view the detailed information of submitted work orders, including submission time, detailed problem description, and processing procedures. At the same time, you can also continue to supplement and submit the work order through this page.",alerts:"M2Pool mining machine offline alarm, customized alarm email and note information according to different account users, convenient for users to timely grasp the mining machine situation and improve user experience.",personalCenter:"M2Pool personal center provides users with comprehensive personalized management functions. Here, you can easily set up mining accounts, manage wallet addresses, adjust read-only page permissions, strengthen security settings, subscribe to mining reports, and generate personal API keys to meet your diverse needs for mining pool management.",personalMining:"The M2Pool personal center mining account settings page allows users to set up mining accounts for various currencies, conveniently adding and deleting accounts, as well as binding and modifying wallet addresses.",readOnly:"In the read-only page settings of M2Pool mining pool, easily add read-only permissions and share mining pool information according to the selected permissions. Both administrators and registered users can easily view and keep track of the mining pool dynamics at any time.",securitySetting:"The M2Pool personal center security settings page allows users to change their password and enable two factor authentication, adding an extra layer of security to their account.",personalAPI:"The M2Pool personal center API page allows users to choose the default local IP or enter a specific IP address, autonomously select permissions, and generate corresponding API keys for personalized data management.",miningReport:"The M2Pool personal center mining report page allows users to subscribe to weekly and monthly reports, and send mining data from the previous week or month to the user's registered email at fixed times to keep track of mining results at any time.",personal:"Display user information, login history related information: time, location, ip, device, etc.",nexaAccess:"The M2Pool nexa access page provides detailed instructions on how to access the M2Pool mining pool for nexa currency mining, offering users a convenient access guide to easily start their mining journey.",grsAccess:"The M2Pool GRS access page provides detailed instructions on how to access the M2Pool mining pool for GRS currency mining, offering users a convenient access guide to easily start their mining journey.",monaAccess:"The M2Pool mona access page provides detailed instructions on how to access the M2Pool for mona currency mining, offering users a convenient access guide to easily start their mining journey.",dgbAccess:"The M2Pool dgb access page provides detailed instructions on how to access the M2Pool for dgb currency mining, offering users a convenient access guide to easily start their mining journey.",rxdAccess:"The M2Pool rxd access page provides detailed instructions on how to access the M2Pool for radial currency mining, offering users a convenient access guide to easily start their mining journey.",allocationExplanation:"The M2Pool mining pool allocation and transfer instructions page provides detailed information on the maturity conditions, block interval, and estimated time of each currency, as well as when to allocate and transfer mining profits to user accounts, providing users with a clear understanding of allocation and transfer guidelines.",enxAccess:"Entropyx (enx) access page provides detailed instructions on how to access the M2Pool mining pool for enx currency mining, offering users a convenient access guide to easily start their mining journey.",alphAccess:"The M2Pool Alephium(alph) access page provides detailed instructions on how to access the M2Pool mining pool for Alephium(alph) currency mining, offering users a convenient access guide to easily start their mining journey.",broadcast:"M2Pool mining pool broadcast page, where administrators can view published broadcast information, including broadcast content, release time, publisher, etc.",userManagement:"M2Pool mining pool user management page, where administrators can view all user information, including user name, email, registration time, login time, etc.",helpCenter:"M2Pool mining pool help center page, providing users with comprehensive help center information, including beginner's guide, mining data, frequently asked questions, announcement center, and other information.",announcements:"M2Pool mining pool announcement center page, providing the latest mining pool announcements, system notifications, service updates and important information, allowing users to stay informed of mining pool dynamics and policy changes.",documentManagement:"M2Pool mining pool document management page, providing the latest document information, allowing users to stay informed of document information."}}},58044:function(e,t,n){var i=n(3999)["default"];Object.defineProperty(t,"__esModule",{value:!0}),t["default"]=void 0;var o=i(n(66848)),a=i(n(69522)),s=i(n(62806)),r=i(n(76466));o.default.use(a.default);const l=new a.default({locale:localStorage.getItem("lang")||"en",fallbackLocale:"en",messages:r.default,silentTranslationWarn:!0});s.default.i18n(((e,t)=>l.t(e,t)));t["default"]=l},58538:function(e,t,n){n.r(t),n.d(t,{miningAccount_en:function(){return o},miningAccount_zh:function(){return i}});const i={mining:{totalRevenue:"总收入",totalExpenditure:"总支出",yesterdaySEarnings:"昨日收益",diggedToday:"今日已挖(预估)",accountBalance:"账户余额",paymentSettings:"付款设置",algorithmicDiagram:"算力图",computingPower:"矿机算力分布",miner:"矿工",profit:"收益",payment:"支付",all:"全部",onLine:"在线",offLine:"离线",hoursPower:"1小时算力",dayPower:"24小时算力",refusalRate:"拒绝率",settlementTime:"结算时间",remarks:"备注",withdrawalAddress:"提现地址",withdrawalTime:"提现时间",currency:"币种",withdrawalAmount:"提现金额",transactionId:"交易ID",pleaseEnter:"请输入...",power24H:"24小时算力图",logInFirst:"请先登录后查看该页面",totalRevenueTips:"本挖矿账户全部收益累计",totalExpenditureTips:"本挖矿账户已提现收益累计",yesterdaySEarningsTips:"昨日(utc)24小时收益,由于该收益需要5000个区块高度确认(大约为7天),因此该笔收益需要等待大约7天才可提现转账。",diggedTodayTips:"今日(utc)截止到目前的挖矿收益,该收益根据过去24小时算力预估,仅供参考,最终收益以PPLNS结算为准。",blockRewards:"仅指报块的固定奖励",transactionFeeExplanation:"仅指该区块支付给矿工打包交易的费用,和区块奖励一起组成最终的报块奖励",Withdrawable:"可提现余额",balanceReminder:"该数据不包含今日预估收益。可提现余额会在每天12点(utc)之前自动转入到您的挖矿钱包中。",mature:"成熟:已经被区块链确认的收益。未成熟:还未被区块链确认的收益。所有成熟和未成熟的收益都将暂时添加到您的账户余额中,但只有成熟的区块收益才能被提现。",submitTime:"最后提交时间",total:"合计",Minutes:"30分钟",state:"状态",date:"日期",settlementDate:"结算日期",paymentStatus:"支付状态",paymentInProgress:"支付中",paymentCompleted:"已支付",jurisdiction:"无访问权限!"}},o={mining:{totalRevenue:"Total revenue",totalExpenditure:"Total expenditure",yesterdaySEarnings:"Yesterday's earnings",diggedToday:"Excavated today (estimated)",accountBalance:"Account balance",paymentSettings:"Payment settings",algorithmicDiagram:"Algorithmic diagram",computingPower:"Distribution of mining machine computing power",miner:"miner",profit:"profit",payment:"payment",all:"whole",onLine:"on-line",offLine:"off-line",hoursPower:"1 hour of computing power",dayPower:"24-hour computing power",refusalRate:"Refusal rate",settlementTime:"Settlement time",remarks:"Remarks",withdrawalAddress:"Withdrawal address",currency:"Currency",withdrawalAmount:"Withdrawal amount",transactionId:"Transaction Id",pleaseEnter:"Please enter...",power24H:"24-hour calculation chart",logInFirst:"Please log in first and then view this page",totalRevenueTips:"Accumulate all profits of this mining account",totalExpenditureTips:"Accumulated withdrawal income of this mining account",yesterdaySEarningsTips:"Yesterday (UTC), there was a 24-hour return. As this return requires 5000 blocks to be highly confirmed (approximately 7 days), it will take about 7 days for the return to be withdrawn and transferred.",diggedTodayTips:"The mining income as of today (UTC) is estimated based on the computing power of the past 24 hours and is for reference only. The final income will be settled by PPLNS.",blockRewards:"Only refers to fixed rewards for block submissions",transactionFeeExplanation:"Only refers to the fee paid by the block to miners for packaging transactions, which, together with the block reward, constitutes the final block reward",Withdrawable:"Withdrawable balance",balanceReminder:"This data does not include today's estimated earnings. The withdrawable balance will be automatically transferred to your mining wallet before 12:00 UTC every day.",mature:"Mature: Earnings that have been confirmed by the blockchain. Unripe: Earnings that have not yet been confirmed by the blockchain. All mature and immature earnings will be temporarily added to your account balance, but only earnings from mature blocks can be withdrawn.",submitTime:"Final submission time",total:"Total",Minutes:"30 Minutes",state:"State",date:"date",withdrawalTime:"Withdrawal time",settlementDate:"Settlement date",paymentStatus:"Payment status",paymentInProgress:"default",paymentCompleted:"paid",jurisdiction:"No access permission!"}}},62277:function(e,t,n){n.r(t),n.d(t,{__esModule:function(){return o.B},default:function(){return l}});var i=n(99945),o=n(20074),a=o.A,s=n(81656),r=(0,s.A)(a,i.XX,i.Yp,!1,null,"7e1a768d",null),l=r.exports},62901:function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.home_zh=t.home_en=void 0;t.home_zh={home:{file:"文档",rate:"费率",home:"首页",accountCenter:"挖矿账户",personalCenter:"个人中心",power:"矿池算力",networkPower:"全网算力",networkDifficulty:"全网难度",miner:"在线矿工",algorithm:"算法",height:"当前高度",coinValue:"币价",blockHeight:"区块高度",blockingTime:"出块时间",blockHash:"区块哈希值",blockRewards:"区块奖励",transactionFee:"交易费",CurrencyPower:"矿池算力",hour:"1小时",day:"1天",realTime:"实时",lucky3:"3日幸运值",lucky7:"7日幸运值",lucky30:"30日幸运值",lucky90:"90日幸运值",luckyValue:"幸运值",reportBlock:"最新报块",computingPower:"矿池算力",rejectionRate:"拒绝率",onlineMiners:"在线矿工",miningMachineComputingPower:"矿机算力分布",profitCalculation:"收益计算器",ConnectMiningPool:"接入矿池",Power:"算力",time:"时间",profit:"收益",everyDay:"每天",weekly:"每周",monthly:"每月",annually:"每年",currencyPrice:"币价",finallyPower:"总算力",minerSComputingPower:"矿工算力",acquisitionFailed:"数据获取失败,请稍后重试",calculatorTips:"该值根据当前全网算力的估算,可能与您的实际收益有差别,仅供参考",caution:"注意:",numberOfMiningMachines:"矿机台数",requestTimeout:"系统接口请求超时,请刷新重试",NetworkError:"网络连接异常,请刷新重试",mission:"我们的使命",missionText:"本矿池旨在为客户提供更稳定的网络服务,更高效的单位收益,更透明的分配机制,更可靠的技术服务。",service:"提供服务",APIfile:"API文档",rateFooter:"费率",userAssistance:"用户帮助",miningTutorial:"挖矿教程",aboutUs:"关于我们",businessCooperation:"商务合作",contactCustomerService:"联系客服",serviceTerms:"服务条款",submitWorkOrder:"提交工单",historicalAnnouncement:"历史公告",commonProblem:"常见问题",joinUs:"加入我们",MLogin:"登录",MRegister:"注册",MResetPassword:"重置密码",API:"API",accountSettings:"挖矿账户设置",poolTitle:"稳定领先高收益矿池",metaDescription:"M2Pool 矿池,全新升级!为您带来更稳定的网络服务,高效提升单位收益。透明的分配机制,可靠的技术服务,让您挖矿无忧。支持 nexa、grs、mona、dgb、rxd 等众多热门币种挖矿,开启财富增长新通道。",metaKeywords:"M2Pool,矿池,挖矿,nexa,grs,mona,dgb,rxd,Mining Pool",appTitle:"M2pool - 稳定领先的高收益矿池",mode:"模式/费率",describeTitle:"提示:",view:"详情",describe:"奖励分配:1天/次,每日0时(utc+0), 转账:1天/次,每日4时(utc+0)起,具体取决于区块成熟条件",networkReconnected:"网络已重新连接,正在恢复数据...",networkOffline:"网络连接已断开,系统将在恢复连接后自动重试",helpCenter:"帮助中心",announcements:"公告中心",latestTitle:"最新公告",noData:"暂无公告",viewAll:"查看所有",articles:"篇文章",allocationExplanation:"矿池分配及转账规则",loadingContent:"正在加载内容...",noContent:"暂无内容",unknownType:"未知类型",other:"其他"}},t.home_en={home:{file:"File",rate:"Rate",accountCenter:"Mining account",personalCenter:"Personal Center",power:"Mining Pool computing power",networkPower:"Full network computing power",networkDifficulty:"Network wide difficulty",miner:"Online miners",algorithm:"algorithm",height:"Current height",coinValue:"Coin value",blockHeight:"block height ",blockingTime:"Blocking time",blockHash:"Block hash value",blockRewards:"Block rewards",transactionFee:"Transaction fee",CurrencyPower:"Mining pool computing power",hour:"Hour",day:"Day",realTime:"Real time",lucky3:"3-day lucky value",lucky7:"7-day lucky value",lucky30:"30 day lucky value",lucky90:"90 day lucky value",luckyValue:"Lucky value",home:"Home",reportBlock:"Latest report block",computingPower:"Mining pool computing power",rejectionRate:"Rejection rate",onlineMiners:"Online miners",miningMachineComputingPower:"Distribution of mining machine computing power",profitCalculation:"Profit Calculator",ConnectMiningPool:"Connect Mining Pool",Power:"Computing power",time:"Time",profit:"Profit",everyDay:"Per day",weekly:"Weekly",monthly:"Monthly",annually:"Annually",currencyPrice:"Currency Price",finallyPower:"total computational power",minerSComputingPower:"miner's arithmetic",acquisitionFailed:"Data acquisition failed, please try again later",calculatorTips:"This value is estimated based on the current computing power of the entire network and may differ from your actual income. It is for reference only",caution:"Caution:",numberOfMiningMachines:"Number of mining machines",requestTimeout:"System interface request timed out, please refresh and retry",NetworkError:"Network connection is abnormal, please refresh and try again.",mission:"Our Mission",missionText:"This mining pool aims to provide customers with more stable network services, more efficient unit revenue, more transparent allocation mechanism, and more reliable technical services.",service:"Provide Services",APIfile:"API Documentation",rateFooter:"Rate",userAssistance:"User Help",miningTutorial:"Mining Tutorial",aboutUs:"About Us",businessCooperation:"Business Cooperation",contactCustomerService:"Contact Customer Service",serviceTerms:"Service Terms",submitWorkOrder:"Submit WorkOrder",historicalAnnouncement:"Historical Announcement",commonProblem:"Common Problem",joinUs:"Join Us",MLogin:"Login",MRegister:"Sign Up",MResetPassword:"Reset password",API:"API",accountSettings:"Mining account",poolTitle:"Stable leading high-yield mining pool",metaDescription:"M2Pool mining pool, newly upgraded! Bringing you more stable network services and efficiently increasing unit revenue. Transparent allocation mechanism and reliable technical services ensure worry free mining for you. Support mining of many popular currencies such as nexa, grs, mona, dgb, rxd, etc., opening up new channels for wealth growth.",metaKeywords:"M2Pool,mining pool,mining,nexa,grs,mona,dgb,rxd,Mining Pool",appTitle:"M2pool - Stable leading high-yield mining pool",mode:"Mode/Rate",describeTitle:"Prompts:",view:"Details",describe:"Reward distribution: 1 day/times, daily at 0:00 (utc+0), transfer: 1 day/times, daily from 4:00 (utc+0), depending on block maturity conditions ",networkReconnected:"Network has been reconnected, recovering data...",networkOffline:"Network connection has been disconnected, the system will automatically retry after recovery",helpCenter:"Help Center",announcements:"Announcements",latestTitle:"Latest Announcements",noData:"No data",viewAll:"View all",articles:" articles",allocationExplanation:"Pool allocation and transfer rules",loadingContent:"Loading content...",noContent:"No content",unknownType:"Unknown Type",other:"Other"}}},66044:function(e,t,n){n.r(t),n.d(t,{__esModule:function(){return o.B},default:function(){return l}});var i=n(87579),o=n(49967),a=o.A,s=n(81656),r=(0,s.A)(a,i.XX,i.Yp,!1,null,"58290ecb",null),l=r.exports},67345:function(e,t,n){t.Yp=t.XX=void 0;t.XX=function(){var e=this,t=e._self._c;return t("div",{staticClass:"contentMain"},[t("div",{staticClass:"contentPage"},[t("router-view",{key:e.key})],1),e.$isMobile?t("section",{staticClass:"moveFooterBox"},[t("div",{staticClass:"footerBox"},[e._m(0),t("div",{staticClass:"missionBox"},[t("p",{staticClass:"mission"},[e._v(e._s(e.$t("home.mission")))]),t("p",{staticClass:"missionText"},[e._v(e._s(e.$t("home.missionText")))])]),t("div",{staticClass:"missionBox"},[t("p",{staticClass:"mission"},[e._v(e._s(e.$t("home.service")))]),t("div",{staticClass:"FMenu"},[t("p",[t("span",{on:{click:function(t){return e.jumpPage1("/apiFile")}}},[e._v(e._s(e.$t("home.APIfile")))])]),t("p",[t("span",{on:{click:function(t){return e.jumpPage2("/rate")}}},[e._v(e._s(e.$t("home.rateFooter")))])])])]),t("div",{staticClass:"missionBox"},[t("p",{staticClass:"mission"},[e._v(e._s(e.$t("home.userAssistance")))]),t("div",{staticClass:"FMenu"},[t("p",[t("span",{on:{click:function(t){return e.jumpPage3("/AccessMiningPool")}}},[e._v(e._s(e.$t("home.miningTutorial")))])]),t("p",[t("span",{on:{click:function(t){return e.jumpPage3("/submitWorkOrder")}}},[e._v(e._s(e.$t("home.submitWorkOrder")))])])])]),t("div",{staticClass:"missionBox"},[t("p",{staticClass:"mission"},[e._v(e._s(e.$t("home.aboutUs")))]),t("div",{staticClass:"FMenu"},[t("p",[t("a",{attrs:{href:"mailto:support@m2pool.com"}},[e._v(e._s(e.$t("home.joinUs")))])]),t("p",[t("a",{attrs:{href:"mailto:support@m2pool.com"}},[e._v(e._s(e.$t("home.contactCustomerService")))])]),t("p",[t("span",{on:{click:function(t){return e.jumpPage("/ServiceTerms")}}},[e._v(e._s(e.$t("home.serviceTerms")))])]),t("p",[t("a",{attrs:{href:"mailto:support@m2pool.com"}},[e._v(e._s(e.$t("home.businessCooperation")))])])])])])]):t("div",{staticClass:"footerBox"},[t("el-row",{staticStyle:{width:"100%"}},[t("el-col",{attrs:{xs:24,sm:24,md:5,lg:5,xl:5}},[t("div",{staticClass:"footerSon logo2"},[t("div",{staticClass:"logoBox"},[t("img",{staticClass:"logoImg",attrs:{src:n(65549),alt:"logo图片"}}),t("span",{staticClass:"copyright"},[e._v("Copyright © 2024 M2pool")])])])]),t("el-col",{attrs:{xs:24,sm:24,md:6,lg:6,xl:6}},[t("div",{staticClass:"footerSon text"},[t("h4",[e._v(e._s(e.$t("home.mission")))]),t("div",[e._v(e._s(e.$t("home.missionText")))])])]),t("el-col",{attrs:{xs:24,sm:24,md:4,lg:4,xl:4}},[t("div",{staticClass:"footerSon product"},[t("ul",[t("li",{staticClass:"productTitle"},[t("h4",[e._v(e._s(e.$t("home.service")))])]),t("li",[t("span",{on:{click:function(t){return e.jumpPage1("/apiFile")}}},[e._v(e._s(e.$t("home.APIfile")))])]),t("li",[t("span",{on:{click:function(t){return e.jumpPage2("/rate")}}},[e._v(e._s(e.$t("home.rateFooter")))])])])])]),t("el-col",{attrs:{xs:24,sm:24,md:4,lg:4,xl:4}},[t("div",{staticClass:"footerSon product"},[t("ul",[t("li",{staticClass:"productTitle"},[t("h4",[e._v(e._s(e.$t("home.userAssistance")))])]),t("li",[t("span",{on:{click:function(t){return e.jumpPage3("/AccessMiningPool")}}},[e._v(" "+e._s(e.$t("home.miningTutorial")))])]),t("li",[t("span",{on:{click:function(t){return e.jumpPage3("/submitWorkOrder")}}},[e._v(e._s(e.$t("home.submitWorkOrder")))])])])])]),t("el-col",{attrs:{xs:24,sm:24,md:4,lg:4,xl:4}},[t("div",{staticClass:"footerSon product"},[t("ul",[t("li",{staticClass:"productTitle"},[t("h4",[e._v(e._s(e.$t("home.aboutUs")))])]),t("li",[t("a",{attrs:{href:"mailto:support@m2pool.com"}},[e._v(e._s(e.$t("home.joinUs")))])]),t("li",[t("span",{on:{click:function(t){return e.jumpPage("/ServiceTerms")}}},[e._v(" "+e._s(e.$t("home.serviceTerms")))])]),t("li",[t("a",{attrs:{href:"mailto:support@m2pool.com"}},[e._v(e._s(e.$t("home.businessCooperation")))])]),t("li",[t("a",{attrs:{href:"mailto:support@m2pool.com"}},[e._v(e._s(e.$t("home.contactCustomerService")))])])])])])],1)],1)])},t.Yp=[function(){var e=this,t=e._self._c;return t("div",{staticClass:"logoBox"},[t("img",{staticClass:"logoImg",attrs:{src:n(65549),alt:"logo图片"}}),t("span",{staticClass:"copyright"},[e._v("Copyright © 2024 M2pool")])])}]},74431:function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.personalCenter_zh=t.personalCenter_en=void 0;t.personalCenter_zh={personal:{miningAccount:"挖矿账户",readOnlyPage:"只读页面",securitySetting:"安全设置",personalCenter:"个人中心",miningReport:"挖矿报告",API:"API",add:"添加",delete:"删除",miningPool:"矿池",currency:"币种",remarks:"备注",operation:"操作",bindingWallet:"绑定付款钱包",addMiningPool:"添加挖矿账户",accountName:"账户名称",poolSelection:"币种选择",select:"请选择",remarks2:"备注(选填)",determine:"确 定",bindAddress:"付款设置",walletAddress:"钱包地址",Binding:"绑 定",establish:"创建",jurisdiction:"权限",account:"账户",readOnlyLink:"只读页面链接",setUp:"设置",miner:"矿工",profit:"收益",payment:"支付",loginPassword:"登录密码",accountSecurity:"用于保护账户安全。",setUp2:"已设置",modify:"修改",dualVerification:"双重验证",verificationInstructions:"用于添加、删除挖矿帐户和修改付款设置。",notEnabled:"未开启",Open:"开启",maintainPassword:"维护人员密码",maintenanceInstructions:"用于矿场维护人员登录帐户,使用此密码登录帐户时将隐藏“收益”和“帐户设置”页面。",deleteAccount:"删除账户",deleteDescription:"永久删除此主帐户及其子帐户。",Tips:"提示",enableVerificationDescription:"如需进行此操作,请先开启双重验证。",enableVerification:"开启双重验证",firstStep:"第一步",googleIdentity:"请使用您手机上的谷歌身份验证器(Google Authenticator)或其它兼容应用程序扫描下方二维码,也可手动输入以下16位密钥。",saveKey:"注意:请妥善保存密钥,避免被盗或丢失。",resetKeyDescription:"如遇手机丢失等情况,可通过该密钥恢复您的谷歌验证。如密钥丢失,需要提交工单通过人工客服重置,处理时间需7天。",nextStep:"下一步",step2:"第二步",verificationCode:"邮箱验证码",oneTimePassword:"双重验证动态口令",previousStep:"上一步",goOpenIt:"去开启",reasonForDeletion:"为了帮助我们优化服务,恳请您选择删除帐户的理由:",Cancel:"取 消",userName:"用户名",mailbox:"邮箱",phoneNumber:"手机号",mobilePhoneInstructions:" 用于添加或修改付款地址、修改登录密码,以及开启或修改维护人员密码。",loginHistory:"登录历史",time:"时间",loginResults:"登录结果",position:"位置",equipment:"设备",weekly:"周报",weeklyReportExplanation:"每个币种只能添加一份周报。开启后,每周二发送上周挖矿数据到您的注册邮箱。",weeklyReportTemplate:"查看周报模版",monthlyReport:"月报",monthlyReportExplanation:"每个币种只能添加一份月报。开启后,每月第二日发送上月挖矿数据到您的注册邮箱。",monthlyReportTemplate:"查看月报模版",addWeeklyReport:"添加周报",weeklyReportLanguage:"周报语言",weeklyReportCurrency:"周报币种",weeklyReportAccount:"周报账户",Submit:"提交",addMonthlyReport:"添加月报",monthlyReportLanguage:"月报语言",monthlyReportCurrency:"月报币种",monthlyReportAccount:"月报账户",nameDescription:"账号",pleaseEnter:"请输入..",pleaseEnter2:"输入搜索矿工",inputWalletAddress:"请输入钱包地址",remarksDescription:"请填写备注名,例如此只读页面链接分享给哪个合作伙伴",minimumPaymentAmount:"设置起付额",confirmSubmit:"确认提交",automaticWithdrawal:"是否自动提现",duplicateAccount:"账户名已存在,请重新填写",deleteConfirmation:"确认删除以下挖矿账户?",walletTips:"请确认填写钱包地址",PaymentAmountTips:"该币种起付金额不能小于",accountNumber:"请填写账号",selectCurrency:"请选择币种",invalidAddress:"钱包地址无效",yes:"是",no:"否",pleaseEnter3:"输入搜索账户",copySuccessful:"复制成功",copyFailed:"复制失败",confirm:"确 定",confirmSelection:"请确认勾选注意事项",pwd:"请输入登录密码",eCode:"请输入邮箱验证码",gCode:"请输入动态口令",copy:"复制",or:"或",accountSelection:"请选择账户",selectPermissions:"请选择只读权限",modify2:"修 改",accountFormat:"账户只能输入字母、数字、下划线,且不能以数字开头,长度不小于4位,不大于24位",close:"关闭",turnOffVerification:"关闭双重验证",Closed:"已成功关闭双重验证",day:"天",hour:"时",minute:"分",second:"秒",front:"前",loadingText:"拼命加载中...",deletePrompt:"确定删除勾选内容吗?",scanning:"(扫描`上一步`中的二维码获取最新口令)",apiKey:"API Key",ipAddress:"默认IP地址或者输入其他IP地址",defaultIp:"使用本机默认IP地址",ipAddressReminder:"请输入IP地址或勾选使用本机默认IP地址",permissionReminder:"请选择相关权限",minerAPI:"矿工",accountApi:"挖矿账户",miningPoolApi:"矿池",ipFormat:"请检查IP地址格式是否正确",screen:"筛选币种",workOrderRecord:"工单记录"}},t.personalCenter_en={personal:{miningAccount:"Mining account",readOnlyPage:"ReadOnly Page",securitySetting:"Security setting",personalCenter:"Personal Center",miningReport:"Mining report",API:"API",add:"Add",delete:"Delete",miningPool:"Mining pool",currency:"Currency",remarks:"Remarks",operation:"Operation",bindingWallet:"Bind payment wallet",addMiningPool:"Add mining account",accountName:"title of account",poolSelection:"Currency selection",select:"Please select",remarks2:"Remarks (optional)",determine:"determine",bindAddress:"Payment Settings",walletAddress:"Wallet address",Binding:"Binding",establish:"establish",jurisdiction:"Jurisdiction",account:"Account",readOnlyLink:"Read only page link",setUp:"Set up",miner:"miner",profit:"profit",payment:"payment",loginPassword:"Login password",accountSecurity:"Used to protect account security.",setUp2:"Set up",modify:"modify",dualVerification:"Dual verification",verificationInstructions:"Used for adding, deleting mining accounts, and modifying payment settings.",notEnabled:"Not enabled",Open:"open",maintainPassword:"Maintenance personnel password",maintenanceInstructions:'Used for mine maintenance personnel to log in to their account. When using this password to log in, the "Benefits" and "Account Settings" pages will be hidden.',deleteAccount:"Delete account",deleteDescription:"Permanently delete this main account and its sub accounts.",Tips:"Tips",enableVerificationDescription:"To perform this operation, please enable double verification first.",enableVerification:"Enable dual verification",firstStep:"The first step",googleIdentity:"Please use Google Authenticator or other compatible applications on your phone to scan the QR code below, or manually enter the following 16 digit key.",saveKey:"Be careful: Please keep the key properly to avoid theft or loss.",resetKeyDescription:"In case of phone loss or other situations, you can use this key to restore your Google verification. If the key is lost, a work order needs to be submitted for manual customer service reset, and the processing time takes 7 days.",nextStep:"next step",step2:"Step 2",verificationCode:"Email verification code",oneTimePassword:"Dual authentication dynamic password",previousStep:"Previous step",goOpenIt:"Go open it",reasonForDeletion:"To help us optimize our services, we kindly request that you choose the reason for deleting your account:",Cancel:"Cancel",userName:"User name",mailbox:"Mailbox",phoneNumber:"Cell-phone number",mobilePhoneInstructions:"Used to add or modify payment addresses, modify login passwords, and enable or modify maintenance personnel passwords.",loginHistory:"Login History",time:"Time",loginResults:"Login Results",position:"Position",equipment:"Equipment",weekly:"weekly",weeklyReportExplanation:"Only one weekly report can be added per currency. After activation, send last week's mining data to your registered email every Tuesday.",weeklyReportTemplate:"View weekly report template",monthlyReport:"Monthly report",monthlyReportExplanation:"Only one monthly report can be added per currency. After activation, send the mining data from the previous month to your registered email on the second day of each month.",monthlyReportTemplate:"View monthly report template",addWeeklyReport:"Add weekly report",weeklyReportLanguage:"Weekly Report Language",weeklyReportCurrency:"Weekly report currency",weeklyReportAccount:"Weekly report account",Submit:"Submit",addMonthlyReport:"Add monthly report",monthlyReportLanguage:"Monthly report language",monthlyReportCurrency:"Monthly report currency",monthlyReportAccount:"Monthly report account",nameDescription:"Account",pleaseEnter:"Please enter..",pleaseEnter2:"Enter search miner",inputWalletAddress:"Please enter the wallet address",remarksDescription:"Please fill in the note name, for example, which partner to share the read-only page link with",minimumPaymentAmount:"Minimum payment amount",confirmSubmit:"confirm Submit",automaticWithdrawal:"Whether to automatically withdraw funds",duplicateAccount:"The account name already exists, please fill it out again",deleteConfirmation:"Are you sure to delete the following mining accounts?",walletTips:"Please confirm to fill in the wallet address",PaymentAmountTips:"The fluctuation amount of this currency cannot be less than",accountNumber:"Please fill in the account number",selectCurrency:"Please select currency",invalidAddress:"Invalid wallet address",yes:"Yes",no:"No",pleaseEnter3:"Enter search account",copySuccessful:"Copy successful",copyFailed:"copy failed",confirm:"Confirm",confirmSelection:"Please confirm the selection of precautions",pwd:"Please enter your login password",eCode:"Please enter the email verification code",gCode:"Please enter the dynamic password",copy:"Copy",or:"Or",accountSelection:"Please select an account",selectPermissions:"Please select read-only permission",modify2:"Modify",accountFormat:"The account can only input letters, numbers, and underscores, and cannot start with a number. The length should not be less than 4 digits and not more than 24 digits",close:"close",turnOffVerification:"Turn off dual authentication",Closed:"Successfully disabled two factor authentication",day:"day",hour:"hours",minute:"minute",second:"second",front:"front",loadingText:"Desperately loading...",deletePrompt:"Are you sure to delete the selected content?",scanning:"(Scan the QR code from the `previous step` to obtain the latest password)",apiKey:"API Key",ipAddress:"Default IP address or enter another IP address",defaultIp:"Use the default IP address of this device",ipAddressReminder:"Please enter an IP address or check the option to use the default IP address on this device",permissionReminder:"Please select the relevant permissions",minerAPI:"miner",accountApi:"account",miningPoolApi:"pool",ipFormat:"Please check if the IP address format is correct",screen:"Filter currencies",workOrderRecord:"Work order record"}}},76466:function(e,t,n){var i=n(3999)["default"];Object.defineProperty(t,"__esModule",{value:!0}),t["default"]=void 0;var o=i(n(41040)),a=i(n(12467)),s=n(87349),r=n(62901),l=n(58538),c=n(74431),d=n(43110),u=n(83536),m=n(79438),p=n(33859),h=n(46373),g=n(57637),f=n(42450),y=n(90444),v=n(42133),b=n(53724);t["default"]={zh:{...a.default,...s.userLang_zh,...r.home_zh,...l.miningAccount_zh,...c.personalCenter_zh,...d.AccessMiningPool_zh,...u.serviceTerms_zh,...m.api_zh,...p.workOrder_zh,...h.alerts_zh,...g.seo_zh,...f.chooseUs_zh,...y.ChatWidget_zh,...v.backendSystem_zh,...b.announcements_zh},en:{...o.default,...s.userLang_en,...r.home_en,...l.miningAccount_en,...c.personalCenter_en,...d.AccessMiningPool_en,...u.serviceTerms_en,...m.api_en,...p.workOrder_en,...h.alerts_en,...g.seo_en,...f.chooseUs_en,...y.ChatWidget_en,...v.backendSystem_en,...b.announcements_en}}},79438:function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.api_zh=t.api_en=void 0;t.api_zh={apiFile:{file:"M2pool API 文档",leftMenu:"API 文档 V1",survey:"概况",survey1:"用户可以通过 m2pool 提供的 API 接口,获取矿池、帐户的算力。",survey2:"本文档主要用于说明如何使用 m2pool 的 API接口,内容主要包括API的认证token生成以及API接口调用和返回数据结构。如果在调用 API 的返回值中,出现本文档中没有描述的字段,则说明这些字段为保留字段或是被弃用,请直接忽略。",apiAuthentication:"API 认证",apiAuthentication1:"查询 API 时需要提供由账号生产的具有对应权限的 token ,才能正常得到结果。用户可通过 m2pool 个人中心的",apiAuthentication5:"API页面",apiAuthentication6:"获取(请求 token 时可以根据需求自行勾选权限,可选权限分别为公共矿池数据查询接口调用权限、挖矿账户数据查询接口调用权限、矿机数据查询接口调用权限)。",apiAuthentication2:"在请求 API 时,将前面获取到的 token 放在 HTTP 请求Header 的API-KEY属性中即可完成认证。",apiAuthentication3:"请求API的IP要和获取API时的IP一致,且不能是本网站申明的禁止访问国家/地区的IP。",apiAuthentication4:"例如:",url:"示例url",explain:"说明",explain1:"获取某币种的矿池详情,包括矿池在线矿工数、最近7天的矿池算力、矿池当前算力、矿池最新高度、矿池费用、矿池提现起付额等",explain2:"获取某币种历史算力信息。start和end最多相差3个月",explain3:"当发生错误的时候,会返回给统一格式的数据",explain4:"错误描述",explain5:"当成功时返回同意格式的数据,数据具体字段见具体接口说明",explain6:"API 中 coin 字段可目前仅取值支持:nexa",miningPoolInformation:"矿池信息",miningPoolInformation1:"公共结构",miningPoolInformation2:"算力数据",name:"名称",type:"类型",remarks:"备注",Explain:"解释",powerStatistics:"算力统计时间",power:"算力",minersNum:"矿工数量数据",totalMiners:"总矿工数",onLineMiners:"在线矿工数",offLineMiners:"离线矿工数",overviewOfMiningPool:"矿池总览",jurisdiction:"所需权限",parameter:"请求参数",currency:"币种",response:"响应参数",serviceCharge:"矿池手续费",minimumPaymentAmount:"起付额",latelyPower24h:"最近七天算力(24h平均)",Power24h:"矿池最新算力(24h平均)",height:"矿池当前高度",currentMiners:"矿池当前矿工数",eachState:"各状态矿工数量",realTimePower:"矿池实时算力",averagePower30m:"当前30m平均算力",averagePower24h:"当前24h平均算力",Company:"单位",historyPower:"矿池总览历史算力",start:"开始时间",start2:"格式yyyy-MM-dd 与end相差最多三个月",end:"结束时间",end2:"格式yyyy-MM-dd 与star相差最多三个月",historyPower30m:"30m平均算力历史记录",historyPower24h:"24h平均算力历史记录",miningAccount:"挖矿账号信息",minerData:"矿工数量数据",stateData:"矿工状态数据",minerId:"矿工号",minerStatus:"矿工状态",minerStatus0:"0 代表在线",minerStatus1:"1 代表离线",minerStatus2:"2 代表异常状态",overviewOfMiners:"挖矿账号下矿工总览",accountApiKey:"该API-KEY绑定账号下的挖矿账号名",allMiners:"挖矿账号下所有矿工",realTimeAccount:"挖矿账号实时算力",account24h:"挖矿账号历史24h平均算力",account24h30m:"挖矿账号最近24h算力(30m平均算力)",average24h30m:"最近24h的30m平均算力",miningMachineInformation:"矿机信息",realTimeMiningMachine:"指定矿机实时算力",aCertainMiner:"挖矿账户下对应的某矿工号",miningMachineHistory24h:"指定矿机历史24h平均算力",realTimeMiningMachine24h30m:"指定矿机最近24h算力(30m平均算力)"}},t.api_en={apiFile:{file:"M2pool API documentation",leftMenu:"API documentation V1",survey:"survey",survey1:"Users can obtain the computing power of mining pools and accounts through the API interface provided by m2pool.",survey2:"This document is mainly used to explain how to use the API interface of m2pool, including the generation of authentication tokens for the API, API interface calls, and the return of data structures. If fields not described in this document appear in the return value of API calls, it indicates that these fields are reserved or abandoned, please ignore them directly.",apiAuthentication:"API certification",apiAuthentication1:"When querying the API, it is necessary to provide a token produced by the account with corresponding permissions in order to obtain normal results. Users can access the m2pool personal center through",apiAuthentication2:"When requesting an API, place the token obtained earlier in the API-KEY attribute of the HTTP request header to complete authentication.",apiAuthentication3:"The IP address requested for the API must be consistent with the IP address used to obtain the API, and cannot be the IP address of the prohibited country/region declared by this website.",apiAuthentication4:"For example:",url:"Example URL",explain:"explain",explain1:"Get the details of a mining pool for a certain currency, including the number of online miners in the pool, the computing power of the mining pool in the past 7 days, the current computing power of the mining pool, the latest height of the mining pool, mining pool fees, and the minimum withdrawal amount of the mining pool",explain2:"Obtain historical computing power information for a certain currency. The maximum difference between start and end is 3 months",explain3:"When an error occurs, data in a unified format will be returned",explain4:"Error description",explain5:"When successful, return data in the agreed format. Please refer to the specific interface instructions for the specific fields of the data",explain6:"The coin field in the API currently only supports values such as nexa",miningPoolInformation:"Mining Pool Information",miningPoolInformation1:"Public Structure",miningPoolInformation2:"Computing power data",name:"name",type:"type",remarks:"remarks",powerStatistics:"Computing power statistics time",power:"Computing power",minersNum:"Number of miners data",totalMiners:"Total number of miners",onLineMiners:"Number of online miners",offLineMiners:"Number of offline miners",Explain:"explain",overviewOfMiningPool:"Overview of Mining Pool",jurisdiction:"Required permissions",parameter:"Request parameters",currency:"currency",response:"Response parameters",serviceCharge:"Mining pool handling fee",minimumPaymentAmount:"Minimum payment amount",latelyPower24h:"Last seven days' computing power (24-hour average)",Power24h:"Latest computing power of mining pool (24-hour average)",height:"The current height of the mining pool",currentMiners:"The current number of miners in the mining pool",eachState:"Number of miners in each state",realTimePower:"Real time computing power of mining pool",averagePower30m:"Current average computing power of 30m",averagePower24h:"Current 24-hour average computing power",Company:"Company",historyPower:"Overview of Mining Pool Historical Computing Power",start:"start time",start2:"Format yyyy MM dd differs from end by up to three months",end:"End time",end2:"Format yyyy MM dd differs from star by up to three months",historyPower30m:"30m average computing power historical record",historyPower24h:"24-hour average computing power history record",miningAccount:"Mining account information",minerData:"Number of miners data",stateData:"Miner status data",minerId:"Miner ID",minerStatus:"Miner status",minerStatus0:"0 represents online",minerStatus1:"1 represents offline",minerStatus2:"2 represents abnormal state",overviewOfMiners:"Overview of miners under mining accounts",accountApiKey:"The mining account name under the API-KEY bound account",allMiners:"All miners under the mining account",realTimeAccount:"Real time computing power of mining accounts",account24h:"24-hour average computing power of mining account history",account24h30m:"Mining account's computing power in the past 24 hours (average computing power of 30m)",average24h30m:"The average computing power of 30m in the past 24 hours",miningMachineInformation:"Mining machine information",realTimeMiningMachine:"Specify the real-time computing power of the mining machine",aCertainMiner:"The corresponding miner account under the mining account",miningMachineHistory24h:"Specify the average computing power of the mining machine in the past 24 hours",realTimeMiningMachine24h30m:"Designated mining machine's computing power in the past 24 hours (average computing power of 30m)",apiAuthentication5:"API page",apiAuthentication6:"Obtain (When requesting tokens, you can check the permissions according to your needs, and the optional permissions are public mining pool data query interface call permission, mining account data query interface call permission, and mining machine data query interface call permission)."}}},83536:function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.serviceTerms_zh=t.serviceTerms_en=void 0;t.serviceTerms_zh={ServiceTerms:{title:"服务条款内容",title1:"一、总则",clauseTotal1:"1.欢迎访问 M2pool 矿池网站(以下简称“本网站”)。使用本网站的服务(以下简称“服务”),即表示您同意遵守以下服务条款(以下简称“条款”)。",clauseTotal2:"2.请仔细阅读以下条款,如果您点击 “注册 ”按钮或查看、使用这些服务,即视为您已阅读并同意本服务条款及其所有附加条款。如果你不接受服务条款的限制,请不要查看或使用服务。",clauseTotal3:"3.我们保留随时修改这些条款的权利,修改后的条款将在网站上公布。您继续使用服务即表示您接受修改后的条款。",clauseTotal4:"4.我们希望您能定期查看本条款,以确保您已确认适用于您查看和使用的条款和条件。本条款及附加条款可供您查看,并可用于使用我们提供的任何服务,包括但不限于以下网站:https://www.m2pool.com/(以下简称 “本网站”)。",title2:"二、服务说明",clauseService1:"1.我们的服务旨在为用户提供数字货币挖矿相关的资源和支持,但不保证挖矿的收益或成功。",clauseService2:"2.服务可能会因维护、升级或其他原因而暂时中断,我们将尽力提前通知用户,但不对此类中断造成的损失负责。",clauseService3:"3.M2Pool 不向以下司法管辖区的个人或实体提供服务:阿富汗、白俄罗斯、中非共和国、刚果民主共和国、几内亚比绍、古巴、伊朗、伊拉克、朝鲜、利比亚、黎巴嫩、马里、叙利亚、委内瑞拉和津巴布韦。受限制的司法管辖区还包括M2pool选择不运营的任何国家/地区,包括但不限于阿尔及利亚、安哥拉、孟加拉国、中国、埃及、海地、科索沃、科威特、摩洛哥、俄罗斯、尼泊尔、索马里、南苏丹、苏丹、也门和新加坡。",clauseService4:" 通过访问和使用 M2Pool 服务,您声明并保证您不位于、不在上述任何国家/地区设立或不是上述任何国家的居民。M2Pool 保留自行决定限制或拒绝某些国家/地区提供服务的权利。如果 M2Pool 确定(自行决定)用户是指定国家/地区的居民,M2Pool 可能会冻结或终止这些帐户。",title3:"三、用户资格",clauseUser1:"1.您必须达到法定年龄并具备完全民事行为能力才能使用本服务。",clauseUser2:"2.您保证所提供的注册信息真实、准确、完整,并及时更新,您可以使用电子邮件地址我们允许的其他方式登录 M2Pool。如果您提供的注册信息不正确,我们将不承担任何责任。您将遭受任何直接或间接的损失和不利后果。",clauseUser3:"3.您应是具有完全行为能力和民事权利能力的法人、公司或其他组织。否则,您或您的监护人应承担一切后果。我们有权注销或永久中止您的账户,并要求您赔偿。",title4:"四、用户责任",clauseResponsibility1:"1.您应遵守所有适用的国家法律、法规等规范性文件及本规则的规定和要求,包括但不限于与数字货币挖矿相关的法律。不违反社会公共利益或公共道德,不损害他人合法权益,不偷逃应纳税款,不违反本规定及相关规则。如果您违反上述承诺并产生任何法律后果,您应自行承担所有法律责任,并确保我们免受任何损失。",clauseResponsibility2:"2.您不得利用本服务从事任何非法、欺诈、有害或侵犯他人权利的活动。",clauseResponsibility3:"3.您对自己的挖矿设备和网络连接负责,确保其符合相关要求并正常运行。",clauseResponsibility4:"4.您必须对您的M2Pool用户名和密码以及在您的用户名、M2Pool密码下发生的所有活动(包括但不限于信息披露和发布、在线点击同意或提交各种规则和协议、在线协议续签或购买服务、账户设置等)的保密性负责。",clauseResponsibility5:"5.如果任何人未经认证使用您的M2pool邮箱、账号等登录本网站,我们不对您因违反本条款而造成的任何损失负责。",title5:"五、费用与支付",clausePayment1:"1.我们可能会根据服务内容收取一定的费用,具体费用标准将在网站上公布。",clausePayment2:"2.您同意按照规定的支付方式和时间支付费用,逾期未支付可能导致服务暂停或终止。",clausePayment3:"3.您在使用本服务时所产生的应纳税额以及所有硬件、软件、服务或其他方面的费用均由您自行承担。",title6:"六、收益与分配",clauseProfit1:"1.挖矿收益将根据我们的分配机制进行分配,但不保证收益的稳定性和固定性。",clauseProfit2:"2.我们有权根据实际情况调整分配机制,但会提前通知用户。",title7:"七、数据与隐私",clausePrivacy1:"1.我们会收集和使用您在使用服务过程中产生的相关数据,但会严格遵守隐私政策保护您的隐私。",clausePrivacy2:"2.您同意我们对数据的收集、使用和处理,以提供和改进服务。",title8:"八、知识产权",clausePropertyRight1:"1.本网站的所有内容,包括但不限于商标、版权、专利等,均归本公司或相关权利人所有。",clausePropertyRight2:"2.未经授权,您不得复制、修改、传播或使用本网站的任何知识产权。",title9:"九、免责声明",clauseDisclaimer1:"1.对于因不可抗力、系统故障、网络问题等导致的服务中断或数据丢失,我们不承担责任。",clauseDisclaimer2:"2.对于您因使用本服务而产生的任何直接、间接、偶然、特殊或后果性的损失,包括但不限于挖矿收益损失、设备损坏等,我们不承担赔偿责任。",title10:"十、终止服务",clauseTermination1:"1.我们有权在以下情况下终止您的服务:违反本条款、法律法规、损害本公司或其他用户的利益。",clauseTermination2:"2.服务终止后,您的相关数据可能会被删除或保留,具体处理方式将根据法律法规和公司政策执行。",title11:"十一、法律适用与争议解决",clauseLaw1:"1.本条款受新加坡法律的管辖。",clauseLaw2:"2.如发生争议,双方应通过友好协商解决;协商不成的,可向有管辖权的法院提起诉讼。"}},t.serviceTerms_en={ServiceTerms:{title:"Content of Service Terms",title1:"1、 General Provisions",clauseTotal1:'Welcome to the M2pool mining pool website (hereinafter referred to as "this website"). By using the services of this website (hereinafter referred to as the "Services"), you agree to comply with the following terms of service (hereinafter referred to as the "Terms").',clauseTotal2:'2. Please carefully read the following terms. If you click the "Register" button or view or use these services, it is deemed that you have read and agreed to these terms of service and all its additional terms. If you do not accept the limitations of the terms of service, please do not view or use the service.',clauseTotal3:"3. We reserve the right to modify these terms at any time, and the modified terms will be published on the website. By continuing to use the service, you accept the revised terms.",clauseTotal4:'4. We hope that you can regularly review these terms to ensure that you have confirmed the terms and conditions applicable to your viewing and use. These terms and additional terms are available for your review and can be used to use any services we provide, including but not limited to the following websites: https://www.m2pool.com/ (hereinafter referred to as "this website").',title2:"2、 Service Description",clauseService1:"Our service aims to provide users with resources and support related to cryptocurrency mining, but we do not guarantee the profits or success of mining.",clauseService2:"2. The service may be temporarily interrupted due to maintenance, upgrades, or other reasons. We will do our best to notify users in advance, but we are not responsible for any losses caused by such interruptions.",clauseService3:"3.M2Pool does not provide services to individuals or entities in the following jurisdictions: Afghanistan, Belarus, Central African Republic, Democratic Republic of the Congo, Guinea Bissau, Cuba, Iran, Iraq, North Korea, Libya, Lebanon, Mali, Syria, Venezuela and Zimbabwe. Restricted jurisdictions also include any country/territory in which M2pool chooses not to operate, including but not limited to Algeria, Angola, Bangladesh, China, Egypt, Haiti, Kosovo, Kuwait, Morocco, Russia, Nepal, Somalia, South Sudan, Sudan, Yemen and Singapore.",title3:"3、 User Qualification",clauseUser1:"1. You must be of legal age and have full capacity for civil conduct to use this service.",clauseUser2:"2. You guarantee that the registration information provided is true, accurate, complete, and updated in a timely manner. You can log in to M2Pool using other methods allowed by our email address. If the registration information you provide is incorrect, we will not be held responsible. You will suffer any direct or indirect losses and adverse consequences.",clauseUser3:"3. You should be a legal person, company, or other organization with full capacity for conduct and civil rights. Otherwise, you or your guardian shall bear all consequences. We have the right to cancel or permanently suspend your account and demand compensation from you.",title4:"4、 User Responsibility",clauseResponsibility1:"1. You shall comply with all applicable national laws, regulations and normative documents, as well as the provisions and requirements of these rules, including but not limited to laws related to digital currency mining. Not violating the public interest or public morality, not harming the legitimate rights and interests of others, not evading taxes, and not violating these regulations and related rules. If you violate the above commitments and incur any legal consequences, you shall bear all legal responsibilities on your own and ensure that we are free from any losses.",clauseResponsibility2:"2. You are not allowed to engage in any illegal, fraudulent, harmful, or infringing activities using this service.",clauseResponsibility3:"3. You are responsible for your mining equipment and network connection, ensuring that it meets relevant requirements and operates normally.",clauseResponsibility4:"4. You are responsible for the confidentiality of your M2Pool username and password, as well as all activities that occur under your username and M2Pool password (including but not limited to information disclosure and publication, online click to agree or submit various rules and agreements, online agreement renewal or purchase of services, account settings, etc.).",clauseResponsibility5:"5. If anyone uses your M2pool email, account, etc. to log in to this website without authentication, we will not be responsible for any losses caused by your violation of these terms.",title5:"5、 Fees and Payment",clausePayment1:"We may charge a certain fee based on the service content, and the specific fee standard will be announced on the website.",clausePayment2:"2. You agree to pay the fees according to the prescribed payment method and time. Failure to pay on time may result in the suspension or termination of the service.",clausePayment3:"3. The taxable amount and all hardware, software, service or other expenses incurred by you when using this service shall be borne by you.",title6:"6、 Income and distribution",clauseProfit1:"1. Mining profits will be distributed according to our distribution mechanism, but we do not guarantee the stability and stability of the profits.",clauseProfit2:"2. We have the right to adjust the allocation mechanism according to the actual situation, but we will notify users in advance.",title7:"7、 Data and Privacy",clausePrivacy1:"1. We will collect and use relevant data generated during your use of the service, but we will strictly comply with the privacy policy to protect your privacy.",clausePrivacy2:"2. You agree to our collection, use, and processing of data to provide and improve services.",title8:"8、 Intellectual Property",clausePropertyRight1:"All content on this website, including but not limited to trademarks, copyrights, patents, etc., belongs to our company or relevant rights holders.",clausePropertyRight2:"2. Without authorization, you are not allowed to copy, modify, disseminate or use any intellectual property of this website.",title9:"9、 Disclaimer",clauseDisclaimer1:"We are not responsible for service interruptions or data loss caused by force majeure, system failures, network issues, etc.",clauseDisclaimer2:"2. We are not liable for any direct, indirect, incidental, special or consequential losses incurred by you as a result of using this service, including but not limited to mining revenue loss, equipment damage, etc.",title10:"10、 Termination of Service",clauseTermination1:"We have the right to terminate your service in the following circumstances: violation of these terms, laws and regulations, or damage to the interests of our company or other users.",clauseTermination2:"After the termination of the service, your relevant data may be deleted or retained, and the specific processing method will be implemented in accordance with laws, regulations, and company policies.",title11:"11、 Application of Law and Dispute Resolution",clauseLaw1:"1. This clause is governed by the laws of Singapore.",clauseLaw2:"2. In the event of a dispute, both parties shall resolve it through friendly consultation; If the negotiation fails, a lawsuit may be filed with a court with jurisdiction."}}},84269:function(e,t){t.Yp=t.XX=void 0;t.XX=function(){var e=this,t=e._self._c;return t("el-aside",{staticClass:"admin-sidebar",staticStyle:{height:"100vh",background:"#202940",width:"280px",padding:"0"}},[t("el-menu",{staticClass:"el-menu-vertical-demo",staticStyle:{border:"none",width:"280px"},attrs:{"default-active":e.activeIndex,"background-color":"#202940","text-color":"#fff","active-text-color":"#ffd04b"}},e._l(e.menuList,(function(n){return t("div",{key:n.id},[t("el-menu-item",{directives:[{name:"show",rawName:"v-show",value:!n.children,expression:"!item.children"}],staticStyle:{"padding-left":"20px !important"},attrs:{index:n.id},on:{click:function(t){return e.handleClick(n)}}},[t("i",{class:n.icon}),t("span",{attrs:{slot:"title"},slot:"title"},[e._v(e._s(e.$t(n.label)))])]),n.children?t("el-submenu",{attrs:{id:"el-submenu-bg",index:n.id}},[t("template",{slot:"title"},[t("i",{class:n.icon}),t("span",[e._v(e._s(e.$t(n.label)))])]),e._l(n.children,(function(n){return t("el-menu-item",{key:n.id,staticStyle:{"padding-left":"40px !important"},attrs:{index:n.id},on:{click:function(t){return e.handleClick(n)}}},[t("i",{class:n.icon}),t("span",{attrs:{slot:"title"},slot:"title"},[e._v(e._s(e.$t(n.label)))])])}))],2):e._e()],1)})),0)],1)},t.Yp=[]},87349:function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.userLang_zh=t.userLang_en=void 0;t.userLang_zh={user:{login:"登 录",register:"去注册",Account:"邮箱",password:"密码",forgotPassword:"忘记密码",inputAccount:"请输入账号",inputPassword:"请输入密码",inputEmail:"请输入邮箱",accountReminder:"请确认账号输入格式是否正确(以字母开头,允许使用字母、数字、下划线,长度不小于3,不大于16位)",PasswordReminder:"请确认密码格式输入正确(应包含大小写字母、数字和特殊字符,长度不小于8,不大于32位)",loginSuccess:"登录成功",inputCode:"请输入验证码",noPage:" 对不起,您正在寻找的页面不存在。尝试检查URL的错误,然后按浏览器上的刷新按钮或尝试在我们的应用程序中找到其他内容。",canTFind:"找不到网页!",verificationCode:"验证码",obtainVerificationCode:"获取验证码",again:"s后重新获取",newUser:"新用户注册",confirmPassword:"确认密码",havingAnAccount:"已有账号?",loginExpired:"登录状态已过期",overduePrompt:"系统提示",Home:"首 页",signOut:"退出登录",codeSuccess:"已发送验证码",emailVerification:"请检查邮箱是否输入正确",passwordVerification:"用户密码长度必须介于 8 和 32 之间",secondaryPassword:"请再次输入您的密码",passwordFormat:"请确认密码格式输入正确",system:"系统提示",congratulations:"恭喜您的账号 注册成功!",passwordPrompt:"密码应包含大小写字母、数字和特殊字符,长度不小于8,不大于32位",verificationCodeSuccessful:"验证码发送成功",noAccount:"没有账号?",resetPassword:"重置密码",newPassword:"确认密码",changePassword:"修改密码",returnToLogin:"返回登录",confirmPassword2:"确认两次密码输入一致",modifiedSuccessfully:"密码修改成功,请登录",verificationEnabled:"已开启验证",newPassword2:"新密码"}},t.userLang_en={user:{login:"Login",register:"Sign Up",Account:"Email",password:"Password",forgotPassword:"Forgot password",inputAccount:"Please enter an account",inputPassword:"Please enter the password",inputEmail:"Please enter your email address",accountReminder:"Please confirm if the account input format is correct (starting with a letter, allowing letters, numbers, and underscores, with a length of no less than 3 and no more than 16 digits)",PasswordReminder:"Please confirm that the password format is entered correctly (it should include uppercase and lowercase letters, numbers, and special characters, with a length of no less than 8 and no more than 32 bits)",loginSuccess:"Login successful",inputCode:"Please enter the verification code",noPage:" Sorry, the page you are looking for does not exist. Try checking for errors in the URL, then press the refresh button on the browser or try to find other content in our application.",canTFind:"Unable to find webpage!",verificationCode:"Code",obtainVerificationCode:"Obtain Code",again:"s again",newUser:"New user registration",confirmPassword:"Confirm password",havingAnAccount:"Existing account?",loginExpired:"Login status has expired",overduePrompt:"System prompt",Home:"Home",signOut:"Sign out",codeSuccess:"Verification code has been sent",emailVerification:"Please check if the email is entered correctly",passwordVerification:"Password length must be between 8 and 32",secondaryPassword:"Please enter your password again",passwordFormat:"Please confirm that the password format is entered correctly",system:"System prompt",congratulations:"Congratulations on the successful registration of your account!",passwordPrompt:"password Contains uppercase and lowercase letters, numbers, and special characters,Length not less than 8 and not more than 32",verificationCodeSuccessful:"Verification code sent successfully",noAccount:"Don't have an account?",resetPassword:"Reset Password",newPassword:"Confirm password",changePassword:"Change Password",returnToLogin:"Return to login",confirmPassword2:"Confirm that the two password inputs are consistent",modifiedSuccessfully:"Password changed successfully, please log in",verificationEnabled:"Verification enabled",newPassword2:"New Password"}}},87579:function(e,t){t.Yp=t.XX=void 0;t.XX=function(){var e=this,t=e._self._c;return t("div",{staticClass:"split-screen-editor"},[t("div",{staticClass:"editor-tools"},[t("div",{staticClass:"mode-switch"},[t("button",{staticClass:"mode-btn",class:{active:"edit"===e.editorMode},on:{click:function(t){e.editorMode="edit"}}},[t("i",{staticClass:"el-icon-edit"}),e._v(" 编辑 ")]),t("button",{staticClass:"mode-btn",class:{active:"preview"===e.editorMode},on:{click:function(t){e.editorMode="preview"}}},[t("i",{staticClass:"el-icon-view"}),e._v(" 预览 ")]),t("button",{staticClass:"mode-btn",class:{active:"split"===e.editorMode},on:{click:function(t){e.editorMode="split"}}},[t("i",{staticClass:"el-icon-s-unfold"}),e._v(" 分屏 ")])]),t("div",{staticClass:"tool-actions"},[t("span",{staticClass:"word-count"},[e._v(e._s(e.wordCount)+" 字")]),t("el-button",{attrs:{size:"mini",icon:"el-icon-question"},on:{click:e.toggleUsageGuide}},[e._v(" "+e._s(e.showUsageGuide?"隐藏指南":"使用指南")+" ")]),t("el-button",{attrs:{size:"mini",icon:"el-icon-full-screen"},on:{click:e.toggleFullscreen}},[e._v(" "+e._s(e.isFullscreen?"退出全屏":"全屏")+" ")]),t("el-button",{attrs:{size:"mini",icon:"el-icon-upload",type:"warning",loading:e.publishLoading,disabled:!e.localContent.trim()},on:{click:e.handlePublish}},[e._v(" "+e._s(e.publishLoading?"发布中...":"发布")+" ")])],1)]),t("div",{staticClass:"editor-container",class:{fullscreen:e.isFullscreen}},[t("el-row",{attrs:{gutter:20}},[t("el-col",{attrs:{span:"preview"===e.editorMode?0:"split"===e.editorMode?12:24}},[t("div",{directives:[{name:"show",rawName:"v-show",value:"preview"!==e.editorMode,expression:"editorMode !== 'preview'"}],staticClass:"editor-panel"},[t("div",{staticClass:"panel-header"},[t("span",[t("i",{staticClass:"el-icon-edit"}),e._v(" 富文本编辑")]),t("div",{staticClass:"panel-actions"},[t("el-button",{attrs:{size:"mini",icon:"el-icon-arrow-right"},on:{click:e.insertBulletPoint}},[e._v(" 插入圆点 ")])],1)]),t("div",{staticClass:"editor-content"},[t("div",{ref:"editorContainer",staticClass:"tinymce-container"},[t("textarea",{directives:[{name:"model",rawName:"v-model",value:e.localContent,expression:"localContent"}],attrs:{id:e.editorId},domProps:{value:e.localContent},on:{input:[function(t){t.target.composing||(e.localContent=t.target.value)},e.handleContentChange]}})])])])]),t("el-col",{attrs:{span:"edit"===e.editorMode?0:"split"===e.editorMode?12:24}},[t("div",{directives:[{name:"show",rawName:"v-show",value:"edit"!==e.editorMode,expression:"editorMode !== 'edit'"}],staticClass:"editor-panel"},[t("div",{staticClass:"panel-header"},[t("span",[t("i",{staticClass:"el-icon-view"}),e._v(" 实时预览")]),t("div",{staticClass:"panel-actions"},[t("el-button",{attrs:{size:"mini",icon:"el-icon-document-copy"},on:{click:e.copyHtml}},[e._v(" 复制HTML ")])],1)]),t("div",{staticClass:"preview-content content-display",domProps:{innerHTML:e._s(e.previewContent)}})])])],1)],1),t("transition",{attrs:{name:"slide-fade"}},[t("div",{directives:[{name:"show",rawName:"v-show",value:e.showUsageGuide,expression:"showUsageGuide"}],staticClass:"usage-guide-panel"},[t("el-card",{attrs:{shadow:"never"}},[t("div",{attrs:{slot:"header"},slot:"header"},[t("span",[t("i",{staticClass:"el-icon-guide"}),e._v(" TinyMCE 富文本编辑器使用指南")]),t("el-button",{staticStyle:{float:"right",padding:"3px 0","margin-left":"10px"},attrs:{type:"text",icon:"el-icon-close"},on:{click:e.toggleUsageGuide}},[e._v(" 关闭指南 ")]),t("el-button",{staticStyle:{float:"right",padding:"3px 0"},attrs:{type:"text",icon:"el-icon-info"},on:{click:e.checkDemoEditorStatus}},[e._v(" 检查状态 ")])],1),t("div",{staticClass:"guide-content"},[t("div",{staticClass:"guide-section"},[t("h4",[e._v("💡 功能演示区域")]),t("p",{staticClass:"demo-description"},[e._v("在下方编辑器中直接尝试各种功能:")]),t("div",{staticClass:"demo-editor-container"},[t("div",{staticClass:"demo-editor",attrs:{id:e.demoEditorId}})]),t("div",{staticClass:"demo-tips"},[t("span",{staticClass:"tip-item"},[e._v("💡 提示:可以在此编辑器中直接尝试下方介绍的所有功能")])])]),t("div",{staticClass:"guide-section"},[t("h4",[e._v("📝 基础文本编辑")]),t("div",{staticClass:"function-grid"},[t("div",{staticClass:"function-item"},[t("div",{staticClass:"function-icon"},[t("i",{staticClass:"el-icon-refresh-left"})]),t("div",{staticClass:"function-detail"},[t("h5",[e._v("撤销/重做")]),t("p",[t("kbd",[e._v("Ctrl + Z")]),e._v(" 撤销 | "),t("kbd",[e._v("Ctrl + Y")]),e._v(" 重做")]),t("span",{staticClass:"tips"},[e._v("快速回退或恢复编辑操作")])])]),t("div",{staticClass:"function-item"},[t("div",{staticClass:"function-icon"},[t("strong",[e._v("B")])]),t("div",{staticClass:"function-detail"},[t("h5",[e._v("字体样式")]),t("p",[t("kbd",[e._v("Ctrl + B")]),e._v(" 粗体 | "),t("kbd",[e._v("Ctrl + I")]),e._v(" 斜体 | "),t("kbd",[e._v("Ctrl + U")]),e._v(" 下划线")]),t("span",{staticClass:"tips"},[e._v("选中文字后使用快捷键或点击工具栏按钮")])])])])]),t("div",{staticClass:"guide-section"},[t("h4",[e._v("🎨 格式与样式")]),t("div",{staticClass:"function-grid"},[t("div",{staticClass:"function-item"},[t("div",{staticClass:"function-icon"},[t("i",{staticClass:"el-icon-s-grid"})]),t("div",{staticClass:"function-detail"},[t("h5",[e._v("段落格式")]),t("p",[e._v("标题1-6、段落、预格式化文本")]),t("span",{staticClass:"tips"},[e._v('点击"格式"下拉菜单选择段落样式')])])]),t("div",{staticClass:"function-item"},[t("div",{staticClass:"function-icon"},[t("div",{staticClass:"color-icon"})]),t("div",{staticClass:"function-detail"},[t("h5",[e._v("颜色设置")]),t("p",[e._v("字体颜色 "),t("span",{staticClass:"color-demo",staticStyle:{color:"#ff0000"}},[e._v("A")]),e._v(" | 背景颜色 "),t("span",{staticClass:"bg-demo"},[e._v("A")])]),t("span",{staticClass:"tips"},[e._v("选中文字后点击颜色按钮选择颜色")])])]),t("div",{staticClass:"function-item"},[t("div",{staticClass:"function-icon"},[t("i",{staticClass:"el-icon-sort"})]),t("div",{staticClass:"function-detail"},[t("h5",[e._v("文本对齐")]),t("p",[e._v("左对齐 | 居中 | 右对齐 | 两端对齐")]),t("span",{staticClass:"tips"},[e._v("将光标放在段落中,点击对应对齐按钮")])])])])]),t("div",{staticClass:"guide-section"},[t("h4",[e._v("📋 列表与缩进")]),t("div",{staticClass:"function-grid"},[t("div",{staticClass:"function-item"},[t("div",{staticClass:"function-icon"},[t("span",{staticStyle:{"font-size":"18px"}},[e._v("•")])]),t("div",{staticClass:"function-detail"},[t("h5",[e._v("无序列表(圆点)")]),t("p",[e._v("创建带圆点的项目列表")]),t("span",{staticClass:"tips"},[e._v('点击圆点按钮或使用"• 圆点"专用按钮')])])]),t("div",{staticClass:"function-item"},[t("div",{staticClass:"function-icon"},[t("span",{staticStyle:{"font-size":"16px"}},[e._v("1.")])]),t("div",{staticClass:"function-detail"},[t("h5",[e._v("有序列表(数字)")]),t("p",[e._v("创建带数字编号的项目列表")]),t("span",{staticClass:"tips"},[e._v("点击数字列表按钮,自动生成编号")])])]),t("div",{staticClass:"function-item"},[t("div",{staticClass:"function-icon"},[t("i",{staticClass:"el-icon-right"})]),t("div",{staticClass:"function-detail"},[t("h5",[e._v("缩进控制")]),t("p",[t("kbd",[e._v("Tab")]),e._v(" 增加缩进 | "),t("kbd",[e._v("Shift + Tab")]),e._v(" 减少缩进")]),t("span",{staticClass:"tips"},[e._v("用于创建多层级列表结构")])])])])]),t("div",{staticClass:"guide-section"},[t("h4",[e._v("🔗 插入与媒体")]),t("div",{staticClass:"function-grid"},[t("div",{staticClass:"function-item"},[t("div",{staticClass:"function-icon"},[t("i",{staticClass:"el-icon-link"})]),t("div",{staticClass:"function-detail"},[t("h5",[e._v("链接插入")]),t("p",[t("kbd",[e._v("Ctrl + K")]),e._v(" 插入链接")]),t("span",{staticClass:"tips"},[e._v("选中文字后按快捷键或点击链接按钮")])])]),t("div",{staticClass:"function-item"},[t("div",{staticClass:"function-icon"},[t("i",{staticClass:"el-icon-picture"})]),t("div",{staticClass:"function-detail"},[t("h5",[e._v("图片插入")]),t("p",[e._v("支持上传图片或插入图片链接")]),t("span",{staticClass:"tips"},[e._v("点击图片按钮,选择本地文件或输入URL")])])]),t("div",{staticClass:"function-item"},[t("div",{staticClass:"function-icon"},[t("i",{staticClass:"el-icon-s-grid"})]),t("div",{staticClass:"function-detail"},[t("h5",[e._v("表格插入")]),t("p",[e._v("创建和编辑表格数据")]),t("span",{staticClass:"tips"},[e._v("点击表格按钮选择行列数,右键编辑表格")])])])])]),t("div",{staticClass:"guide-section"},[t("h4",[e._v("🛠️ 高级功能")]),t("div",{staticClass:"function-grid"},[t("div",{staticClass:"function-item"},[t("div",{staticClass:"function-icon"},[t("i",{staticClass:"el-icon-search"})]),t("div",{staticClass:"function-detail"},[t("h5",[e._v("搜索替换")]),t("p",[t("kbd",[e._v("Ctrl + F")]),e._v(" 查找 | "),t("kbd",[e._v("Ctrl + H")]),e._v(" 替换")]),t("span",{staticClass:"tips"},[e._v("快速查找和批量替换文本内容")])])]),t("div",{staticClass:"function-item"},[t("div",{staticClass:"function-icon"},[t("i",{staticClass:"el-icon-view"})]),t("div",{staticClass:"function-detail"},[t("h5",[e._v("源码编辑")]),t("p",[e._v("查看和编辑HTML源代码")]),t("span",{staticClass:"tips"},[e._v("点击代码按钮切换到HTML视图")])])]),t("div",{staticClass:"function-item"},[t("div",{staticClass:"function-icon"},[t("i",{staticClass:"el-icon-full-screen"})]),t("div",{staticClass:"function-detail"},[t("h5",[e._v("全屏编辑")]),t("p",[t("kbd",[e._v("F11")]),e._v(" 或点击全屏按钮")]),t("span",{staticClass:"tips"},[e._v("沉浸式编辑体验,"),t("kbd",[e._v("ESC")]),e._v("退出")])])])])]),t("div",{staticClass:"guide-section"},[t("h4",[e._v("⌨️ 快捷键汇总")]),t("div",{staticClass:"shortcuts-grid"},[t("div",{staticClass:"shortcut-category"},[t("h5",[e._v("基础编辑")]),t("div",{staticClass:"shortcut-list"},[t("div",{staticClass:"shortcut-item"},[t("kbd",[e._v("Ctrl + Z")]),t("span",[e._v("撤销")])]),t("div",{staticClass:"shortcut-item"},[t("kbd",[e._v("Ctrl + Y")]),t("span",[e._v("重做")])]),t("div",{staticClass:"shortcut-item"},[t("kbd",[e._v("Ctrl + A")]),t("span",[e._v("全选")])]),t("div",{staticClass:"shortcut-item"},[t("kbd",[e._v("Ctrl + C")]),t("span",[e._v("复制")])])])]),t("div",{staticClass:"shortcut-category"},[t("h5",[e._v("格式化")]),t("div",{staticClass:"shortcut-list"},[t("div",{staticClass:"shortcut-item"},[t("kbd",[e._v("Ctrl + B")]),t("span",[e._v("粗体")])]),t("div",{staticClass:"shortcut-item"},[t("kbd",[e._v("Ctrl + I")]),t("span",[e._v("斜体")])]),t("div",{staticClass:"shortcut-item"},[t("kbd",[e._v("Ctrl + U")]),t("span",[e._v("下划线")])]),t("div",{staticClass:"shortcut-item"},[t("kbd",[e._v("Ctrl + K")]),t("span",[e._v("插入链接")])])])]),t("div",{staticClass:"shortcut-category"},[t("h5",[e._v("视图控制")]),t("div",{staticClass:"shortcut-list"},[t("div",{staticClass:"shortcut-item"},[t("kbd",[e._v("F11")]),t("span",[e._v("全屏")])]),t("div",{staticClass:"shortcut-item"},[t("kbd",[e._v("ESC")]),t("span",[e._v("退出全屏")])]),t("div",{staticClass:"shortcut-item"},[t("kbd",[e._v("Ctrl + F")]),t("span",[e._v("查找")])]),t("div",{staticClass:"shortcut-item"},[t("kbd",[e._v("Ctrl + H")]),t("span",[e._v("替换")])])])])])]),t("div",{staticClass:"guide-section special-features"},[t("h4",[e._v("⭐ 专用功能说明")]),t("div",{staticClass:"special-function"},[t("div",{staticClass:"special-icon"},[t("span",[e._v("•")])]),t("div",{staticClass:"special-content"},[t("h5",[e._v("圆点插入专用按钮")]),t("p",[e._v('我们为您特别添加了"• 圆点"按钮,专门用于插入黑色圆点符号。')]),t("div",{staticClass:"usage-steps"},[t("span",{staticClass:"step"},[e._v("1")]),e._v(" 将光标定位到需要插入圆点的位置 "),t("span",{staticClass:"step"},[e._v("2")]),e._v(' 点击工具栏中的"• 圆点"按钮 '),t("span",{staticClass:"step"},[e._v("3")]),e._v(" 圆点自动插入,在分屏模式下立即可见 ")])])]),t("div",{staticClass:"special-function"},[t("div",{staticClass:"special-icon"},[t("i",{staticClass:"el-icon-s-unfold"})]),t("div",{staticClass:"special-content"},[t("h5",[e._v("分屏实时预览")]),t("p",[e._v("左边编辑,右边实时预览,完美解决圆点在预览时才显示的问题。")]),t("div",{staticClass:"usage-steps"},[t("span",{staticClass:"step"},[e._v("1")]),e._v(' 点击工具栏中的"分屏"按钮 '),t("span",{staticClass:"step"},[e._v("2")]),e._v(" 左侧编辑器,右侧实时预览 "),t("span",{staticClass:"step"},[e._v("3")]),e._v(" 圆点和格式化效果立即可见 ")])])])])])])],1)])],1)},t.Yp=[]},90444:function(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.ChatWidget_zh=t.ChatWidget_en=void 0;t.ChatWidget_zh={chat:{title:"在线客服",welcome:"欢迎使用在线客服,请问有什么可以帮您?",placeholder:"请输入您的消息...",send:"发送",close:"关闭",inputPlaceholder:"请输入您的问题...",onlyImages:"只能上传图片文件!",imageTooLarge:"图片大小不能超过5MB!",imageReceived:"已收到您的图片,我们会尽快处理您的问题。",networkError:"网络连接已断开,请刷新页面重试",openCustomerService:"打开客服聊天",connectToCustomerService:"正在连接客服系统...",connectionFailed:"连接失败,请刷新页面重试",tryConnectingAgain:"重试连接",loading:"加载中...",loadMore:"加载更多历史消息",welcomeToUse:"欢迎使用在线客服,请问有什么可以帮您?",picture:"聊天图片",read:"已读",unread:"未读",subscriptionFailed:"消息订阅失败,可能无法接收新消息",break:"连接断开",retry:"秒后重试",disconnectWaiting:"断线重连中...",sendFailed:"发送消息失败,请重试",noHistory:"暂无历史消息",historicalFailure:"加载历史消息失败,请重试",loadingHistory:"正在加载更多历史消息...",noMoreHistory:"没有更多历史消息了",Loaded:"已加载历史消息",newMessage:"新消息",pictureMessage:"图片消息",initializationFailed:"初始化失败,请刷新页面重试",beSorry:"抱歉,我暂时无法回答这个问题。请排队等待人工客服或提交工单。",today:"今天",yesterday:"昨天",canOnlyUploadImages:"只能上传图片文件!",imageSizeExceeded:"图片大小不能超过5MB!",uploading:"正在上传图片...",pictureFailed:"发送图片失败,请重试",readImage:"读取图片失败,请重试",processingFailed:"图片处理失败,请重试",Disconnected:"连接已断开",reconnecting:"正在连接...",contactList:"联系列表",search:"搜索最近联系人",tourist:"游客",important:"重要",markAsImportant:"标记为重要",cancelImportant:"已取消重要标记",markingFailed:"标记操作失败,请重试",Marked:"已标记为重要",select:"请选择联系人",notSelected:"您尚未选择联系人",None:"暂无消息记录",sendPicture:"发送图片",inputMessage:"请输入消息,按Enter键发送,按Ctrl+Enter键换行",bottom:"回到底部",Preview:"预览图片",chatRoom:"聊天室",CLOSED:"已关闭",picture2:"图片",Unnamed:"未命名聊天室",noNewsAtTheMoment:"暂无未读消息",contactFailed:"加载更多联系人失败",listException:"获取聊天室列表异常",my:"我",unknownSender:"未知发送者",recordFailed:"加载聊天记录失败",messageException:"加载消息异常",chooseFirst:"请先选择联系人",chatDisconnected:"聊天连接已断开,请刷新页面重试",pictureSuccessful:"图片已发送",history:"历史记录",loadFailed:"加载失败",guestNotice:"您当前以游客身份聊天,聊天记录将不会保存。",guestNotice2:"后即可保存聊天记录",loginToSave:"登录",server500:"服务器暂时不可用,请稍后重试",CheckNetwork:"连接失败,请检查网络后重试",attemptToReconnect:"连接已断开,正在尝试重连...",retryFailed:"重试连接失败,请刷新页面",maxConnectionsError:"连接数已达上限,请刷新页面重试",ipLimitError:"本机连接数已达上限,请刷新页面重试",serverLimitError:"服务器连接数已达上限,请稍后刷新重试",identityError:"用户身份设置失败,请刷新页面重试",emailError:"用户信息获取失败,请刷新页面重试",refreshPage:"刷新页面",reconnectSuccess:"重新连接成功",sendMessageEmpty:"发送消息不能为空",unableToSubscribe:"连接状态异常,刷新页面重试",conflict:"连接异常,可能是多窗口冲突,请关闭其他窗口重试",abnormal:"连接异常",networkAnomaly:"网络连接异常",customerServiceOffline:"客服离线,请登录账号发送留言消息",contentMax:"超出发送内容大小限制,请删除部分内容(300字以内)",failInSend:"发送失败,请重试",connectionLimitError:"连接数已达上限,请关闭一些窗口后刷新重试",serverBusy:"服务器繁忙,请稍后刷新重试",connectionTimedOut:"连接超时,稍后重试...",reconnectFailed:"重连失败,请稍后重试",serviceConfigurationError:"服务配置异常,请稍后重试",serviceAddressUnavailable:"服务地址不可用,请稍后重试",connectionFailedService:"无法连接到服务器,请稍后重试",connectionFailedCustomer:"连接客服系统失败,请检查网络或稍后重试",logoutSyncNotice:"检测到您已在其他窗口退出登录,当前窗口将自动跳转"}},t.ChatWidget_en={chat:{title:"Online Customer Service",welcome:"Welcome to the online customer service, what can I help you with?",placeholder:"Please enter your message...",send:"Send",close:"Close",inputPlaceholder:"Please enter your question...",onlyImages:"Only image files can be uploaded!",imageTooLarge:"The image size cannot exceed 5MB!",imageReceived:"We have received your image, and we will handle your question as soon as possible.",networkError:"Network disconnected, please refresh page",openCustomerService:"Open customer service chat",connectToCustomerService:"Connecting to customer service...",connectionFailed:"Connection failed, please refresh page",tryConnectingAgain:"Retry connection",loading:"Loading...",loadMore:"Load more history",welcomeToUse:"Welcome to online service, how can I help you?",picture:"Chat image",read:"Read",unread:"Unread",subscriptionFailed:"Message subscription failed",break:"Connection lost",retry:"Retry in seconds",disconnectWaiting:"connecting...",sendFailed:"Send failed, please retry",noHistory:"No history",historicalFailure:"Failed to load history",loadingHistory:"Loading more history...",noMoreHistory:"No more history",Loaded:"History loaded",newMessage:"New message",pictureMessage:"Image message",initializationFailed:"Initialization failed, please refresh",beSorry:"Sorry, I cannot answer this. Please wait for agent or submit ticket",today:"Today",yesterday:"Yesterday",canOnlyUploadImages:"Only image files allowed",imageSizeExceeded:"Image size exceeds 5MB",uploading:"Uploading image...",pictureFailed:"Failed to send image",readImage:"Failed to read image",processingFailed:"Image processing failed",Disconnected:"Disconnected",reconnecting:"Reconnecting...",contactList:"Contact list",search:"Search contacts",tourist:"Guest",important:"Important",markAsImportant:"Mark as important",cancelImportant:"Unmarked as important",markingFailed:"Marking failed",select:"Select contact",notSelected:"No contact selected",None:"No messages",sendPicture:"Send image",inputMessage:"Type message, Enter to send, Ctrl+Enter for new line",bottom:"to bottom",Preview:"Preview image",chatRoom:"Chat room",CLOSED:"Closed",picture2:"Image",Unnamed:"Unnamed chat",noNewsAtTheMoment:"No unread messages",contactFailed:"Failed to load contacts",listException:"Failed to get chat list",my:"Me",unknownSender:"Unknown sender",recordFailed:"Failed to load chat records",messageException:"Failed to load messages",chooseFirst:"Please select contact first",chatDisconnected:"Chat disconnected, please refresh",pictureSuccessful:"Image sent",history:"History",loadFailed:"Load Fail",Marked:"Marked as important",guestNotice:"You are currently chatting as a guest, and your chat history will not be saved.",guestNotice2:" to save chat history",loginToSave:"Login",server500:"The server is temporarily unavailable, please try again later",CheckNetwork:"Connection failed, please check the network and try again",attemptToReconnect:"Connection lost, attempting to reconnect...",retryFailed:"Retry connection failed, please refresh page",maxConnectionsError:"Connection limit reached, please refresh page",ipLimitError:"Connection limit reached, please refresh page",serverLimitError:"Connection limit reached, please try again later",identityError:"Failed to set user identity, please refresh page",emailError:"Failed to get user information, please refresh page",refreshPage:"Refresh page",reconnectSuccess:"Reconnect successfully",sendMessageEmpty:"Message cannot be empty",unableToSubscribe:"Connection status abnormal, please refresh the page",conflict:"Connection exception, possibly due to multiple window conflicts, please close other windows and try again",abnormal:"Connection exception",networkAnomaly:"Network connection exception",customerServiceOffline:"Customer service offline, please login to send message",contentMax:"Content exceeds the size limit, please delete some content(300 characters or less)",failInSend:"Failed to send, please try again",connectionLimitError:"Connection limit reached, please close some windows and refresh to try again",serverBusy:"Server busy, please refresh later",connectionTimedOut:"Connection timed out, please try again later",reconnectFailed:"Reconnect failed, please try again later",serviceConfigurationError:"Service configuration exception, please try again later",serviceAddressUnavailable:"Service address unavailable, please try again later",connectionFailedService:"Failed to connect to the server, please try again later",connectionFailedCustomer:"Failed to connect to the customer service system, please check the network or try again later"}}},97390:function(e,t){t.Yp=t.XX=void 0;t.XX=function(){var e=this,t=e._self._c;return t("transition",{attrs:{name:"fade"}},[t("div",{directives:[{name:"show",rawName:"v-show",value:e.showTooltip,expression:"showTooltip"}],ref:"tooltip",staticClass:"m-tooltip",style:`max-width: ${e.maxWidth}PX; top: ${e.top}PX; left: ${e.left}PX;`,on:{mouseenter:e.onShow,mouseleave:e.onHide}},[t("div",{staticClass:"u-tooltip-content"},[e._t("default",(function(){return[e._v("暂无内容")]}))],2),t("div",{staticClass:"u-tooltip-arrow"})])])},t.Yp=[]},99047:function(e,t,n){Object.defineProperty(t,"B",{value:!0}),t.A=void 0,n(44114),n(18111),n(20116);t.A={data(){return{menuList:[{path:"userManagement",label:"backendSystem.userManagement",icon:"el-icon-user",id:"2"},{path:"workOrderBackend",label:"backendSystem.workOrder",icon:"el-icon-document-copy",id:"3"},{path:"documentManagement",label:"backendSystem.documentManagement",icon:"el-icon-folder-opened",id:"4",children:[{path:"broadcast",label:"backendSystem.broadcast",icon:"el-icon-bell",id:"4-1"},{path:"documentManagement",label:"backendSystem.publishArticle",icon:"el-icon-edit-outline",id:"4-2"}]}],activeIndex:"0"}},mounted(){const e=this.$i18n.locale,t=this.$route.path.replace(`/${e}/`,""),n=this.menuList.find((e=>e.path===t));if(n)this.activeIndex=n.id,this.$addStorageEvent(1,"activeIndex",n.id);else{const e=localStorage.getItem("activeIndex");e?this.activeIndex=e:this.$addStorageEvent(1,"activeIndex",this.activeIndex)}},methods:{handleClick(e){console.log(e,"item");const t=this.$i18n.locale;this.$router.push(`/${t}/${e.path}`),this.activeIndex=e.id,this.$addStorageEvent(1,"activeIndex",e.id)}},beforeDestroy(){localStorage.removeItem("activeIndex")}}},99945:function(e,t){t.Yp=t.XX=void 0;t.XX=function(){var e=this,t=e._self._c;return e.jurisdiction&&"back_admin"===e.jurisdiction.roleKey?t("BackAdminLayout"):t("el-container",{staticClass:"containerApp",staticStyle:{width:"100vw",height:"100vh"}},[t("el-header",{staticClass:"el-header"},[e.$isMobile?t("MoveHead"):t("comHeard")],1),t("el-main",{staticClass:"el-main"},[t("appMain")],1)],1)},t.Yp=[]}}]); \ No newline at end of file diff --git a/mining-pool/test/js/app-d87c119a.9b7e8112.js.gz b/mining-pool/test/js/app-d87c119a.9b7e8112.js.gz new file mode 100644 index 0000000..136dfa5 Binary files /dev/null and b/mining-pool/test/js/app-d87c119a.9b7e8112.js.gz differ diff --git a/mining-pool/test/sitemap-en.xml b/mining-pool/test/sitemap-en.xml index c9081da..e71c62d 100644 --- a/mining-pool/test/sitemap-en.xml +++ b/mining-pool/test/sitemap-en.xml @@ -1 +1 @@ -https://m2pool.com/en2025-08-01T09:09:41.699Zdaily1.0https://m2pool.com/en/dataDisplay2025-08-01T09:09:41.699Zweekly0.8https://m2pool.com/en/ServiceTerms2025-08-01T09:09:41.699Zmonthly0.6https://m2pool.com/en/apiFile2025-08-01T09:09:41.699Zweekly0.7https://m2pool.com/en/rate2025-08-01T09:09:41.699Zweekly0.8https://m2pool.com/en/AccessMiningPool/nexaAccess2025-08-01T09:09:41.699Zweekly0.7https://m2pool.com/en/AccessMiningPool/grsAccess2025-08-01T09:09:41.699Zweekly0.7https://m2pool.com/en/AccessMiningPool/monaAccess2025-08-01T09:09:41.699Zweekly0.7https://m2pool.com/en/AccessMiningPool/dgbsAccess2025-08-01T09:09:41.699Zweekly0.7https://m2pool.com/en/AccessMiningPool/dgbqAccess2025-08-01T09:09:41.699Zweekly0.7https://m2pool.com/en/AccessMiningPool/dgboAccess2025-08-01T09:09:41.699Zweekly0.7https://m2pool.com/en/AccessMiningPool/rxdAccess2025-08-01T09:09:41.699Zweekly0.7 \ No newline at end of file +https://m2pool.com/en2025-08-08T09:11:31.988Zdaily1.0https://m2pool.com/en/dataDisplay2025-08-08T09:11:31.988Zweekly0.8https://m2pool.com/en/ServiceTerms2025-08-08T09:11:31.988Zmonthly0.6https://m2pool.com/en/apiFile2025-08-08T09:11:31.988Zweekly0.7https://m2pool.com/en/rate2025-08-08T09:11:31.988Zweekly0.8https://m2pool.com/en/AccessMiningPool/nexaAccess2025-08-08T09:11:31.988Zweekly0.7https://m2pool.com/en/AccessMiningPool/grsAccess2025-08-08T09:11:31.988Zweekly0.7https://m2pool.com/en/AccessMiningPool/monaAccess2025-08-08T09:11:31.988Zweekly0.7https://m2pool.com/en/AccessMiningPool/dgbsAccess2025-08-08T09:11:31.988Zweekly0.7https://m2pool.com/en/AccessMiningPool/dgbqAccess2025-08-08T09:11:31.988Zweekly0.7https://m2pool.com/en/AccessMiningPool/dgboAccess2025-08-08T09:11:31.988Zweekly0.7https://m2pool.com/en/AccessMiningPool/rxdAccess2025-08-08T09:11:31.988Zweekly0.7 \ No newline at end of file diff --git a/mining-pool/test/sitemap-en.xml.gz b/mining-pool/test/sitemap-en.xml.gz index 1066e55..9ccd224 100644 Binary files a/mining-pool/test/sitemap-en.xml.gz and b/mining-pool/test/sitemap-en.xml.gz differ diff --git a/mining-pool/test/sitemap-zh.xml b/mining-pool/test/sitemap-zh.xml index 05bf863..b7f6d01 100644 --- a/mining-pool/test/sitemap-zh.xml +++ b/mining-pool/test/sitemap-zh.xml @@ -1 +1 @@ -https://m2pool.com/zh2025-08-01T09:09:41.687Zdaily0.7https://m2pool.com/zh/dataDisplay2025-08-01T09:09:41.687Zweekly0.7https://m2pool.com/zh/ServiceTerms2025-08-01T09:09:41.687Zmonthly0.7https://m2pool.com/zh/apiFile2025-08-01T09:09:41.687Zweekly0.7https://m2pool.com/zh/rate2025-08-01T09:09:41.687Zweekly0.7https://m2pool.com/zh/AccessMiningPool/nexaAccess2025-08-01T09:09:41.687Zweekly0.7https://m2pool.com/zh/AccessMiningPool/grsAccess2025-08-01T09:09:41.687Zweekly0.7https://m2pool.com/zh/AccessMiningPool/monaAccess2025-08-01T09:09:41.687Zweekly0.7https://m2pool.com/zh/AccessMiningPool/dgbsAccess2025-08-01T09:09:41.687Zweekly0.7https://m2pool.com/zh/AccessMiningPool/dgbqAccess2025-08-01T09:09:41.687Zweekly0.7https://m2pool.com/zh/AccessMiningPool/dgboAccess2025-08-01T09:09:41.687Zweekly0.7https://m2pool.com/zh/AccessMiningPool/rxdAccess2025-08-01T09:09:41.687Zweekly0.7 \ No newline at end of file +https://m2pool.com/zh2025-08-08T09:11:31.977Zdaily0.7https://m2pool.com/zh/dataDisplay2025-08-08T09:11:31.977Zweekly0.7https://m2pool.com/zh/ServiceTerms2025-08-08T09:11:31.978Zmonthly0.7https://m2pool.com/zh/apiFile2025-08-08T09:11:31.978Zweekly0.7https://m2pool.com/zh/rate2025-08-08T09:11:31.978Zweekly0.7https://m2pool.com/zh/AccessMiningPool/nexaAccess2025-08-08T09:11:31.978Zweekly0.7https://m2pool.com/zh/AccessMiningPool/grsAccess2025-08-08T09:11:31.978Zweekly0.7https://m2pool.com/zh/AccessMiningPool/monaAccess2025-08-08T09:11:31.978Zweekly0.7https://m2pool.com/zh/AccessMiningPool/dgbsAccess2025-08-08T09:11:31.978Zweekly0.7https://m2pool.com/zh/AccessMiningPool/dgbqAccess2025-08-08T09:11:31.978Zweekly0.7https://m2pool.com/zh/AccessMiningPool/dgboAccess2025-08-08T09:11:31.978Zweekly0.7https://m2pool.com/zh/AccessMiningPool/rxdAccess2025-08-08T09:11:31.978Zweekly0.7 \ No newline at end of file diff --git a/mining-pool/test/sitemap-zh.xml.gz b/mining-pool/test/sitemap-zh.xml.gz index 19ee5e8..95f6854 100644 Binary files a/mining-pool/test/sitemap-zh.xml.gz and b/mining-pool/test/sitemap-zh.xml.gz differ