1.目录 /public/themes/clientarea/userCenter/servicedetail/example.tpl
<!-- 登录信息 -->
{if $Detail.host_data.domainstatus == 'Active'}
<div class="sky-card instanceInformation mirrorInformation sky-flex-100">
<div class="d-flex justify-content-between align-items-center mb-3">
<h1 class="sky-title mb-0"> {$Lang.loginInformation}</h1>
<!-- ============================这里是复制全部按钮代码-->
<button type="button" class="btn btn-primary btn-sm" onclick="copyAllLoginInfo()" style="white-space: nowrap;">
<i class="bx bx-copy"></i> {$Lang.copy_all}
<!-- ===========================================-->
</button>
</div>
2.目录/public/themes/clientarea/userCenter/language/chinese.php
最底下添加这几句代码
$_LANG['copy_all'] = '复制全部';
$_LANG['copy_succeeded'] = '复制成功';
$_LANG['copy_failed'] = '复制失败';
3.目录 /public/themes/clientarea/userCenter/language/english.php
最底下添加这几句代码
$_LANG['copy_all'] = 'Copy All';
$_LANG['copy_succeeded'] = 'Copy succeeded';
$_LANG['copy_failed'] = 'Copy failed';
搞定
