mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
78 lines
2.0 KiB
JavaScript
78 lines
2.0 KiB
JavaScript
/*
|
|
* @Author: yubaolee <yubaolee@163.com> | ahfu~ <954478625@qq.com>
|
|
* @Date: 2023-12-25 14:43:53
|
|
* @LastEditTime: 2024-12-03 14:00:32
|
|
* @Description:
|
|
* Copyright (c) 2024 by yubaolee | ahfu~ , All Rights Reserved.
|
|
*/
|
|
layui.config({
|
|
base : "/js/"
|
|
}).use(['form','element','layer','jquery'],function(){
|
|
var form = layui.form,
|
|
layer = parent.layer === undefined ? layui.layer : parent.layer,
|
|
element = layui.element,
|
|
$ = layui.jquery;
|
|
|
|
$(".panel a").on("click",function(){
|
|
window.parent.addTab($(this));
|
|
})
|
|
|
|
|
|
//用户数
|
|
$.getJSON("/UserManager/Load?limit=1&page=1",
|
|
function(data){
|
|
$(".userAll span").text(data.count);
|
|
}
|
|
)
|
|
|
|
//机构
|
|
$.getJSON("/UserSession/GetOrgs",
|
|
function (data) {
|
|
$(".orgs span").text(data.Result.length);
|
|
}
|
|
)
|
|
|
|
//角色
|
|
$.getJSON("/RoleManager/Load",
|
|
function (data) {
|
|
$(".roles span").text(data.Result.length);
|
|
}
|
|
)
|
|
|
|
//我的流程
|
|
$.getJSON("/Flowinstances/Load?limit=1&page=1",
|
|
function (data) {
|
|
$(".flows span").text(data.count);
|
|
}
|
|
)
|
|
|
|
//流程模板
|
|
$.getJSON("/flowschemes/Load?limit=1&page=1",
|
|
function (data) {
|
|
$(".flowschemes span").text(data.count);
|
|
}
|
|
)
|
|
|
|
//表单
|
|
$.getJSON("/Forms/Load?limit=1&page=1",
|
|
function (data) {
|
|
$(".forms span").text(data.count);
|
|
}
|
|
)
|
|
|
|
//数字格式化
|
|
$(".panel span").each(function(){
|
|
$(this).html($(this).text()>9999 ? ($(this).text()/10000).toFixed(2) + "<em>万</em>" : $(this).text());
|
|
})
|
|
|
|
//系统基本参数
|
|
$(".version").text("v6.5"); //当前版本
|
|
$(".author").text("yubaolee"); //开发作者
|
|
$(".homePage").text("/Home/Index"); //网站首页
|
|
$(".server").text("centos docker"); //服务器环境
|
|
$(".dataBase").text("mysql 5.7"); //数据库版本
|
|
$(".maxUpload").text("100M"); //最大上传限制
|
|
$(".userRights").text("管理员");//当前用户权限
|
|
|
|
})
|