diff --git a/clientarea/hgcloud/account.php b/clientarea/hgcloud/account.php index eb3c87a..521baca 100644 --- a/clientarea/hgcloud/account.php +++ b/clientarea/hgcloud/account.php @@ -23,8 +23,8 @@
{{lang.account_title1}}
- - + +
@@ -312,9 +312,10 @@ {{lang.account_btn1}}
- - - +
+ +
+
{{lang.account_menu2}}
- - +
+ +
+
{{lang.subaccount_text56}}
- - +
diff --git a/clientarea/hgcloud/css/account.css b/clientarea/hgcloud/css/account.css index 80cc7fa..fb10ee1 100644 --- a/clientarea/hgcloud/css/account.css +++ b/clientarea/hgcloud/css/account.css @@ -132,6 +132,27 @@ .account > .el-row { margin-top: 0.2rem; } +#account .log-section, +#account .care-section { + background: #FFFFFF; + border-radius: 10px; + outline: 1px solid #E5E7EB; + padding: 0.16rem 0.2rem 0.2rem; + margin-top: 0.16rem; +} +#account .section-title { + border-left: 3px solid var(--color-primary); + padding-left: 0.1rem; + font-size: 0.16rem; + line-height: 0.16rem; + font-weight: 600; + color: #1F2937; + margin-bottom: 0.12rem; +} +/* 隐藏 el-tabs 导航头(已不需要) */ +#account .el-tabs__header { + display: none; +} .wx-switch { margin-top: 0.2rem; } diff --git a/clientarea/hgcloud/js/account.js b/clientarea/hgcloud/js/account.js index d94e620..16b9a75 100644 --- a/clientarea/hgcloud/js/account.js +++ b/clientarea/hgcloud/js/account.js @@ -396,13 +396,15 @@ return isShow; } }, - // tab 切换 + // 加载所有板块数据(不再分 tab 切换) handleClick() { - if (this.activeIndex === "1") { + if (this.showAccountController) { this.getAccount(); - } else if (this.activeIndex === "2") { + } + if (this.showLogController) { this.getAccountList(); - } else if (this.activeIndex === "3") { + } + if (this.havePlugin('ClientCare')) { this.getMsgList(); } },