Simple Linux Panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mdserver-web/plugins/webstats/index.html

221 lines
4.0 KiB

3 years ago
<style type="text/css">
.ws_setting {
margin: 15px 0;
}
3 years ago
.overflow_hide {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block;
vertical-align: middle;
}
3 years ago
.cur {
background-color: #20a53a;
color: #fff;
3 years ago
}
3 years ago
.divpre {
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 1.42857143;
color: #333;
word-break: break-all;
word-wrap: break-word;
background-color: #f6f6f6;
border: 1px solid #ddd;
border-radius: 4px;
max-height: 100px;
overflow: auto;
}
.share_num {
background-color: #ff7e0e;
box-sizing: border-box;
height: 25px;
display: inline-block;
vertical-align: bottom;
}
3 years ago
.form-control{
border-radius: 0px;
3 years ago
}
3 years ago
3 years ago
.overview_list{
background-color: #FAFAFA;
border: #ddd 1px solid;
width: 100%;
font-size: 0;
color: #78797D;
}
.overview_list .overview_box{
width: 14.2%;
display: inline-block;
font-size: 12px;
padding: 15px 0 15px 15px;
vertical-align: top;
}
.overview_list .w_p20{
width: 20%;
}
3 years ago
.overview_list .ov_num{
3 years ago
font-size: 14px;
3 years ago
margin-top: 7px;
color: #333;
}
.indicators {
margin-top: 15px;
position: relative;
}
.indicators-container {
padding: 5px;
}
.indicators-container>span {
color: #787a7d;
margin-right: 10px;
}
.indicators-label {
display: inline-block;
width: 95px;
height: 26px;
line-height: 26px;
cursor: pointer;
}
.indicators-label input {
height: 13px;
margin: 0 5px 0 0;
vertical-align: -2px;
}
3 years ago
.ws_tips {
color: #777;
margin-left: -10px;
vertical-align: middle;
}
.tips {
border: 1px solid #cbcbcb;
border-radius: 8px;
color: #cbcbcb;
cursor: pointer;
display: inline-block;
font-family: arial;
font-size: 12px;
font-style: normal;
height: 14px;
line-height: 14px;
margin-left: 5px;
text-align: center;
width: 14px;
}
3 years ago
.ws_setting .ws_title {
display: inline-block;
width: 100px;
vertical-align: top;
margin: 6px 15px 0 0;
}
.ws_setting .ws_content{
display: inline-block;
}
.ws_setting .ws_content div {
display: inline-block;
}
.ws_setting .ws_content .choose_title {
width: 110px;
}
.ws_setting .ws_content .bt-input-text {
height: 26px;
}
.ws_setting .tab-nav {
margin-bottom: 10px;
}
.ws_setting .ws_content textarea {
border-color: #ddd;
display: block;
margin-top: 10px;
margin-left: -10px;
font-size: 13px;
resize: none;
}
.ws_setting .ws_content .item-line {
display: block;
padding-bottom: 10px;
}
.dash_line{
margin-top: 15px;
padding-top: 15px;
border-top:#ccc 1px dashed;
}
3 years ago
#spider_left_total {
width: 150px;
display: inline-block;
text-align: center;
background-color: #FAFAFA;
border: #ddd 1px solid;
color: #78797D;
vertical-align: top;
}
#spider_left_total .total_num_box {
padding: 50px 0;
}
3 years ago
</style>
3 years ago
<div class="bt-form">
<div class="bt-w-main">
<div class="bt-w-menu">
<p class="bgw" onclick="pluginService('webstats');">服务</p>
3 years ago
<p onclick="wsOverview();">概览</p>
3 years ago
<p onclick="wsSitesList();">网站列表</p>
3 years ago
<p onclick="wsSpiderStat();">蜘蛛统计</p>
3 years ago
<p onclick="wsClientStat();">客服端统计</p>
<p onclick="wsIpStat();">IP统计</p>
<p onclick="wsUriStat();">URI统计</p>
3 years ago
<p onclick="wsSitesErrorLog();">错误日志</p>
3 years ago
<p onclick="wsSitesLog();">网站日志</p>
3 years ago
<p onclick="wsGlobalSetting();">全局设置</p>
3 years ago
</div>
3 years ago
<div class="bt-w-con pd15" style="height: 550px; overflow: auto;">
3 years ago
<div class="soft-man-con"></div>
</div>
</div>
</div>
<script type="text/javascript">
resetPluginWinWidth(950);
3 years ago
$.getScript( "/static/js/echarts.min.js", function(){
console.log("echarts load done");
});
3 years ago
$.getScript( "/plugins/file?name=webstats&f=js/stats.js", function(){
pluginService('webstats');
});
3 years ago
$.getScript( "/plugins/file?name=webstats&f=js/setting.js", function(){
3 years ago
console.log("webstats setting load done");
3 years ago
});
3 years ago
</script>