初始提交
This commit is contained in:
132
public/EzMapFile/EzMapAPI.js
Normal file
132
public/EzMapFile/EzMapAPI.js
Normal file
@ -0,0 +1,132 @@
|
||||
/*
|
||||
|------------------------------------------------------------------------------
|
||||
| EzMapAPI.js
|
||||
|
|
||||
|@author: qianleyi
|
||||
|@date: 2015-11-27
|
||||
|@descript: 基础地图初始化配置设置
|
||||
|------------------------------------------------------------------------------
|
||||
*/
|
||||
//需要配置客户端ezserverclient服务地址
|
||||
//var serviceUrl='http://172.18.116.167:8089/dist';
|
||||
var serviceUrl = 'http://www.pgis.sc/EzServerClientV8';
|
||||
var ezMap = {
|
||||
/**
|
||||
* 二维数组:可以插入多个图层对象
|
||||
* 参数说明:[]表示图层组,数组中[i][0]表示图层名,[i][1]表示图层的URL,[i][2]表示图层的参数设置
|
||||
* 参数类型:Array
|
||||
* 取值范围:无限制
|
||||
* 默认值:无
|
||||
*/
|
||||
MapSrcURL: [
|
||||
/** 最上层图层 */
|
||||
//-------------------------------------
|
||||
//Geog2010 格式模板
|
||||
// ["公司2010格式地图(大地坐标投影)", "http://172.25.18.16:8081/EzServer7/Maps/Blue", {
|
||||
// crs: '4326',
|
||||
// imageSRC: '../images/shiliang.png',
|
||||
// token:'042b53ff99f44acda0f7e667cf03a95b'
|
||||
// }],
|
||||
//-------------------------------------
|
||||
//GeogTdt 格式模板
|
||||
// ["天地图格式(大地坐标投影)", "http://172.18.68.248:8080/Server7/Maps/D_441900DG", {
|
||||
// crs: '4326',
|
||||
// wrapX: false,
|
||||
// imageSRC: 'http://172.18.71.80:8080/images/shiliang.png',
|
||||
// key: 'text'
|
||||
// }],
|
||||
|
||||
["SL", "http://t3.tianditu.gov.cn/DataServer?T=vec_c&tk=cefabab8748698548c1eb238d4dd0c16&x={x}&y={y}&l={z}", {
|
||||
crs: '4326',
|
||||
imageSRC: 'http://www.pgis.sc/EzServerClientV8/images/shiliang.png',
|
||||
token: '042b53ff99f44acda0f7e667cf03a95b'
|
||||
}]
|
||||
|
||||
],
|
||||
|
||||
/**
|
||||
* 参数说明:设置地图初始化中心位置
|
||||
* 参数类型:Array<Float,Float>
|
||||
* 取值范围:无限制
|
||||
* 默认值:无
|
||||
*/
|
||||
CenterPoint: [104.75425466, 31.45795226],
|
||||
/**
|
||||
* 参数说明:设置全图显示时地图显示范围
|
||||
* 参数类型:[minx,miny,maxx,maxy]
|
||||
* 取值范围:无限制
|
||||
* 默认值:无
|
||||
*/
|
||||
MapFullExtent: undefined,
|
||||
//MapFullExtent: [99.60617,24.96368,100.746,26.1914],
|
||||
|
||||
/**
|
||||
* 参数说明:设置地图初始显示级别
|
||||
* 参数类型:Int
|
||||
* 取值范围:无限制
|
||||
* 默认值:无
|
||||
*/
|
||||
MapInitLevel: 1,
|
||||
//MapInitLevel: 12,
|
||||
|
||||
/**
|
||||
* 参数说明:设置地图显示的最大级别
|
||||
* 参数类型:Int
|
||||
* 取值范围:无限制
|
||||
* 默认值:无
|
||||
*/
|
||||
MapMaxLevel: 20,
|
||||
|
||||
/**
|
||||
* 参数说明:设置地图显示的最小级别
|
||||
* 参数类型:Int
|
||||
* 取值范围:无限制
|
||||
* 默认值:无
|
||||
*/
|
||||
MapMinLevel: 1,
|
||||
|
||||
/**
|
||||
* 参数说明:是否添加地图级别控制条hover样式
|
||||
* 参数类型:Boolean
|
||||
* 取值范围:无限制
|
||||
* 默认值:无
|
||||
*/
|
||||
isTitleArea: true,
|
||||
|
||||
/**
|
||||
* 参数说明:Animation 瓦片是否提前加载
|
||||
* 参数类型:Boolean
|
||||
* 取值范围:无限制
|
||||
* 默认值:false
|
||||
*/
|
||||
loadTilesWhileAnimating: false
|
||||
};
|
||||
|
||||
(function (ezMap) {
|
||||
var scriptName = "EzMapAPI\\.js";
|
||||
var keyWord = "key";
|
||||
|
||||
(function (ezMap) {
|
||||
var isOL = new RegExp("(^|(.*?\\/))(" + scriptName + ")(\\?|$)");
|
||||
var scripts = document.getElementsByTagName('script');
|
||||
for (var i = 0, len = scripts.length; i < len; i++) {
|
||||
var src = scripts[i].getAttribute('src');
|
||||
if (src) {
|
||||
var match = src.match(isOL);
|
||||
if (match) {
|
||||
var key = src.indexOf(keyWord + "=");
|
||||
if (key == -1) {
|
||||
break;
|
||||
}
|
||||
var get_par = src.slice(keyWord.length + key + 1);
|
||||
var nextPar = get_par.indexOf("&");
|
||||
if (nextPar != -1) {
|
||||
get_par = get_par.slice(0, nextPar);
|
||||
}
|
||||
ezMap.AuthorKey = get_par;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
})(ezMap);
|
||||
})(ezMap);
|
1
public/EzMapFile/EzServerClient.min.css
vendored
Normal file
1
public/EzMapFile/EzServerClient.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
54260
public/EzMapFile/EzServerClient.min.js
vendored
Normal file
54260
public/EzMapFile/EzServerClient.min.js
vendored
Normal file
File diff suppressed because it is too large
Load Diff
56
public/EzMapFile/popup.css
Normal file
56
public/EzMapFile/popup.css
Normal file
@ -0,0 +1,56 @@
|
||||
.ez-popup {
|
||||
display: none;
|
||||
min-width: 170px;
|
||||
max-width: 200px;
|
||||
position: relative;
|
||||
background: #FFFFFF;
|
||||
border: 1px solid #FFFFFF;
|
||||
border-radius: 5px;
|
||||
-webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
|
||||
filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.ez-popup:after,
|
||||
.ez-popup:before {
|
||||
top: 100%;
|
||||
left: 50%;
|
||||
border: solid transparent;
|
||||
content: " ";
|
||||
height: 0;
|
||||
width: 0;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.ez-popup:after {
|
||||
border-color: rgba(255, 255, 255, 0);
|
||||
border-top-color: #FFFFFF;
|
||||
border-width: 10px;
|
||||
margin-left: -10px;
|
||||
}
|
||||
|
||||
.ez-popup:before {
|
||||
border-color: rgba(255, 255, 255, 0);
|
||||
border-top-color: #FFFFFF;
|
||||
border-width: 10px;
|
||||
margin-left: -10px;
|
||||
}
|
||||
|
||||
.ez-popup-closer {
|
||||
text-decoration: none;
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
right: 8px;
|
||||
}
|
||||
|
||||
.ez-popup-closer:after {
|
||||
content: "✖";
|
||||
}
|
||||
|
||||
.ez-popup-content {
|
||||
text-align: center;
|
||||
font-family: 微软雅黑, 宋体;
|
||||
font-size: 15px;
|
||||
line-height: 15px;
|
||||
}
|
112
public/android.js
Normal file
112
public/android.js
Normal file
@ -0,0 +1,112 @@
|
||||
var jd = "104.41361653448905";
|
||||
var wd = "31.127827898122767";
|
||||
var address = "德阳市公安局";
|
||||
var appVersion = "1.1.3";
|
||||
//NFC回调
|
||||
function setCardInfoByNFC(info, base64) {
|
||||
console.log(base64)
|
||||
if (info) {
|
||||
info = JSON.parse(info)
|
||||
info.data.zp = base64;
|
||||
window.postMessage({
|
||||
data: info,
|
||||
type: 'NFC'
|
||||
}, '*')
|
||||
}
|
||||
}
|
||||
|
||||
// 拍照
|
||||
function setimage_base64(pzid, base64) {
|
||||
if (base64) {
|
||||
window.postMessage({
|
||||
data: base64,
|
||||
type: 'PHOTO'
|
||||
}, '*')
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//存
|
||||
function setStorage(key, value) {
|
||||
try {
|
||||
bridge.putString(key, value)
|
||||
} catch (error) {
|
||||
window.localStorage.setItem(key, value)
|
||||
}
|
||||
}
|
||||
|
||||
//取
|
||||
function getStorage(key) {
|
||||
try {
|
||||
return bridge.getString(key)
|
||||
} catch (error) {
|
||||
return window.localStorage.getItem(key)
|
||||
}
|
||||
}
|
||||
|
||||
//删
|
||||
function delteteStorage(key) {
|
||||
try {
|
||||
bridge.delString(key)
|
||||
} catch (error) {
|
||||
window.localStorage.removeItem(key)
|
||||
}
|
||||
}
|
||||
|
||||
//车牌OCR回调
|
||||
function setcphm(cphm) {
|
||||
window.postMessage({
|
||||
data: cphm,
|
||||
type: 'cphm'
|
||||
}, '*')
|
||||
}
|
||||
|
||||
//车牌颜色OCR回调
|
||||
function setcpcolor(color) {
|
||||
if (color != "蓝") {
|
||||
let dm = color == "绿" ? '52' : '01'
|
||||
window.postMessage({
|
||||
data: dm,
|
||||
color: color,
|
||||
type: 'color'
|
||||
}, '*')
|
||||
|
||||
} else {
|
||||
window.postMessage({
|
||||
data: '02',
|
||||
color: color,
|
||||
type: 'color'
|
||||
}, '*')
|
||||
}
|
||||
}
|
||||
|
||||
//身份证OCR回调
|
||||
function setCardInfoByOCR(info, base64) {
|
||||
window.postMessage({
|
||||
data: info,
|
||||
type: 'sfzh'
|
||||
}, '*')
|
||||
}
|
||||
|
||||
//视频上传成功ID
|
||||
function setVideoId(id) {
|
||||
window.postMessage({
|
||||
data: id,
|
||||
type: 'videoId'
|
||||
}, '*')
|
||||
}
|
||||
|
||||
//获取经纬度
|
||||
function getLocation() {
|
||||
var pgis = {};
|
||||
try {
|
||||
pgis = JSON.parse(bridge.getLocation()); //手机端
|
||||
} catch (error) {
|
||||
pgis = {
|
||||
lng: jd,
|
||||
lat: wd,
|
||||
zbly: 1,
|
||||
};
|
||||
}
|
||||
return pgis;
|
||||
}
|
BIN
public/favicon.ico
Normal file
BIN
public/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
BIN
public/fonts/Arial Regular/0-255.pbf
Normal file
BIN
public/fonts/Arial Regular/0-255.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/0-255.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/0-255.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/1024-1279.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/1024-1279.pbf
Normal file
Binary file not shown.
3
public/fonts/Microsoft YaHei/10240-10495.pbf
Normal file
3
public/fonts/Microsoft YaHei/10240-10495.pbf
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
Microsoft YaHei10240-10495
|
3
public/fonts/Microsoft YaHei/10496-10751.pbf
Normal file
3
public/fonts/Microsoft YaHei/10496-10751.pbf
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
Microsoft YaHei10496-10751
|
3
public/fonts/Microsoft YaHei/10752-11007.pbf
Normal file
3
public/fonts/Microsoft YaHei/10752-11007.pbf
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
Microsoft YaHei10752-11007
|
3
public/fonts/Microsoft YaHei/11008-11263.pbf
Normal file
3
public/fonts/Microsoft YaHei/11008-11263.pbf
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
Microsoft YaHei11008-11263
|
3
public/fonts/Microsoft YaHei/11264-11519.pbf
Normal file
3
public/fonts/Microsoft YaHei/11264-11519.pbf
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
Microsoft YaHei11264-11519
|
3
public/fonts/Microsoft YaHei/11520-11775.pbf
Normal file
3
public/fonts/Microsoft YaHei/11520-11775.pbf
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
Microsoft YaHei11520-11775
|
BIN
public/fonts/Microsoft YaHei/11776-12031.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/11776-12031.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/12032-12287.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/12032-12287.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/12288-12543.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/12288-12543.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/12544-12799.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/12544-12799.pbf
Normal file
Binary file not shown.
3
public/fonts/Microsoft YaHei/1280-1535.pbf
Normal file
3
public/fonts/Microsoft YaHei/1280-1535.pbf
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
Microsoft YaHei 1280-1535
|
BIN
public/fonts/Microsoft YaHei/12800-13055.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/12800-13055.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/13056-13311.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/13056-13311.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/13312-13567.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/13312-13567.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/13568-13823.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/13568-13823.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/13824-14079.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/13824-14079.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/14080-14335.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/14080-14335.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/14336-14591.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/14336-14591.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/14592-14847.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/14592-14847.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/14848-15103.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/14848-15103.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/15104-15359.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/15104-15359.pbf
Normal file
Binary file not shown.
3
public/fonts/Microsoft YaHei/1536-1791.pbf
Normal file
3
public/fonts/Microsoft YaHei/1536-1791.pbf
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
Microsoft YaHei 1536-1791
|
BIN
public/fonts/Microsoft YaHei/15360-15615.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/15360-15615.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/15616-15871.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/15616-15871.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/15872-16127.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/15872-16127.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/16128-16383.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/16128-16383.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/16384-16639.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/16384-16639.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/16640-16895.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/16640-16895.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/16896-17151.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/16896-17151.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/17152-17407.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/17152-17407.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/17408-17663.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/17408-17663.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/17664-17919.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/17664-17919.pbf
Normal file
Binary file not shown.
3
public/fonts/Microsoft YaHei/1792-2047.pbf
Normal file
3
public/fonts/Microsoft YaHei/1792-2047.pbf
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
Microsoft YaHei 1792-2047
|
BIN
public/fonts/Microsoft YaHei/17920-18175.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/17920-18175.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/18176-18431.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/18176-18431.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/18432-18687.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/18432-18687.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/18688-18943.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/18688-18943.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/18944-19199.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/18944-19199.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/19200-19455.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/19200-19455.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/19456-19711.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/19456-19711.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/19712-19967.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/19712-19967.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/19968-20223.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/19968-20223.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/20224-20479.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/20224-20479.pbf
Normal file
Binary file not shown.
3
public/fonts/Microsoft YaHei/2048-2303.pbf
Normal file
3
public/fonts/Microsoft YaHei/2048-2303.pbf
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
Microsoft YaHei 2048-2303
|
BIN
public/fonts/Microsoft YaHei/20480-20735.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/20480-20735.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/20736-20991.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/20736-20991.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/20992-21247.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/20992-21247.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/21248-21503.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/21248-21503.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/21504-21759.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/21504-21759.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/21760-22015.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/21760-22015.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/22016-22271.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/22016-22271.pbf
Normal file
Binary file not shown.
130
public/fonts/Microsoft YaHei/22272-22527.pbf
Normal file
130
public/fonts/Microsoft YaHei/22272-22527.pbf
Normal file
File diff suppressed because one or more lines are too long
BIN
public/fonts/Microsoft YaHei/22528-22783.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/22528-22783.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/22784-23039.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/22784-23039.pbf
Normal file
Binary file not shown.
3
public/fonts/Microsoft YaHei/2304-2559.pbf
Normal file
3
public/fonts/Microsoft YaHei/2304-2559.pbf
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
Microsoft YaHei 2304-2559
|
BIN
public/fonts/Microsoft YaHei/23040-23295.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/23040-23295.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/23296-23551.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/23296-23551.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/23552-23807.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/23552-23807.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/23808-24063.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/23808-24063.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/24064-24319.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/24064-24319.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/24320-24575.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/24320-24575.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/24576-24831.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/24576-24831.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/24832-25087.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/24832-25087.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/25088-25343.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/25088-25343.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/25344-25599.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/25344-25599.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/256-511.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/256-511.pbf
Normal file
Binary file not shown.
3
public/fonts/Microsoft YaHei/2560-2815.pbf
Normal file
3
public/fonts/Microsoft YaHei/2560-2815.pbf
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
Microsoft YaHei 2560-2815
|
BIN
public/fonts/Microsoft YaHei/25600-25855.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/25600-25855.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/25856-26111.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/25856-26111.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/26112-26367.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/26112-26367.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/26368-26623.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/26368-26623.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/26624-26879.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/26624-26879.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/26880-27135.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/26880-27135.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/27136-27391.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/27136-27391.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/27392-27647.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/27392-27647.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/27648-27903.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/27648-27903.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/27904-28159.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/27904-28159.pbf
Normal file
Binary file not shown.
3
public/fonts/Microsoft YaHei/2816-3071.pbf
Normal file
3
public/fonts/Microsoft YaHei/2816-3071.pbf
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
Microsoft YaHei 2816-3071
|
BIN
public/fonts/Microsoft YaHei/28160-28415.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/28160-28415.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/28416-28671.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/28416-28671.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/28672-28927.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/28672-28927.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/28928-29183.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/28928-29183.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/29184-29439.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/29184-29439.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/29440-29695.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/29440-29695.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/29696-29951.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/29696-29951.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/29952-30207.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/29952-30207.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/30208-30463.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/30208-30463.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/30464-30719.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/30464-30719.pbf
Normal file
Binary file not shown.
3
public/fonts/Microsoft YaHei/3072-3327.pbf
Normal file
3
public/fonts/Microsoft YaHei/3072-3327.pbf
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
Microsoft YaHei 3072-3327
|
BIN
public/fonts/Microsoft YaHei/30720-30975.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/30720-30975.pbf
Normal file
Binary file not shown.
BIN
public/fonts/Microsoft YaHei/30976-31231.pbf
Normal file
BIN
public/fonts/Microsoft YaHei/30976-31231.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