feat: 移除el-tabs,概要+操作日志+客服关怀合并为单页面
All checks were successful
continuous-integration/drone/push Build is passing

- account.php: el-tab-pane改为普通div平铺
- account.js: handleClick改为同时加载所有板块数据
- account.css: 操作日志/客服关怀加独立卡片样式
- 隐藏el-tabs导航头
This commit is contained in:
yiqiu
2026-03-22 11:48:14 +08:00
parent b8a98f4c4e
commit 02e6cbf6bb
3 changed files with 38 additions and 13 deletions

View File

@@ -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();
}
},