logdump.html 1.6 KB
<div class="wrapTitle ng-scope">
    <span>
        日志地址
        <help-tip class="help" name="日志地址"></help-tip>
    </span>
</div>
<div>
    <div class="smartlabel mt20 toblock" ng-if="isSuper || isManage">
        自动生成日志 <div class="onOffBtn" ng-class="{'on':appInstance.regedbutton == true}" ng-click="onOff()"></div>
    </div>
    <div class="tableList mt10">
        <table>
            <tr>
                <th ng-repeat="title in addrList.name track by $index">{{title}}</th>
                <th>操作</th>
            </tr>
            <tr ng-repeat="info in addrList.val track by $index">
                <td ng-repeat="col in addrList.columnkey track by $index" data-clipboard-text="{{info[col]}}"  ng-class="{'ckhand':$index>0,'copyBtn':$index==1}">{{info[col]}}</td>
                <td class="formOper">
                    <a class="formBtn" ng-click="downFile(info.type)" ng-if="appInstance.regedbutton==true">下载</a>
                    <a class="formBtn" ng-click="downTips()" ng-if="appInstance.regedbutton!=true">下载</a>
                </td>
            </tr>
        </table>
        <input type="text" id="copyipt" style="opacity: 0;">
    </div>
    <dl class="tipsList">
        <dt>提取日志说明</dt>
        <ol>
            <li>打开自动生成日志【开关】。</li>
            <li>直接点击复制对应类型的日志地址,发送请求即可下载。 </li>
            <li>服务器每天上午10点以后,可以请求热云的服务器下载前一天的数据。</li>
            <li>目前仅支持导出昨日数据。</li>
        </ol>
    </dl>
</div>