lcw
This commit is contained in:
@ -604,3 +604,27 @@ export const unifiedLogin = (data) => {
|
|||||||
data
|
data
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const getSessionForToken = (params) => {
|
||||||
|
return request({
|
||||||
|
url: api + `/getSessionForToken`,
|
||||||
|
method: "GET",
|
||||||
|
params
|
||||||
|
});
|
||||||
|
};
|
||||||
|
// 身份证号登录
|
||||||
|
export const idCardNoLogin = (data) => {
|
||||||
|
return request({
|
||||||
|
url: api + `/idCardNoLogin`,
|
||||||
|
method: "POST",
|
||||||
|
data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// 通过身份证号获取会话信息
|
||||||
|
export const getSessionForSfzh = (params) => {
|
||||||
|
return request({
|
||||||
|
url: api + `/getSessionForSfzh`,
|
||||||
|
method: "GET",
|
||||||
|
params
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|||||||
@ -1,7 +1,8 @@
|
|||||||
<template>
|
<template>
|
||||||
<div :id="mapid" class="map"></div>
|
<div :id="mapid" class="map"></div>
|
||||||
<div class="changeMap_box" v-if="props.isShow">
|
<div class="changeMap_box" v-if="props.isShow">
|
||||||
<el-switch v-model="conditionRoute" @change="handleSwitch" active-text="打开路况" inactive-text="关闭路况" style="--el-switch-color:#13ce66;--el-switch-off-color:#ff4949;" />
|
<el-switch v-model="conditionRoute" @change="handleSwitch" active-text="打开路况" inactive-text="关闭路况"
|
||||||
|
style="--el-switch-color: #13ce66; --el-switch-off-color: #ff4949" />
|
||||||
<!-- <el-carousel type="card" height="75px" :autoplay="false" indicator-position="none" :initial-index="3" @change="onMapImageChange">
|
<!-- <el-carousel type="card" height="75px" :autoplay="false" indicator-position="none" :initial-index="3" @change="onMapImageChange">
|
||||||
<el-carousel-item>
|
<el-carousel-item>
|
||||||
<div class="mapImageItem">
|
<div class="mapImageItem">
|
||||||
@ -30,8 +31,7 @@
|
|||||||
</el-carousel> -->
|
</el-carousel> -->
|
||||||
<!-- 地图缩放 -->
|
<!-- 地图缩放 -->
|
||||||
<div class="zoomTargetBox">
|
<div class="zoomTargetBox">
|
||||||
<el-input-number :min="7" :max="18" v-model="zoomTarget" :step="1" step-strictly @change="handleZoom">
|
<el-input-number :min="7" :max="18" v-model="zoomTarget" :step="1" step-strictly @change="handleZoom"></el-input-number>
|
||||||
</el-input-number>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -74,7 +74,7 @@ const props = defineProps({
|
|||||||
});
|
});
|
||||||
try {
|
try {
|
||||||
const userInfo = getItem("deptId")[0].deptCode;
|
const userInfo = getItem("deptId")[0].deptCode;
|
||||||
} catch (error) {}
|
} catch (error) { }
|
||||||
let map;
|
let map;
|
||||||
let mapLayer;
|
let mapLayer;
|
||||||
let mapLayer1;
|
let mapLayer1;
|
||||||
@ -88,26 +88,19 @@ onMounted(() => {
|
|||||||
|
|
||||||
map = new EliMap({
|
map = new EliMap({
|
||||||
id: props.mapid,
|
id: props.mapid,
|
||||||
crs: "EPSG:3857",
|
crs: "EPSG:4490",
|
||||||
style: {
|
style: {
|
||||||
glyphs: "./fonts/{fontstack}/{range}.pbf",
|
glyphs: "./fonts/{fontstack}/{range}.pbf",
|
||||||
center: [94.36,29.65],
|
center: [94.36057012, 29.64276831],
|
||||||
zoom: 10
|
zoom: 15
|
||||||
},
|
},
|
||||||
transformRequest: (url) => {
|
minZoom: 7,
|
||||||
if (url.indexOf("TileMatrix=") != -1) {
|
maxZoom: 18,
|
||||||
const arr = url.split("TileMatrix=");
|
|
||||||
const arr1 = arr[1].split("&");
|
|
||||||
const nurl = `${arr[0]}&TileMatrix=${Number(arr1[0])}&${arr1[1]}&${arr1[2]}`;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
window.map = map;
|
window.map = map;
|
||||||
map.mapboxGLMap.on("load", () => {
|
map.mapboxGLMap.on("load", () => {
|
||||||
map.addWMTSLayer(
|
map.addWMTSLayer(
|
||||||
"/PGIS_S_TileMapServer/Maps/XZDJ_SL/EzMap"
|
"/PGIS_S_TileMapServer/Maps/XZDJ_DJ/EzMap"
|
||||||
,
|
,
|
||||||
{
|
{
|
||||||
Service: "getImage",
|
Service: "getImage",
|
||||||
@ -179,7 +172,7 @@ onMounted(() => {
|
|||||||
});
|
});
|
||||||
// 回显线
|
// 回显线
|
||||||
emitter.on("echoLine", (res) => {
|
emitter.on("echoLine", (res) => {
|
||||||
mapUtil.value.createLine(res);
|
mapUtil.value.createLine(res, res.flag);
|
||||||
});
|
});
|
||||||
//创建边界面(geojson)
|
//创建边界面(geojson)
|
||||||
emitter.on("setBoundarys", (res) => {
|
emitter.on("setBoundarys", (res) => {
|
||||||
@ -210,11 +203,6 @@ onMounted(() => {
|
|||||||
mapUtil.value.diffusionCircle(res);
|
mapUtil.value.diffusionCircle(res);
|
||||||
});
|
});
|
||||||
|
|
||||||
// 清除全部覆盖物
|
|
||||||
emitter.on("removeElementAll", () => {
|
|
||||||
mapUtil.value.removeElementAll();
|
|
||||||
});
|
|
||||||
|
|
||||||
// 展示盘曲
|
// 展示盘曲
|
||||||
emitter.on("showGapText", (obj) => {
|
emitter.on("showGapText", (obj) => {
|
||||||
mapUtil.value.gapText(obj);
|
mapUtil.value.gapText(obj);
|
||||||
@ -313,7 +301,6 @@ onUnmounted(() => {
|
|||||||
emitter.off("diffusionCircle");
|
emitter.off("diffusionCircle");
|
||||||
emitter.off("SsCircle");
|
emitter.off("SsCircle");
|
||||||
emitter.off("ClearssCircle");
|
emitter.off("ClearssCircle");
|
||||||
emitter.off("removeElementAll");
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@ -336,29 +323,35 @@ onUnmounted(() => {
|
|||||||
right: 398px;
|
right: 398px;
|
||||||
bottom: 4px;
|
bottom: 4px;
|
||||||
z-index: 9;
|
z-index: 9;
|
||||||
|
|
||||||
.mapImageItem {
|
.mapImageItem {
|
||||||
border: 1px solid #08aae8;
|
border: 1px solid #08aae8;
|
||||||
background: rgb(9, 26, 70);
|
background: rgb(9, 26, 70);
|
||||||
& > img {
|
|
||||||
|
&>img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
}
|
}
|
||||||
& > div {
|
|
||||||
|
&>div {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -3px;
|
top: -3px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.zoomTargetBox {
|
.zoomTargetBox {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
margin-left: 23px;
|
margin-left: 23px;
|
||||||
}
|
}
|
||||||
|
|
||||||
::v-deep .el-input-number__decrease,
|
::v-deep .el-input-number__decrease,
|
||||||
::v-deep .el-input-number__increase {
|
::v-deep .el-input-number__increase {
|
||||||
background: #133362;
|
background: #133362;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
::v-deep .el-input__inner {
|
::v-deep .el-input__inner {
|
||||||
background: #0c1641;
|
background: #0c1641;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,7 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
:title="titleValue"
|
:title="titleValue"
|
||||||
:modal="false"
|
|
||||||
width="1400px"
|
width="1400px"
|
||||||
:model-value="modelValue"
|
:model-value="modelValue"
|
||||||
append-to-body
|
append-to-body
|
||||||
|
|||||||
@ -1,7 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
title="导出预览"
|
title="导出预览"
|
||||||
:modal="false"
|
|
||||||
width="1400px"
|
width="1400px"
|
||||||
:model-value="modelValue"
|
:model-value="modelValue"
|
||||||
@close="closed"
|
@close="closed"
|
||||||
@ -86,4 +85,4 @@ function exportExcel() {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-dialog title="修改密码" :modal="false" width="500px" :model-value="modelValue" @close="closed">
|
<el-dialog title="修改密码" width="500px" :model-value="modelValue" @close="closed">
|
||||||
<el-form :model="params" class="editPassword-page">
|
<el-form :model="params" class="editPassword-page">
|
||||||
<el-form-item label="老密码">
|
<el-form-item label="老密码">
|
||||||
<el-input placeholder="请输入老密码" v-model="params.oldPassword"></el-input>
|
<el-input placeholder="请输入老密码" v-model="params.oldPassword"></el-input>
|
||||||
|
|||||||
@ -6,8 +6,11 @@ import {
|
|||||||
getItem,
|
getItem,
|
||||||
removeAllItem
|
removeAllItem
|
||||||
} from "@/utils/storage";
|
} from "@/utils/storage";
|
||||||
|
import {
|
||||||
|
getCookie
|
||||||
|
} from "@/utils/cookie";
|
||||||
// 白名单
|
// 白名单
|
||||||
const whiteList = ['/login', '/oatuh_login', '/404', '/401', '/focusExploration', '/clueVerification', '/deploymentApproval']
|
const whiteList = ['/login', '/oatuh_login', '/404', '/401', '/zeroTrust_login', '/focusExploration', '/clueVerification', '/deploymentApproval']
|
||||||
/**
|
/**
|
||||||
* 路由前置守卫
|
* 路由前置守卫
|
||||||
* to 去哪里
|
* to 去哪里
|
||||||
@ -41,16 +44,22 @@ router.beforeEach(async (to, from, next) => {
|
|||||||
}
|
}
|
||||||
// 利用 addRoute 循环添加
|
// 利用 addRoute 循环添加
|
||||||
} else {
|
} else {
|
||||||
const isOatuh = getItem('isOatuh')
|
|
||||||
// 没有token的情况下,可以进入白名单
|
// 没有token的情况下,可以进入白名单
|
||||||
if (whiteList.indexOf(to.path) > -1) {
|
if (whiteList.indexOf(to.path) > -1) {
|
||||||
next()
|
next()
|
||||||
} else {
|
} else {
|
||||||
if (isOatuh) {
|
const cookie = getCookie("clientKey");
|
||||||
const idEntityCard = getItem('idEntityCard')
|
if (cookie) {
|
||||||
next(`/oatuh_login?token=${Base64.encode(idEntityCard)}`)
|
next(`/zeroTrust_login`)
|
||||||
} else {
|
} else {
|
||||||
next('/login')
|
const isOatuh = getItem('isOatuh')
|
||||||
|
// 没有token的情况下,可以进入白名单
|
||||||
|
if (isOatuh) {
|
||||||
|
const idEntityCard = getItem('idEntityCard')
|
||||||
|
next(`/oatuh_login?token=${Base64.encode(idEntityCard)}`)
|
||||||
|
} else {
|
||||||
|
next('/login')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -21,7 +21,7 @@ export const privateRoutes = [];
|
|||||||
* 公开路由表
|
* 公开路由表
|
||||||
*/
|
*/
|
||||||
export const publicRoutes = [
|
export const publicRoutes = [
|
||||||
{
|
{
|
||||||
path: "/oatuh_login",
|
path: "/oatuh_login",
|
||||||
name: "oatuh_login",
|
name: "oatuh_login",
|
||||||
component: () => import("@/views/login/oatuh_login")
|
component: () => import("@/views/login/oatuh_login")
|
||||||
@ -30,7 +30,18 @@ export const publicRoutes = [
|
|||||||
path: "/oatuh_login",
|
path: "/oatuh_login",
|
||||||
name: "oatuh_login",
|
name: "oatuh_login",
|
||||||
component: () => import("@/views/login/oatuh_login")
|
component: () => import("@/views/login/oatuh_login")
|
||||||
}, {
|
},
|
||||||
|
{
|
||||||
|
path: "/zeroTrust_login",
|
||||||
|
name: "zeroTrust_login",
|
||||||
|
component: () => import("@/views/login/zeroTrust_login")
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: "/sso_redirect",
|
||||||
|
name: "sso_redirect",
|
||||||
|
component: () => import("@/views/login/sso_redirect")
|
||||||
|
},
|
||||||
|
{
|
||||||
path: "/login",
|
path: "/login",
|
||||||
name: "login",
|
name: "login",
|
||||||
component: () => import("@/views/login/index")
|
component: () => import("@/views/login/index")
|
||||||
|
|||||||
61
src/utils/cookie.js
Normal file
61
src/utils/cookie.js
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
/*
|
||||||
|
* 1.设置cookie
|
||||||
|
* @param {string} key - cookie的名称
|
||||||
|
* @param {string} value - cookie的值
|
||||||
|
* @param {number} days - 过期天数,默认7天
|
||||||
|
*/
|
||||||
|
export const setCookie = (key, value, days = 7) => {
|
||||||
|
const date = new Date();
|
||||||
|
date.setTime(date.getTime() + days * 24 * 60 * 60 * 1000);
|
||||||
|
const expires = `expires=${date.toGMTString()}`;
|
||||||
|
document.cookie = `${key}=${encodeURIComponent(value)}; ${expires}; path=/`;
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 2.获取cookie
|
||||||
|
* @param {string} key - cookie的名称
|
||||||
|
* @returns {string|null} - cookie的值,如果不存在则返回null
|
||||||
|
*/
|
||||||
|
export const getCookie = (key) => {
|
||||||
|
const name = `${key}=`;
|
||||||
|
const ca = document.cookie.split(';');
|
||||||
|
for (let i = 0; i < ca.length; i++) {
|
||||||
|
let c = ca[i].trim();
|
||||||
|
if (c.indexOf(name) === 0) {
|
||||||
|
return decodeURIComponent(c.substring(name.length, c.length));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 3.删除指定cookie
|
||||||
|
* @param {string} key - cookie的名称
|
||||||
|
*/
|
||||||
|
export const removeCookie = (key) => {
|
||||||
|
setCookie(key, '', -1);
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 4.删除所有cookie
|
||||||
|
*/
|
||||||
|
export const removeAllCookies = () => {
|
||||||
|
const cookies = document.cookie.split(';');
|
||||||
|
for (let i = 0; i < cookies.length; i++) {
|
||||||
|
const cookie = cookies[i];
|
||||||
|
const eqPos = cookie.indexOf('=');
|
||||||
|
const name = eqPos > -1 ? cookie.substr(0, eqPos).trim() : '';
|
||||||
|
if (name) {
|
||||||
|
removeCookie(name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 5.检查cookie是否存在
|
||||||
|
* @param {string} key - cookie的名称
|
||||||
|
* @returns {boolean} - 是否存在该cookie
|
||||||
|
*/
|
||||||
|
export const hasCookie = (key) => {
|
||||||
|
return getCookie(key) !== null;
|
||||||
|
};
|
||||||
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-dialog title="角色选择" :modal="false" :model-value="modelValue" @close="closed">
|
<el-dialog title="角色选择" :model-value="modelValue" @close="closed">
|
||||||
内容
|
内容
|
||||||
<template #footer>
|
<template #footer>
|
||||||
<div class="dialog-footer">
|
<div class="dialog-footer">
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<el-dialog title="配置角色" :modal="false" :model-value="modelValue" @close="closed">
|
<el-dialog title="配置角色" :model-value="modelValue" @close="closed">
|
||||||
<!-- <el-checkbox-group v-model="userRoleTitleList">
|
<!-- <el-checkbox-group v-model="userRoleTitleList">
|
||||||
<el-checkbox v-for="item in allRoleList" :key="item.id" :label="item.roleName" />
|
<el-checkbox v-for="item in allRoleList" :key="item.id" :label="item.roleName" />
|
||||||
</el-checkbox-group>-->
|
</el-checkbox-group>-->
|
||||||
|
|||||||
@ -2,7 +2,6 @@
|
|||||||
<div>
|
<div>
|
||||||
<el-dialog
|
<el-dialog
|
||||||
title="分配权限"
|
title="分配权限"
|
||||||
:modal="false"
|
|
||||||
width="500px"
|
width="500px"
|
||||||
:model-value="modelValue"
|
:model-value="modelValue"
|
||||||
:destroy-on-close="true"
|
:destroy-on-close="true"
|
||||||
|
|||||||
@ -11,10 +11,10 @@ const loginDialog = ref(false);
|
|||||||
const deptList = ref([]);
|
const deptList = ref([]);
|
||||||
const store = useStore();
|
const store = useStore();
|
||||||
function redirectAuth() {
|
function redirectAuth() {
|
||||||
|
// 从路由参数中获取token
|
||||||
let token = location.hash.slice(20) || null;
|
const route = useRoute();
|
||||||
|
let token = route.query.token || null;
|
||||||
if (token != null) {
|
if (token != null) {
|
||||||
debugger
|
|
||||||
token = token.replace(/\ +/g, "");
|
token = token.replace(/\ +/g, "");
|
||||||
setItem("SSOTOKEN", token)
|
setItem("SSOTOKEN", token)
|
||||||
handleLogin({ token: token});
|
handleLogin({ token: token});
|
||||||
|
|||||||
69
src/views/login/sso_redirect.vue
Normal file
69
src/views/login/sso_redirect.vue
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
<template>
|
||||||
|
<div class="sso-redirect-container">
|
||||||
|
<div class="loading-wrapper">
|
||||||
|
<div class="loading-text">正在跳转...</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { onMounted } from "vue";
|
||||||
|
import { useRoute,useRouter } from "vue-router";
|
||||||
|
import { getItem, setItem } from "@/utils/storage";
|
||||||
|
|
||||||
|
const route = useRoute();
|
||||||
|
const router = useRouter();
|
||||||
|
|
||||||
|
// 获取路由参数url
|
||||||
|
const getUrlParam = () => {
|
||||||
|
return route.query.url || '';
|
||||||
|
};
|
||||||
|
|
||||||
|
// 检查token并进行跳转
|
||||||
|
const checkTokenAndRedirect = () => {
|
||||||
|
// 获取路由参数url
|
||||||
|
const redirectUrl = getUrlParam();
|
||||||
|
|
||||||
|
// 检查localStorage中是否存在token
|
||||||
|
const token = getItem('SSOTOKEN') || getItem('token');
|
||||||
|
|
||||||
|
if (token) {
|
||||||
|
// 如果存在token,直接跳转到url参数指定的地址
|
||||||
|
if (redirectUrl) {
|
||||||
|
router.push(redirectUrl);
|
||||||
|
} else {
|
||||||
|
// 如果没有url参数,跳转到首页
|
||||||
|
router.push("/");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
setItem("FounderUrl", redirectUrl);
|
||||||
|
// 如果不存在token,跳转到SSO登录地址
|
||||||
|
window.location.href = "http://192.168.0.231:8006/mosty-api/mosty-base/fzSsoLogin";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// 页面挂载时执行检查
|
||||||
|
onMounted(() => {
|
||||||
|
checkTokenAndRedirect();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.sso-redirect-container {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
height: 100vh;
|
||||||
|
background-color: #f5f5f5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loading-wrapper {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.loading-text {
|
||||||
|
font-size: 16px;
|
||||||
|
color: #666;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
83
src/views/login/zeroTrust_login.vue
Normal file
83
src/views/login/zeroTrust_login.vue
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
<template></template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { ref, onMounted } from "vue";
|
||||||
|
import { useStore } from "vuex";
|
||||||
|
import { useRouter } from "vue-router";
|
||||||
|
import {
|
||||||
|
getCookie
|
||||||
|
} from "@/utils/cookie";
|
||||||
|
import {
|
||||||
|
setItem
|
||||||
|
} from "@/utils/storage";
|
||||||
|
import { getSessionForSfzh, idCardNoLogin } from "@/api/user-manage";
|
||||||
|
import {
|
||||||
|
setTimeStamp
|
||||||
|
} from "@/utils/auth";
|
||||||
|
const loginDialog = ref(false);
|
||||||
|
const deptList = ref([]);
|
||||||
|
const store = useStore();
|
||||||
|
function redirectAuth() {
|
||||||
|
handleLogin();
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleLogin = (e) => {
|
||||||
|
// 先尝试获取cookie中的clientKey
|
||||||
|
const token = getCookie("clientKey");
|
||||||
|
|
||||||
|
if (token) {
|
||||||
|
// 使用clientKey获取会话信息
|
||||||
|
getSessionForSfzh({ cookie: token }).then((res) => {
|
||||||
|
// 使用获取到的idEntityCard进行免登
|
||||||
|
idCardNoLogin({
|
||||||
|
idCardNo: res
|
||||||
|
}).then((resIdCard) => {
|
||||||
|
// 登录成功后设置token和用户信息到store
|
||||||
|
store.commit("user/setToken", resIdCard.jwtToken);
|
||||||
|
store.commit("user/setDeptList", resIdCard.deptList);
|
||||||
|
store.commit("user/setUserName", resIdCard.userName);
|
||||||
|
store.commit("user/setMenuList", resIdCard.menuList);
|
||||||
|
store.commit("user/setUserInfo", {
|
||||||
|
token: resIdCard.jwtToken,
|
||||||
|
permission: {
|
||||||
|
buttonPermission: ["removeTest", "viewTest"],
|
||||||
|
menus: resIdCard.menuCodeSet
|
||||||
|
},
|
||||||
|
menuList: resIdCard.menuList,
|
||||||
|
deptList: resIdCard.deptList
|
||||||
|
});
|
||||||
|
// 保存用户信息到本地存储
|
||||||
|
setItem("USERNAME", resIdCard.userName);
|
||||||
|
setItem("SFRH", resIdCard.sfrh);
|
||||||
|
setItem("USERID", resIdCard.userId);
|
||||||
|
setItem("menusPermission", resIdCard.menuCodeSet);
|
||||||
|
setItem("idEntityCard", resIdCard.idEntityCard);
|
||||||
|
setItem("deptId", resIdCard.deptList);
|
||||||
|
// 保存登录时间
|
||||||
|
setTimeStamp();
|
||||||
|
// 重定向到首页
|
||||||
|
setTimeout(() => {
|
||||||
|
window.location.hash = "/";
|
||||||
|
}, 1000);
|
||||||
|
}).catch((error) => {
|
||||||
|
console.error("免登失败:", error);
|
||||||
|
// 免登失败时重定向到登录页面
|
||||||
|
// window.location.hash = "/login";
|
||||||
|
});
|
||||||
|
}).catch((error) => {
|
||||||
|
console.error("获取会话信息失败:", error);
|
||||||
|
// 获取会话信息失败时重定向到登录页面
|
||||||
|
// window.location.hash = "/login";
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
console.error("没有找到clientKey cookie");
|
||||||
|
// 没有cookie时重定向到登录页面
|
||||||
|
window.location.hash = "/login";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
onMounted(() => {
|
||||||
|
redirectAuth();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
@ -3,8 +3,8 @@ const path = require("path");
|
|||||||
function resolve(dir) {
|
function resolve(dir) {
|
||||||
return path.join(__dirname, dir);
|
return path.join(__dirname, dir);
|
||||||
}
|
}
|
||||||
// const serverHost = "http://192.168.1.32:8066";
|
const serverHost = "http://47.108.232.77:9537";
|
||||||
const serverHost = "http://192.168.0.231:8006";
|
// const serverHost = "http://192.168.0.231:8006";
|
||||||
module.exports = {
|
module.exports = {
|
||||||
publicPath: "./",
|
publicPath: "./",
|
||||||
outputDir: "zhgj",
|
outputDir: "zhgj",
|
||||||
|
|||||||
738
zhgj/Heatmap_min.js
Normal file
738
zhgj/Heatmap_min.js
Normal file
@ -0,0 +1,738 @@
|
|||||||
|
(function(b, c, a) {
|
||||||
|
c[b] = a()
|
||||||
|
})("h337", this, function() {
|
||||||
|
var c = {
|
||||||
|
defaultRadius: 40,
|
||||||
|
defaultRenderer: "canvas2d",
|
||||||
|
defaultGradient: {
|
||||||
|
0.35: "rgb(0,0,255)",
|
||||||
|
0.45: "rgb(0,255,255)",
|
||||||
|
0.75: "rgb(0,255,0)",
|
||||||
|
0.85: "yellow",
|
||||||
|
1: "rgb(255,0,0)"
|
||||||
|
},
|
||||||
|
defaultMaxOpacity: 1,
|
||||||
|
defaultMinOpacity: 0,
|
||||||
|
defaultBlur: 0.85,
|
||||||
|
defaultXField: "x",
|
||||||
|
defaultYField: "y",
|
||||||
|
defaultValueField: "value",
|
||||||
|
plugins: {}
|
||||||
|
};
|
||||||
|
var g = (function l() {
|
||||||
|
var n = function n(o) {
|
||||||
|
this._coordinator = {};
|
||||||
|
this._data = [];
|
||||||
|
this._radi = [];
|
||||||
|
this._min = 0;
|
||||||
|
this._max = 1;
|
||||||
|
this._xField = o.xField || o.defaultXField;
|
||||||
|
this._yField = o.yField || o.defaultYField;
|
||||||
|
this._valueField = o.valueField || o.defaultValueField;
|
||||||
|
if (o.radius) {
|
||||||
|
this._cfgRadius = o.radius
|
||||||
|
}
|
||||||
|
};
|
||||||
|
var m = c.defaultRadius;
|
||||||
|
n.prototype = {
|
||||||
|
_organiseData: function(o, q) {
|
||||||
|
var u = o[this._xField];
|
||||||
|
var s = o[this._yField];
|
||||||
|
var z = this._radi;
|
||||||
|
var w = this._data;
|
||||||
|
var t = this._max;
|
||||||
|
var p = this._min;
|
||||||
|
var v = o[this._valueField] || 1;
|
||||||
|
var r = o.radius || this._cfgRadius || m;
|
||||||
|
if (!w[u]) {
|
||||||
|
w[u] = [];
|
||||||
|
z[u] = []
|
||||||
|
}
|
||||||
|
if (!w[u][s]) {
|
||||||
|
w[u][s] = v;
|
||||||
|
z[u][s] = r
|
||||||
|
} else {
|
||||||
|
w[u][s] += v
|
||||||
|
}
|
||||||
|
if (w[u][s] > t) {
|
||||||
|
if (!q) {
|
||||||
|
this._max = w[u][s]
|
||||||
|
} else {
|
||||||
|
this.setDataMax(w[u][s])
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
} else {
|
||||||
|
return {
|
||||||
|
x: u,
|
||||||
|
y: s,
|
||||||
|
value: v,
|
||||||
|
radius: r,
|
||||||
|
min: p,
|
||||||
|
max: t
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
_unOrganizeData: function() {
|
||||||
|
var r = [];
|
||||||
|
var q = this._data;
|
||||||
|
var p = this._radi;
|
||||||
|
for (var o in q) {
|
||||||
|
for (var s in q[o]) {
|
||||||
|
r.push({
|
||||||
|
x: o,
|
||||||
|
y: s,
|
||||||
|
radius: p[o][s],
|
||||||
|
value: q[o][s]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
min: this._min,
|
||||||
|
max: this._max,
|
||||||
|
data: r
|
||||||
|
}
|
||||||
|
},
|
||||||
|
_onExtremaChange: function() {
|
||||||
|
this._coordinator.emit("extremachange", {
|
||||||
|
min: this._min,
|
||||||
|
max: this._max
|
||||||
|
})
|
||||||
|
},
|
||||||
|
addData: function() {
|
||||||
|
if (arguments[0].length > 0) {
|
||||||
|
var p = arguments[0];
|
||||||
|
var o = p.length;
|
||||||
|
while (o--) {
|
||||||
|
this.addData.call(this, p[o])
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
var q = this._organiseData(arguments[0], true);
|
||||||
|
if (q) {
|
||||||
|
this._coordinator.emit("renderpartial", {
|
||||||
|
min: this._min,
|
||||||
|
max: this._max,
|
||||||
|
data: [q]
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return this
|
||||||
|
},
|
||||||
|
setData: function(q) {
|
||||||
|
var p = q.data;
|
||||||
|
var r = p.length;
|
||||||
|
this._data = [];
|
||||||
|
this._radi = [];
|
||||||
|
for (var o = 0; o < r; o++) {
|
||||||
|
this._organiseData(p[o], false)
|
||||||
|
}
|
||||||
|
this._max = q.max;
|
||||||
|
this._min = q.min || 0;
|
||||||
|
this._onExtremaChange();
|
||||||
|
this._coordinator.emit("renderall", this._getInternalData());
|
||||||
|
return this
|
||||||
|
},
|
||||||
|
removeData: function() {},
|
||||||
|
setDataMax: function(o) {
|
||||||
|
this._max = o;
|
||||||
|
this._onExtremaChange();
|
||||||
|
this._coordinator.emit("renderall", this._getInternalData());
|
||||||
|
return this
|
||||||
|
},
|
||||||
|
setDataMin: function(o) {
|
||||||
|
this._min = o;
|
||||||
|
this._onExtremaChange();
|
||||||
|
this._coordinator.emit("renderall", this._getInternalData());
|
||||||
|
return this
|
||||||
|
},
|
||||||
|
setCoordinator: function(o) {
|
||||||
|
this._coordinator = o
|
||||||
|
},
|
||||||
|
_getInternalData: function() {
|
||||||
|
return {
|
||||||
|
max: this._max,
|
||||||
|
min: this._min,
|
||||||
|
data: this._data,
|
||||||
|
radi: this._radi
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getData: function() {
|
||||||
|
return this._unOrganizeData()
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return n
|
||||||
|
})();
|
||||||
|
var h = (function j() {
|
||||||
|
var p = function(q) {
|
||||||
|
var s = q.gradient || q.defaultGradient;
|
||||||
|
var v = document.createElement("canvas");
|
||||||
|
var u = v.getContext("2d");
|
||||||
|
v.width = 256;
|
||||||
|
v.height = 1;
|
||||||
|
var t = u.createLinearGradient(0, 0, 256, 1);
|
||||||
|
for (var r in s) {
|
||||||
|
t.addColorStop(r, s[r])
|
||||||
|
}
|
||||||
|
u.fillStyle = t;
|
||||||
|
u.fillRect(0, 0, 256, 1);
|
||||||
|
return u.getImageData(0, 0, 256, 1).data
|
||||||
|
};
|
||||||
|
var o = function(s, t) {
|
||||||
|
var v = document.createElement("canvas");
|
||||||
|
var r = v.getContext("2d");
|
||||||
|
var q = s;
|
||||||
|
var w = s;
|
||||||
|
v.width = v.height = s * 2;
|
||||||
|
if (t == 1) {
|
||||||
|
r.beginPath();
|
||||||
|
r.arc(q, w, s, 0, 2 * Math.PI, false);
|
||||||
|
r.fillStyle = "rgba(0,0,0,1)";
|
||||||
|
r.fill()
|
||||||
|
} else {
|
||||||
|
var u = r.createRadialGradient(q, w, s * t, q, w, s);
|
||||||
|
u.addColorStop(0, "rgba(0,0,0,1)");
|
||||||
|
u.addColorStop(1, "rgba(0,0,0,0)");
|
||||||
|
r.fillStyle = u;
|
||||||
|
r.fillRect(0, 0, 2 * s, 2 * s)
|
||||||
|
}
|
||||||
|
return v
|
||||||
|
};
|
||||||
|
var n = function(u) {
|
||||||
|
var B = [];
|
||||||
|
var t = u.min;
|
||||||
|
var x = u.max;
|
||||||
|
var C = u.radi;
|
||||||
|
var u = u.data;
|
||||||
|
var q = Object.keys(u);
|
||||||
|
var r = q.length;
|
||||||
|
while (r--) {
|
||||||
|
var s = q[r];
|
||||||
|
var y = Object.keys(u[s]);
|
||||||
|
var A = y.length;
|
||||||
|
while (A--) {
|
||||||
|
var w = y[A];
|
||||||
|
var z = u[s][w];
|
||||||
|
var v = C[s][w];
|
||||||
|
B.push({
|
||||||
|
x: s,
|
||||||
|
y: w,
|
||||||
|
value: z,
|
||||||
|
radius: v
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
min: t,
|
||||||
|
max: x,
|
||||||
|
data: B
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
function m(t) {
|
||||||
|
var q = t.element;
|
||||||
|
var u = this.shadowCanvas = document.createElement("canvas");
|
||||||
|
var s = this.canvas = t.canvas || document.createElement("canvas");
|
||||||
|
var r = this._renderBoundaries = [10000, 10000, 0, 0];
|
||||||
|
var v = getComputedStyle(t.element) || {};
|
||||||
|
s.className = "heatmap-canvas";
|
||||||
|
this._width = s.width = u.width = +(v.width.replace(/px/, ""));
|
||||||
|
this._height = s.height = u.height = +(v.height.replace(/px/, ""));
|
||||||
|
this.shadowCtx = u.getContext("2d");
|
||||||
|
this.ctx = s.getContext("2d");
|
||||||
|
s.style.cssText = u.style.cssText = "position:absolute;left:0;top:0;";
|
||||||
|
q.style.position = "relative";
|
||||||
|
q.appendChild(s);
|
||||||
|
this._palette = p(t);
|
||||||
|
this._templates = {};
|
||||||
|
this._setStyles(t)
|
||||||
|
}
|
||||||
|
m.prototype = {
|
||||||
|
renderPartial: function(q) {
|
||||||
|
this._drawAlpha(q);
|
||||||
|
this._colorize()
|
||||||
|
},
|
||||||
|
renderAll: function(q) {
|
||||||
|
this._clear();
|
||||||
|
this._drawAlpha(n(q));
|
||||||
|
this._colorize()
|
||||||
|
},
|
||||||
|
_updateGradient: function(q) {
|
||||||
|
this._palette = p(q)
|
||||||
|
},
|
||||||
|
updateConfig: function(q) {
|
||||||
|
if (q.gradient) {
|
||||||
|
this._updateGradient(q)
|
||||||
|
}
|
||||||
|
this._setStyles(q)
|
||||||
|
},
|
||||||
|
setDimensions: function(r, q) {
|
||||||
|
this._width = r;
|
||||||
|
this._height = q;
|
||||||
|
this.canvas.width = this.shadowCanvas.width = r;
|
||||||
|
this.canvas.height = this.shadowCanvas.height = q
|
||||||
|
},
|
||||||
|
_clear: function() {
|
||||||
|
this.shadowCtx.clearRect(0, 0, this._width, this._height);
|
||||||
|
this.ctx.clearRect(0, 0, this._width, this._height)
|
||||||
|
},
|
||||||
|
_setStyles: function(q) {
|
||||||
|
this._blur = (q.blur == 0) ? 0 : (q.blur || q.defaultBlur);
|
||||||
|
if (q.backgroundColor) {
|
||||||
|
this.canvas.style.backgroundColor = q.backgroundColor
|
||||||
|
}
|
||||||
|
this._opacity = (q.opacity || 0) * 255;
|
||||||
|
this._maxOpacity = (q.maxOpacity || q.defaultMaxOpacity) * 255;
|
||||||
|
this._minOpacity = (q.minOpacity || q.defaultMinOpacity) * 255;
|
||||||
|
this._useGradientOpacity = !!q.useGradientOpacity
|
||||||
|
},
|
||||||
|
_drawAlpha: function(v) {
|
||||||
|
var u = this._min = v.min;
|
||||||
|
var B = this._max = v.max;
|
||||||
|
var v = v.data || [];
|
||||||
|
var s = v.length;
|
||||||
|
var t = 1 - this._blur;
|
||||||
|
while (s--) {
|
||||||
|
var F = v[s];
|
||||||
|
var D = F.x;
|
||||||
|
var A = F.y;
|
||||||
|
var z = F.radius;
|
||||||
|
var E = Math.min(F.value, B);
|
||||||
|
var r = D - z;
|
||||||
|
var q = A - z;
|
||||||
|
var C = this.shadowCtx;
|
||||||
|
var w;
|
||||||
|
if (!this._templates[z]) {
|
||||||
|
this._templates[z] = w = o(z, t)
|
||||||
|
} else {
|
||||||
|
w = this._templates[z]
|
||||||
|
}
|
||||||
|
C.globalAlpha = (E - u) / (B - u);
|
||||||
|
C.drawImage(w, r, q);
|
||||||
|
if (r < this._renderBoundaries[0]) {
|
||||||
|
this._renderBoundaries[0] = r
|
||||||
|
}
|
||||||
|
if (q < this._renderBoundaries[1]) {
|
||||||
|
this._renderBoundaries[1] = q
|
||||||
|
}
|
||||||
|
if (r + 2 * z > this._renderBoundaries[2]) {
|
||||||
|
this._renderBoundaries[2] = r + 2 * z
|
||||||
|
}
|
||||||
|
if (q + 2 * z > this._renderBoundaries[3]) {
|
||||||
|
this._renderBoundaries[3] = q + 2 * z
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
_colorize: function() {
|
||||||
|
var w = this._renderBoundaries[0];
|
||||||
|
var u = this._renderBoundaries[1];
|
||||||
|
var B = this._renderBoundaries[2] - w;
|
||||||
|
var z = this._renderBoundaries[3] - u;
|
||||||
|
var G = this._width;
|
||||||
|
var A = this._height;
|
||||||
|
var r = this._opacity;
|
||||||
|
var I = this._maxOpacity;
|
||||||
|
var C = this._minOpacity;
|
||||||
|
var v = this._useGradientOpacity;
|
||||||
|
if (w < 0) {
|
||||||
|
w = 0
|
||||||
|
}
|
||||||
|
if (u < 0) {
|
||||||
|
u = 0
|
||||||
|
}
|
||||||
|
if (w + B > G) {
|
||||||
|
B = G - w
|
||||||
|
}
|
||||||
|
if (u + z > A) {
|
||||||
|
z = A - u
|
||||||
|
}
|
||||||
|
var J = this.shadowCtx.getImageData(w, u, B, z);
|
||||||
|
var H = J.data;
|
||||||
|
var E = H.length;
|
||||||
|
var F = this._palette;
|
||||||
|
for (var D = 3; D < E; D += 4) {
|
||||||
|
var s = H[D];
|
||||||
|
var t = s * 4;
|
||||||
|
if (!t) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
var q;
|
||||||
|
if (r > 0) {
|
||||||
|
q = r
|
||||||
|
} else {
|
||||||
|
if (s < I) {
|
||||||
|
if (s < C) {
|
||||||
|
q = C
|
||||||
|
} else {
|
||||||
|
q = s
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
q = I
|
||||||
|
}
|
||||||
|
}
|
||||||
|
H[D - 3] = F[t];
|
||||||
|
H[D - 2] = F[t + 1];
|
||||||
|
H[D - 1] = F[t + 2];
|
||||||
|
H[D] = v ? F[t + 3] : q
|
||||||
|
}
|
||||||
|
J.data = H;
|
||||||
|
this.ctx.putImageData(J, w, u);
|
||||||
|
this._renderBoundaries = [1000, 1000, 0, 0]
|
||||||
|
},
|
||||||
|
getValueAt: function(r) {
|
||||||
|
var w;
|
||||||
|
var t = this.shadowCtx;
|
||||||
|
var s = t.getImageData(r.x, r.y, 1, 1);
|
||||||
|
var v = s.data[3];
|
||||||
|
var q = this._max;
|
||||||
|
var u = this._min;
|
||||||
|
w = (Math.abs(q - u) * (v / 255)) >> 0;
|
||||||
|
return w
|
||||||
|
},
|
||||||
|
getDataURL: function() {
|
||||||
|
return this.canvas.toDataURL()
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return m
|
||||||
|
})();
|
||||||
|
var e = (function b() {
|
||||||
|
var m = false;
|
||||||
|
if (c.defaultRenderer === "canvas2d") {
|
||||||
|
m = h
|
||||||
|
}
|
||||||
|
return m
|
||||||
|
})();
|
||||||
|
var i = {
|
||||||
|
merge: function() {
|
||||||
|
var m = {};
|
||||||
|
var n = arguments.length;
|
||||||
|
for (var p = 0; p < n; p++) {
|
||||||
|
var q = arguments[p];
|
||||||
|
for (var o in q) {
|
||||||
|
m[o] = q[o]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return m
|
||||||
|
}
|
||||||
|
};
|
||||||
|
var f = (function k() {
|
||||||
|
var m = (function o() {
|
||||||
|
function q() {
|
||||||
|
this.cStore = {}
|
||||||
|
}
|
||||||
|
q.prototype = {
|
||||||
|
on: function(s, u, r) {
|
||||||
|
var t = this.cStore;
|
||||||
|
if (!t[s]) {
|
||||||
|
t[s] = []
|
||||||
|
}
|
||||||
|
t[s].push((function(v) {
|
||||||
|
return u.call(r, v)
|
||||||
|
}))
|
||||||
|
},
|
||||||
|
emit: function(u, t) {
|
||||||
|
var w = this.cStore;
|
||||||
|
if (w[u]) {
|
||||||
|
var r = w[u].length;
|
||||||
|
for (var s = 0; s < r; s++) {
|
||||||
|
var v = w[u][s];
|
||||||
|
v(t)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return q
|
||||||
|
})();
|
||||||
|
var p = function(r) {
|
||||||
|
var s = r._renderer;
|
||||||
|
var t = r._coordinator;
|
||||||
|
var q = r._store;
|
||||||
|
t.on("renderpartial", s.renderPartial, s);
|
||||||
|
t.on("renderall", s.renderAll, s);
|
||||||
|
t.on("extremachange", function(u) {
|
||||||
|
r._config.onExtremaChange && r._config.onExtremaChange({
|
||||||
|
min: u.min,
|
||||||
|
max: u.max,
|
||||||
|
gradient: r._config.gradient || r._config.defaultGradient
|
||||||
|
})
|
||||||
|
});
|
||||||
|
q.setCoordinator(t)
|
||||||
|
};
|
||||||
|
|
||||||
|
function n() {
|
||||||
|
var q = this._config = i.merge(c, arguments[0] || {});
|
||||||
|
this._coordinator = new m();
|
||||||
|
if (q.plugin) {
|
||||||
|
var s = q.plugin;
|
||||||
|
if (!c.plugins[s]) {
|
||||||
|
throw new Error("Plugin '" + s + "' not found. Maybe it was not registered.")
|
||||||
|
} else {
|
||||||
|
var r = c.plugins[s];
|
||||||
|
this._renderer = new r.renderer(q);
|
||||||
|
this._store = new r.store(q)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this._renderer = new e(q);
|
||||||
|
this._store = new g(q)
|
||||||
|
}
|
||||||
|
p(this)
|
||||||
|
}
|
||||||
|
n.prototype = {
|
||||||
|
addData: function() {
|
||||||
|
this._store.addData.apply(this._store, arguments);
|
||||||
|
return this
|
||||||
|
},
|
||||||
|
removeData: function() {
|
||||||
|
this._store.removeData && this._store.removeData.apply(this._store, arguments);
|
||||||
|
return this
|
||||||
|
},
|
||||||
|
setData: function() {
|
||||||
|
this._store.setData.apply(this._store, arguments);
|
||||||
|
return this
|
||||||
|
},
|
||||||
|
setDataMax: function() {
|
||||||
|
this._store.setDataMax.apply(this._store, arguments);
|
||||||
|
return this
|
||||||
|
},
|
||||||
|
setDataMin: function() {
|
||||||
|
this._store.setDataMin.apply(this._store, arguments);
|
||||||
|
return this
|
||||||
|
},
|
||||||
|
configure: function(q) {
|
||||||
|
this._config = i.merge(this._config, q);
|
||||||
|
this._renderer.updateConfig(this._config);
|
||||||
|
this._coordinator.emit("renderall", this._store._getInternalData());
|
||||||
|
return this
|
||||||
|
},
|
||||||
|
repaint: function() {
|
||||||
|
this._coordinator.emit("renderall", this._store._getInternalData());
|
||||||
|
return this
|
||||||
|
},
|
||||||
|
getData: function() {
|
||||||
|
return this._store.getData()
|
||||||
|
},
|
||||||
|
getDataURL: function() {
|
||||||
|
return this._renderer.getDataURL()
|
||||||
|
},
|
||||||
|
getValueAt: function(q) {
|
||||||
|
if (this._store.getValueAt) {
|
||||||
|
return this._store.getValueAt(q)
|
||||||
|
} else {
|
||||||
|
if (this._renderer.getValueAt) {
|
||||||
|
return this._renderer.getValueAt(q)
|
||||||
|
} else {
|
||||||
|
return null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return n
|
||||||
|
})();
|
||||||
|
var a = {
|
||||||
|
create: function(m) {
|
||||||
|
return new f(m)
|
||||||
|
},
|
||||||
|
register: function(n, m) {
|
||||||
|
c.plugins[n] = m
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return a
|
||||||
|
});
|
||||||
|
var BMapLib = window.BMapLib = BMapLib || {};
|
||||||
|
(function() {
|
||||||
|
var a = BMapLib.HeatmapOverlay = function(c) {
|
||||||
|
this.conf = c;
|
||||||
|
this.conf.visible = c.visible === undefined ? true : c.visible;
|
||||||
|
this.heatmap = null;
|
||||||
|
this.latlngs = [];
|
||||||
|
this.bounds = null
|
||||||
|
};
|
||||||
|
a.prototype = new BMapGL.Overlay();
|
||||||
|
a.prototype.initialize = function(f) {
|
||||||
|
this._map = f;
|
||||||
|
var c = document.createElement("div");
|
||||||
|
c.style.position = "absolute";
|
||||||
|
c.style.top = 0;
|
||||||
|
c.style.left = 0;
|
||||||
|
c.style.border = 0;
|
||||||
|
c.style.width = this._map.getSize().width + "px";
|
||||||
|
c.style.height = this._map.getSize().height + "px";
|
||||||
|
this.conf.element = c;
|
||||||
|
if (!b()) {
|
||||||
|
return c
|
||||||
|
}
|
||||||
|
f.getPanes().floatPane.appendChild(c);
|
||||||
|
this.conf.valueField = this.conf.valueField || "count";
|
||||||
|
this.heatmap = h337.create(this.conf);
|
||||||
|
var e = this;
|
||||||
|
f.addEventListener("resize", function(h) {
|
||||||
|
var g = h.size;
|
||||||
|
c.style.width = g.width + "px";
|
||||||
|
c.style.height = g.height + "px";
|
||||||
|
e.heatmap._renderer.setDimensions(g.width, g.height);
|
||||||
|
e.draw()
|
||||||
|
});
|
||||||
|
this._div = c;
|
||||||
|
return c
|
||||||
|
};
|
||||||
|
a.prototype.draw = function() {
|
||||||
|
if (!b()) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
var k = this._map.getBounds();
|
||||||
|
if (k.equals(this.bounds)) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.bounds = k;
|
||||||
|
var j = this._map.pointToOverlayPixel(k.getNorthEast()),
|
||||||
|
p = this._map.pointToOverlayPixel(k.getSouthWest()),
|
||||||
|
c = j.y,
|
||||||
|
i = p.x,
|
||||||
|
l = p.y - j.y,
|
||||||
|
o = j.x - p.x;
|
||||||
|
this.conf.element.style.left = i + "px";
|
||||||
|
this.conf.element.style.top = c + "px";
|
||||||
|
this.conf.element.style.width = o + "px";
|
||||||
|
this.conf.element.style.height = l + "px";
|
||||||
|
if (this.latlngs.length > 0) {
|
||||||
|
this.heatmap.removeData();
|
||||||
|
var n = this.latlngs.length;
|
||||||
|
d = {
|
||||||
|
max: this.heatmap._store.getData().max,
|
||||||
|
data: []
|
||||||
|
};
|
||||||
|
while (n--) {
|
||||||
|
var f = this.latlngs[n].latlng;
|
||||||
|
if (!k.containsPoint(f)) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
var g = this._map.pointToOverlayPixel(f),
|
||||||
|
i = this._map.pointToOverlayPixel(k.getSouthWest()).x,
|
||||||
|
c = this._map.pointToOverlayPixel(k.getNorthEast()).y,
|
||||||
|
e = new BMapGL.Pixel(g.x - i, g.y - c);
|
||||||
|
var m = this.pixelTransform(e);
|
||||||
|
d.data.push({
|
||||||
|
x: m.x,
|
||||||
|
y: m.y,
|
||||||
|
count: this.latlngs[n].c
|
||||||
|
})
|
||||||
|
}
|
||||||
|
if (this.conf.radiusChangeByZoom) {
|
||||||
|
this.heatmap._store._cfgRadius = this.conf.radiusChangeByZoom(this._map.getZoom())
|
||||||
|
}
|
||||||
|
this.heatmap.setData(d)
|
||||||
|
}
|
||||||
|
};
|
||||||
|
a.prototype.pixelTransform = function(f) {
|
||||||
|
var c = this.heatmap.width,
|
||||||
|
e = this.heatmap.height;
|
||||||
|
while (f.x < 0) {
|
||||||
|
f.x += c
|
||||||
|
}
|
||||||
|
while (f.x > c) {
|
||||||
|
f.x -= c
|
||||||
|
}
|
||||||
|
while (f.y < 0) {
|
||||||
|
f.y += e
|
||||||
|
}
|
||||||
|
while (f.y > e) {
|
||||||
|
f.y -= e
|
||||||
|
}
|
||||||
|
f.x = (f.x >> 0);
|
||||||
|
f.y = (f.y >> 0);
|
||||||
|
return f
|
||||||
|
};
|
||||||
|
a.prototype.setDataSet = function(j) {
|
||||||
|
this.data = j;
|
||||||
|
if (!b()) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
var i = this._map.getBounds();
|
||||||
|
var l = {
|
||||||
|
max: j.max,
|
||||||
|
data: []
|
||||||
|
};
|
||||||
|
var m = j.data,
|
||||||
|
k = m.length;
|
||||||
|
this.latlngs = [];
|
||||||
|
this.heatmap.removeData();
|
||||||
|
if (this.conf.radiusChangeByZoom) {
|
||||||
|
this.heatmap._store._cfgRadius = this.conf.radiusChangeByZoom(this._map.getZoom())
|
||||||
|
}
|
||||||
|
while (k--) {
|
||||||
|
var f = new BMapGL.Point(m[k].lng, m[k].lat);
|
||||||
|
this.latlngs.push({
|
||||||
|
latlng: f,
|
||||||
|
c: m[k].count
|
||||||
|
});
|
||||||
|
if (!i.containsPoint(f)) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
var g = this._map.pointToOverlayPixel(f),
|
||||||
|
h = this._map.pointToOverlayPixel(i.getSouthWest()).x,
|
||||||
|
c = this._map.pointToOverlayPixel(i.getNorthEast()).y,
|
||||||
|
e = new BMapGL.Pixel(g.x - h, g.y - c);
|
||||||
|
var n = this.pixelTransform(e);
|
||||||
|
l.data.push({
|
||||||
|
x: n.x,
|
||||||
|
y: n.y,
|
||||||
|
count: m[k].count
|
||||||
|
})
|
||||||
|
}
|
||||||
|
this.heatmap.setData(l)
|
||||||
|
};
|
||||||
|
a.prototype.addDataPoint = function(e, g, f) {
|
||||||
|
if (!b()) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if (this.data && this.data.data) {
|
||||||
|
this.data.data.push({
|
||||||
|
lng: e,
|
||||||
|
lat: g,
|
||||||
|
count: f
|
||||||
|
})
|
||||||
|
}
|
||||||
|
var h = new BMapGL.Point(e, g),
|
||||||
|
c = this.pixelTransform(this._map.pointToOverlayPixel(h));
|
||||||
|
this.heatmap.store.addDataPoint(c.x, c.y, f);
|
||||||
|
this.latlngs.push({
|
||||||
|
latlng: h,
|
||||||
|
c: f
|
||||||
|
})
|
||||||
|
};
|
||||||
|
a.prototype.toggle = function() {
|
||||||
|
if (!b()) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if (this.conf.visible === true) {
|
||||||
|
this.conf.visible = false
|
||||||
|
} else {
|
||||||
|
this.conf.visible = true
|
||||||
|
}
|
||||||
|
if (this.conf.visible) {
|
||||||
|
this.conf.element.style.display = "block"
|
||||||
|
} else {
|
||||||
|
this.conf.element.style.display = "none"
|
||||||
|
}
|
||||||
|
};
|
||||||
|
a.prototype.setOptions = function(c) {
|
||||||
|
if (!b()) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
for (var e in c) {
|
||||||
|
if (e == "radius") {
|
||||||
|
this.heatmap._store._cfgRadius = c[e]
|
||||||
|
}
|
||||||
|
if (e == "opacity") {
|
||||||
|
c[e] = c[e] / 100
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.heatmap.configure(c);
|
||||||
|
if (this.data) {
|
||||||
|
this.setDataSet(this.data)
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
function b() {
|
||||||
|
var c = document.createElement("canvas");
|
||||||
|
return !!(c.getContext && c.getContext("2d"))
|
||||||
|
}
|
||||||
|
})();
|
||||||
BIN
zhgj/favicon.ico
Normal file
BIN
zhgj/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.4 KiB |
BIN
zhgj/fonts/Arial Regular/0-255.pbf
Normal file
BIN
zhgj/fonts/Arial Regular/0-255.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/0-255.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/0-255.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/1024-1279.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/1024-1279.pbf
Normal file
Binary file not shown.
3
zhgj/fonts/Microsoft YaHei/10240-10495.pbf
Normal file
3
zhgj/fonts/Microsoft YaHei/10240-10495.pbf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Microsoft YaHei10240-10495
|
||||||
3
zhgj/fonts/Microsoft YaHei/10496-10751.pbf
Normal file
3
zhgj/fonts/Microsoft YaHei/10496-10751.pbf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Microsoft YaHei10496-10751
|
||||||
3
zhgj/fonts/Microsoft YaHei/10752-11007.pbf
Normal file
3
zhgj/fonts/Microsoft YaHei/10752-11007.pbf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Microsoft YaHei10752-11007
|
||||||
3
zhgj/fonts/Microsoft YaHei/11008-11263.pbf
Normal file
3
zhgj/fonts/Microsoft YaHei/11008-11263.pbf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Microsoft YaHei11008-11263
|
||||||
3
zhgj/fonts/Microsoft YaHei/11264-11519.pbf
Normal file
3
zhgj/fonts/Microsoft YaHei/11264-11519.pbf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Microsoft YaHei11264-11519
|
||||||
3
zhgj/fonts/Microsoft YaHei/11520-11775.pbf
Normal file
3
zhgj/fonts/Microsoft YaHei/11520-11775.pbf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Microsoft YaHei11520-11775
|
||||||
BIN
zhgj/fonts/Microsoft YaHei/11776-12031.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/11776-12031.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/12032-12287.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/12032-12287.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/12288-12543.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/12288-12543.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/12544-12799.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/12544-12799.pbf
Normal file
Binary file not shown.
3
zhgj/fonts/Microsoft YaHei/1280-1535.pbf
Normal file
3
zhgj/fonts/Microsoft YaHei/1280-1535.pbf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Microsoft YaHei 1280-1535
|
||||||
BIN
zhgj/fonts/Microsoft YaHei/12800-13055.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/12800-13055.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/13056-13311.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/13056-13311.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/13312-13567.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/13312-13567.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/13568-13823.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/13568-13823.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/13824-14079.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/13824-14079.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/14080-14335.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/14080-14335.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/14336-14591.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/14336-14591.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/14592-14847.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/14592-14847.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/14848-15103.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/14848-15103.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/15104-15359.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/15104-15359.pbf
Normal file
Binary file not shown.
3
zhgj/fonts/Microsoft YaHei/1536-1791.pbf
Normal file
3
zhgj/fonts/Microsoft YaHei/1536-1791.pbf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Microsoft YaHei 1536-1791
|
||||||
BIN
zhgj/fonts/Microsoft YaHei/15360-15615.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/15360-15615.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/15616-15871.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/15616-15871.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/15872-16127.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/15872-16127.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/16128-16383.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/16128-16383.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/16384-16639.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/16384-16639.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/16640-16895.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/16640-16895.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/16896-17151.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/16896-17151.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/17152-17407.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/17152-17407.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/17408-17663.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/17408-17663.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/17664-17919.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/17664-17919.pbf
Normal file
Binary file not shown.
3
zhgj/fonts/Microsoft YaHei/1792-2047.pbf
Normal file
3
zhgj/fonts/Microsoft YaHei/1792-2047.pbf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Microsoft YaHei 1792-2047
|
||||||
BIN
zhgj/fonts/Microsoft YaHei/17920-18175.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/17920-18175.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/18176-18431.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/18176-18431.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/18432-18687.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/18432-18687.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/18688-18943.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/18688-18943.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/18944-19199.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/18944-19199.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/19200-19455.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/19200-19455.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/19456-19711.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/19456-19711.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/19712-19967.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/19712-19967.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/19968-20223.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/19968-20223.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/20224-20479.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/20224-20479.pbf
Normal file
Binary file not shown.
3
zhgj/fonts/Microsoft YaHei/2048-2303.pbf
Normal file
3
zhgj/fonts/Microsoft YaHei/2048-2303.pbf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Microsoft YaHei 2048-2303
|
||||||
BIN
zhgj/fonts/Microsoft YaHei/20480-20735.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/20480-20735.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/20736-20991.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/20736-20991.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/20992-21247.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/20992-21247.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/21248-21503.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/21248-21503.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/21504-21759.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/21504-21759.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/21760-22015.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/21760-22015.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/22016-22271.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/22016-22271.pbf
Normal file
Binary file not shown.
130
zhgj/fonts/Microsoft YaHei/22272-22527.pbf
Normal file
130
zhgj/fonts/Microsoft YaHei/22272-22527.pbf
Normal file
File diff suppressed because one or more lines are too long
BIN
zhgj/fonts/Microsoft YaHei/22528-22783.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/22528-22783.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/22784-23039.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/22784-23039.pbf
Normal file
Binary file not shown.
3
zhgj/fonts/Microsoft YaHei/2304-2559.pbf
Normal file
3
zhgj/fonts/Microsoft YaHei/2304-2559.pbf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Microsoft YaHei 2304-2559
|
||||||
BIN
zhgj/fonts/Microsoft YaHei/23040-23295.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/23040-23295.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/23296-23551.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/23296-23551.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/23552-23807.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/23552-23807.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/23808-24063.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/23808-24063.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/24064-24319.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/24064-24319.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/24320-24575.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/24320-24575.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/24576-24831.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/24576-24831.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/24832-25087.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/24832-25087.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/25088-25343.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/25088-25343.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/25344-25599.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/25344-25599.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/256-511.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/256-511.pbf
Normal file
Binary file not shown.
3
zhgj/fonts/Microsoft YaHei/2560-2815.pbf
Normal file
3
zhgj/fonts/Microsoft YaHei/2560-2815.pbf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Microsoft YaHei 2560-2815
|
||||||
BIN
zhgj/fonts/Microsoft YaHei/25600-25855.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/25600-25855.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/25856-26111.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/25856-26111.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/26112-26367.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/26112-26367.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/26368-26623.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/26368-26623.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/26624-26879.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/26624-26879.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/26880-27135.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/26880-27135.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/27136-27391.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/27136-27391.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/27392-27647.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/27392-27647.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/27648-27903.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/27648-27903.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/27904-28159.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/27904-28159.pbf
Normal file
Binary file not shown.
3
zhgj/fonts/Microsoft YaHei/2816-3071.pbf
Normal file
3
zhgj/fonts/Microsoft YaHei/2816-3071.pbf
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
|
Microsoft YaHei 2816-3071
|
||||||
BIN
zhgj/fonts/Microsoft YaHei/28160-28415.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/28160-28415.pbf
Normal file
Binary file not shown.
BIN
zhgj/fonts/Microsoft YaHei/28416-28671.pbf
Normal file
BIN
zhgj/fonts/Microsoft YaHei/28416-28671.pbf
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user