Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 1.6 MiB |
After Width: | Height: | Size: 6.1 MiB |
After Width: | Height: | Size: 8.2 MiB |
After Width: | Height: | Size: 7.9 MiB |
After Width: | Height: | Size: 5.7 MiB |
After Width: | Height: | Size: 6.1 MiB |
After Width: | Height: | Size: 6.6 MiB |
After Width: | Height: | Size: 947 KiB |
After Width: | Height: | Size: 948 KiB |
After Width: | Height: | Size: 6.5 MiB |
@ -0,0 +1,13 @@ |
|||
import request from "@/utils/request"; |
|||
/** |
|||
* 获取报表统计 |
|||
* |
|||
* @param queryParams |
|||
*/ |
|||
export function dcBusiDayReport(queryParams) { |
|||
return request({ |
|||
url: "/dc/dcBusiDayReport/list", |
|||
method: "get", |
|||
params: queryParams, |
|||
}); |
|||
} |
@ -0,0 +1,84 @@ |
|||
import request from "@/utils/request"; |
|||
|
|||
/** |
|||
* 获取热源列表 |
|||
*/ |
|||
export function getDeptList(data) { |
|||
return request({ |
|||
url: "/system/dept/selectList", |
|||
method: "post", |
|||
data: data, |
|||
}); |
|||
} |
|||
/** |
|||
* 获取图表数据 |
|||
*/ |
|||
export function getrealTime(queryParams) { |
|||
return request({ |
|||
url: "dc/heatSourceScreen/heatSource/realTime/data", |
|||
method: "get", |
|||
params: queryParams, |
|||
}); |
|||
} |
|||
/** |
|||
* 温度曲线 |
|||
*/ |
|||
export function getTempChart(queryParams) { |
|||
return request({ |
|||
url: "/dc/heatSourceScreen/heatExchangeStation/temperature/history/data", |
|||
method: "get", |
|||
params: queryParams, |
|||
}); |
|||
} |
|||
/** |
|||
* 温度曲线 |
|||
*/ |
|||
export function getTempChartPolling(queryParams) { |
|||
return request({ |
|||
url: "/dc/heatSourceScreen/heatExchangeStation/temperature/realTime/data", |
|||
method: "get", |
|||
params: queryParams, |
|||
}); |
|||
} |
|||
|
|||
/** |
|||
* 压力曲线 |
|||
*/ |
|||
export function getPressChart(queryParams) { |
|||
return request({ |
|||
url: "/dc/heatSourceScreen/heatExchangeStation/stress/history/data", |
|||
method: "get", |
|||
params: queryParams, |
|||
}); |
|||
} |
|||
/** |
|||
* 压力曲线 |
|||
*/ |
|||
export function getPressChartPolling(queryParams) { |
|||
return request({ |
|||
url: "/dc/heatSourceScreen/heatExchangeStation/stress/realTime/data", |
|||
method: "get", |
|||
params: queryParams, |
|||
}); |
|||
} |
|||
|
|||
/** |
|||
* 获取表格header |
|||
*/ |
|||
export function getTableHeader() { |
|||
return request({ |
|||
url: "/dc/heatSourceScreen/heatSource/table/header", |
|||
method: "get", |
|||
}); |
|||
} |
|||
|
|||
/** |
|||
* 获取换热站Table列表 |
|||
*/ |
|||
export function getTableData(data) { |
|||
return request({ |
|||
url: "/dc/heatSourceScreen/heatSource/table/data", |
|||
method: "post", |
|||
data: data, |
|||
}); |
|||
} |
@ -1,145 +1,153 @@ |
|||
import request from '@/utils/request' |
|||
import request from "@/utils/request"; |
|||
import { parseStrEmpty } from "@/utils/ruoyi"; |
|||
|
|||
// 查询用户列表
|
|||
export function listUser(query) { |
|||
return request({ |
|||
url: '/system/user/list', |
|||
method: 'get', |
|||
params: query |
|||
}) |
|||
url: "/system/user/list", |
|||
method: "get", |
|||
params: query, |
|||
}); |
|||
} |
|||
|
|||
// 查询用户详细
|
|||
export function getUser(userId) { |
|||
return request({ |
|||
url: '/system/user/' + parseStrEmpty(userId), |
|||
method: 'get' |
|||
}) |
|||
url: "/system/user/" + parseStrEmpty(userId), |
|||
method: "get", |
|||
}); |
|||
} |
|||
|
|||
// 新增用户
|
|||
export function addUser(data) { |
|||
return request({ |
|||
url: '/system/user', |
|||
method: 'post', |
|||
data: data |
|||
}) |
|||
url: "/system/user", |
|||
method: "post", |
|||
data: data, |
|||
}); |
|||
} |
|||
|
|||
// 修改用户
|
|||
export function updateUser(data) { |
|||
return request({ |
|||
url: '/system/user', |
|||
method: 'put', |
|||
data: data |
|||
}) |
|||
url: "/system/user", |
|||
method: "put", |
|||
data: data, |
|||
}); |
|||
} |
|||
|
|||
// 删除用户
|
|||
export function delUser(userId) { |
|||
return request({ |
|||
url: '/system/user/' + userId, |
|||
method: 'delete' |
|||
}) |
|||
url: "/system/user/" + userId, |
|||
method: "delete", |
|||
}); |
|||
} |
|||
|
|||
// 用户密码重置
|
|||
export function resetUserPwd(userId, password) { |
|||
const data = { |
|||
userId, |
|||
password |
|||
} |
|||
password, |
|||
}; |
|||
return request({ |
|||
url: '/system/user/resetPwd', |
|||
method: 'put', |
|||
data: data |
|||
}) |
|||
url: "/system/user/resetPwd", |
|||
method: "put", |
|||
data: data, |
|||
}); |
|||
} |
|||
|
|||
// 用户状态修改
|
|||
export function changeUserStatus(userId, status) { |
|||
const data = { |
|||
userId, |
|||
status |
|||
} |
|||
status, |
|||
}; |
|||
return request({ |
|||
url: '/system/user/changeStatus', |
|||
method: 'put', |
|||
data: data |
|||
}) |
|||
url: "/system/user/changeStatus", |
|||
method: "put", |
|||
data: data, |
|||
}); |
|||
} |
|||
|
|||
// 查询用户个人信息
|
|||
export function getUserProfile() { |
|||
return request({ |
|||
url: '/system/user/profile', |
|||
method: 'get' |
|||
}) |
|||
url: "/system/user/profile", |
|||
method: "get", |
|||
}); |
|||
} |
|||
|
|||
// 修改用户个人信息
|
|||
export function updateUserProfile(data) { |
|||
return request({ |
|||
url: '/system/user/profile', |
|||
method: 'put', |
|||
data: data |
|||
}) |
|||
url: "/system/user/profile", |
|||
method: "put", |
|||
data: data, |
|||
}); |
|||
} |
|||
|
|||
// 用户密码重置
|
|||
export function updateUserPwd(oldPassword, newPassword) { |
|||
const data = { |
|||
oldPassword, |
|||
newPassword |
|||
} |
|||
newPassword, |
|||
}; |
|||
return request({ |
|||
url: '/system/user/profile/updatePwd', |
|||
method: 'put', |
|||
params: data |
|||
}) |
|||
url: "/system/user/profile/updatePwd", |
|||
method: "put", |
|||
params: data, |
|||
}); |
|||
} |
|||
|
|||
// 用户头像上传
|
|||
export function uploadAvatar(data) { |
|||
return request({ |
|||
url: '/system/user/profile/avatar', |
|||
method: 'post', |
|||
data: data |
|||
}) |
|||
url: "/system/user/profile/avatar", |
|||
method: "post", |
|||
data: data, |
|||
}); |
|||
} |
|||
|
|||
// 查询授权角色
|
|||
export function getAuthRole(userId) { |
|||
return request({ |
|||
url: '/system/user/authRole/' + userId, |
|||
method: 'get' |
|||
}) |
|||
url: "/system/user/authRole/" + userId, |
|||
method: "get", |
|||
}); |
|||
} |
|||
|
|||
// 保存授权角色
|
|||
export function updateAuthRole(data) { |
|||
return request({ |
|||
url: '/system/user/authRole', |
|||
method: 'put', |
|||
params: data |
|||
}) |
|||
url: "/system/user/authRole", |
|||
method: "put", |
|||
params: data, |
|||
}); |
|||
} |
|||
|
|||
// 查询部门下拉树结构
|
|||
export function deptTreeSelect() { |
|||
return request({ |
|||
url: '/system/user/deptTree', |
|||
method: 'get' |
|||
}) |
|||
url: "/system/user/deptTree", |
|||
method: "get", |
|||
}); |
|||
} |
|||
|
|||
|
|||
// 查询部门下拉树结构
|
|||
export function deptTreeSelectNew() { |
|||
return request({ |
|||
url: '/system/user/deptTreeNew', |
|||
method: 'get' |
|||
}) |
|||
url: "/system/user/deptTreeNew", |
|||
method: "get", |
|||
}); |
|||
} |
|||
|
|||
/** |
|||
* 获取天气预报 |
|||
*/ |
|||
export function getWeather() { |
|||
return request({ |
|||
url: "/model/dcBusiRealWeatherHours/oneLast", |
|||
method: "get", |
|||
}); |
|||
} |
|||
|
@ -0,0 +1,24 @@ |
|||
@font-face { |
|||
font-family: 'YouSheBiaoTiHei'; |
|||
src: url('YouSheBiaoTiHei.ttf') format('truetype'); |
|||
} |
|||
@font-face { |
|||
font-family: 'AlibabaPuHuiTiRegular'; |
|||
src: url('AlibabaPuHuiTiRegular.ttf') format('truetype'); |
|||
} |
|||
@font-face { |
|||
font-family: 'AlibabaPuHuiTiBold'; |
|||
src: url('AlibabaPuHuiTiBold.ttf') format('truetype'); |
|||
} |
|||
@font-face { |
|||
font-family: 'LixukeXingshu'; |
|||
src: url('LixukeXingshu.ttf') format('truetype'); |
|||
} |
|||
@font-face { |
|||
font-family: 'PangMenZhengDaoBiao'; |
|||
src: url('PangMenZhengDaoBiao.ttf') format('truetype'); |
|||
} |
|||
@font-face { |
|||
font-family: 'SourceHanSansBold'; |
|||
src: url('SourceHanSansBold.OTF') format('OpenType'); |
|||
} |
@ -0,0 +1,539 @@ |
|||
/* Logo 字体 */ |
|||
@font-face { |
|||
font-family: "iconfont logo"; |
|||
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834'); |
|||
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'), |
|||
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'), |
|||
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'), |
|||
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg'); |
|||
} |
|||
|
|||
.logo { |
|||
font-family: "iconfont logo"; |
|||
font-size: 160px; |
|||
font-style: normal; |
|||
-webkit-font-smoothing: antialiased; |
|||
-moz-osx-font-smoothing: grayscale; |
|||
} |
|||
|
|||
/* tabs */ |
|||
.nav-tabs { |
|||
position: relative; |
|||
} |
|||
|
|||
.nav-tabs .nav-more { |
|||
position: absolute; |
|||
right: 0; |
|||
bottom: 0; |
|||
height: 42px; |
|||
line-height: 42px; |
|||
color: #666; |
|||
} |
|||
|
|||
#tabs { |
|||
border-bottom: 1px solid #eee; |
|||
} |
|||
|
|||
#tabs li { |
|||
cursor: pointer; |
|||
width: 100px; |
|||
height: 40px; |
|||
line-height: 40px; |
|||
text-align: center; |
|||
font-size: 16px; |
|||
border-bottom: 2px solid transparent; |
|||
position: relative; |
|||
z-index: 1; |
|||
margin-bottom: -1px; |
|||
color: #666; |
|||
} |
|||
|
|||
|
|||
#tabs .active { |
|||
border-bottom-color: #f00; |
|||
color: #222; |
|||
} |
|||
|
|||
.tab-container .content { |
|||
display: none; |
|||
} |
|||
|
|||
/* 页面布局 */ |
|||
.main { |
|||
padding: 30px 100px; |
|||
width: 960px; |
|||
margin: 0 auto; |
|||
} |
|||
|
|||
.main .logo { |
|||
color: #333; |
|||
text-align: left; |
|||
margin-bottom: 30px; |
|||
line-height: 1; |
|||
height: 110px; |
|||
margin-top: -50px; |
|||
overflow: hidden; |
|||
*zoom: 1; |
|||
} |
|||
|
|||
.main .logo a { |
|||
font-size: 160px; |
|||
color: #333; |
|||
} |
|||
|
|||
.helps { |
|||
margin-top: 40px; |
|||
} |
|||
|
|||
.helps pre { |
|||
padding: 20px; |
|||
margin: 10px 0; |
|||
border: solid 1px #e7e1cd; |
|||
background-color: #fffdef; |
|||
overflow: auto; |
|||
} |
|||
|
|||
.icon_lists { |
|||
width: 100% !important; |
|||
overflow: hidden; |
|||
*zoom: 1; |
|||
} |
|||
|
|||
.icon_lists li { |
|||
width: 100px; |
|||
margin-bottom: 10px; |
|||
margin-right: 20px; |
|||
text-align: center; |
|||
list-style: none !important; |
|||
cursor: default; |
|||
} |
|||
|
|||
.icon_lists li .code-name { |
|||
line-height: 1.2; |
|||
} |
|||
|
|||
.icon_lists .icon { |
|||
display: block; |
|||
height: 100px; |
|||
line-height: 100px; |
|||
font-size: 42px; |
|||
margin: 10px auto; |
|||
color: #333; |
|||
-webkit-transition: font-size 0.25s linear, width 0.25s linear; |
|||
-moz-transition: font-size 0.25s linear, width 0.25s linear; |
|||
transition: font-size 0.25s linear, width 0.25s linear; |
|||
} |
|||
|
|||
.icon_lists .icon:hover { |
|||
font-size: 100px; |
|||
} |
|||
|
|||
.icon_lists .svg-icon { |
|||
/* 通过设置 font-size 来改变图标大小 */ |
|||
width: 1em; |
|||
/* 图标和文字相邻时,垂直对齐 */ |
|||
vertical-align: -0.15em; |
|||
/* 通过设置 color 来改变 SVG 的颜色/fill */ |
|||
fill: currentColor; |
|||
/* path 和 stroke 溢出 viewBox 部分在 IE 下会显示 |
|||
normalize.css 中也包含这行 */ |
|||
overflow: hidden; |
|||
} |
|||
|
|||
.icon_lists li .name, |
|||
.icon_lists li .code-name { |
|||
color: #666; |
|||
} |
|||
|
|||
/* markdown 样式 */ |
|||
.markdown { |
|||
color: #666; |
|||
font-size: 14px; |
|||
line-height: 1.8; |
|||
} |
|||
|
|||
.highlight { |
|||
line-height: 1.5; |
|||
} |
|||
|
|||
.markdown img { |
|||
vertical-align: middle; |
|||
max-width: 100%; |
|||
} |
|||
|
|||
.markdown h1 { |
|||
color: #404040; |
|||
font-weight: 500; |
|||
line-height: 40px; |
|||
margin-bottom: 24px; |
|||
} |
|||
|
|||
.markdown h2, |
|||
.markdown h3, |
|||
.markdown h4, |
|||
.markdown h5, |
|||
.markdown h6 { |
|||
color: #404040; |
|||
margin: 1.6em 0 0.6em 0; |
|||
font-weight: 500; |
|||
clear: both; |
|||
} |
|||
|
|||
.markdown h1 { |
|||
font-size: 28px; |
|||
} |
|||
|
|||
.markdown h2 { |
|||
font-size: 22px; |
|||
} |
|||
|
|||
.markdown h3 { |
|||
font-size: 16px; |
|||
} |
|||
|
|||
.markdown h4 { |
|||
font-size: 14px; |
|||
} |
|||
|
|||
.markdown h5 { |
|||
font-size: 12px; |
|||
} |
|||
|
|||
.markdown h6 { |
|||
font-size: 12px; |
|||
} |
|||
|
|||
.markdown hr { |
|||
height: 1px; |
|||
border: 0; |
|||
background: #e9e9e9; |
|||
margin: 16px 0; |
|||
clear: both; |
|||
} |
|||
|
|||
.markdown p { |
|||
margin: 1em 0; |
|||
} |
|||
|
|||
.markdown>p, |
|||
.markdown>blockquote, |
|||
.markdown>.highlight, |
|||
.markdown>ol, |
|||
.markdown>ul { |
|||
width: 80%; |
|||
} |
|||
|
|||
.markdown ul>li { |
|||
list-style: circle; |
|||
} |
|||
|
|||
.markdown>ul li, |
|||
.markdown blockquote ul>li { |
|||
margin-left: 20px; |
|||
padding-left: 4px; |
|||
} |
|||
|
|||
.markdown>ul li p, |
|||
.markdown>ol li p { |
|||
margin: 0.6em 0; |
|||
} |
|||
|
|||
.markdown ol>li { |
|||
list-style: decimal; |
|||
} |
|||
|
|||
.markdown>ol li, |
|||
.markdown blockquote ol>li { |
|||
margin-left: 20px; |
|||
padding-left: 4px; |
|||
} |
|||
|
|||
.markdown code { |
|||
margin: 0 3px; |
|||
padding: 0 5px; |
|||
background: #eee; |
|||
border-radius: 3px; |
|||
} |
|||
|
|||
.markdown strong, |
|||
.markdown b { |
|||
font-weight: 600; |
|||
} |
|||
|
|||
.markdown>table { |
|||
border-collapse: collapse; |
|||
border-spacing: 0px; |
|||
empty-cells: show; |
|||
border: 1px solid #e9e9e9; |
|||
width: 95%; |
|||
margin-bottom: 24px; |
|||
} |
|||
|
|||
.markdown>table th { |
|||
white-space: nowrap; |
|||
color: #333; |
|||
font-weight: 600; |
|||
} |
|||
|
|||
.markdown>table th, |
|||
.markdown>table td { |
|||
border: 1px solid #e9e9e9; |
|||
padding: 8px 16px; |
|||
text-align: left; |
|||
} |
|||
|
|||
.markdown>table th { |
|||
background: #F7F7F7; |
|||
} |
|||
|
|||
.markdown blockquote { |
|||
font-size: 90%; |
|||
color: #999; |
|||
border-left: 4px solid #e9e9e9; |
|||
padding-left: 0.8em; |
|||
margin: 1em 0; |
|||
} |
|||
|
|||
.markdown blockquote p { |
|||
margin: 0; |
|||
} |
|||
|
|||
.markdown .anchor { |
|||
opacity: 0; |
|||
transition: opacity 0.3s ease; |
|||
margin-left: 8px; |
|||
} |
|||
|
|||
.markdown .waiting { |
|||
color: #ccc; |
|||
} |
|||
|
|||
.markdown h1:hover .anchor, |
|||
.markdown h2:hover .anchor, |
|||
.markdown h3:hover .anchor, |
|||
.markdown h4:hover .anchor, |
|||
.markdown h5:hover .anchor, |
|||
.markdown h6:hover .anchor { |
|||
opacity: 1; |
|||
display: inline-block; |
|||
} |
|||
|
|||
.markdown>br, |
|||
.markdown>p>br { |
|||
clear: both; |
|||
} |
|||
|
|||
|
|||
.hljs { |
|||
display: block; |
|||
background: white; |
|||
padding: 0.5em; |
|||
color: #333333; |
|||
overflow-x: auto; |
|||
} |
|||
|
|||
.hljs-comment, |
|||
.hljs-meta { |
|||
color: #969896; |
|||
} |
|||
|
|||
.hljs-string, |
|||
.hljs-variable, |
|||
.hljs-template-variable, |
|||
.hljs-strong, |
|||
.hljs-emphasis, |
|||
.hljs-quote { |
|||
color: #df5000; |
|||
} |
|||
|
|||
.hljs-keyword, |
|||
.hljs-selector-tag, |
|||
.hljs-type { |
|||
color: #a71d5d; |
|||
} |
|||
|
|||
.hljs-literal, |
|||
.hljs-symbol, |
|||
.hljs-bullet, |
|||
.hljs-attribute { |
|||
color: #0086b3; |
|||
} |
|||
|
|||
.hljs-section, |
|||
.hljs-name { |
|||
color: #63a35c; |
|||
} |
|||
|
|||
.hljs-tag { |
|||
color: #333333; |
|||
} |
|||
|
|||
.hljs-title, |
|||
.hljs-attr, |
|||
.hljs-selector-id, |
|||
.hljs-selector-class, |
|||
.hljs-selector-attr, |
|||
.hljs-selector-pseudo { |
|||
color: #795da3; |
|||
} |
|||
|
|||
.hljs-addition { |
|||
color: #55a532; |
|||
background-color: #eaffea; |
|||
} |
|||
|
|||
.hljs-deletion { |
|||
color: #bd2c00; |
|||
background-color: #ffecec; |
|||
} |
|||
|
|||
.hljs-link { |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
/* 代码高亮 */ |
|||
/* PrismJS 1.15.0 |
|||
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */ |
|||
/** |
|||
* prism.js default theme for JavaScript, CSS and HTML |
|||
* Based on dabblet (http://dabblet.com) |
|||
* @author Lea Verou |
|||
*/ |
|||
code[class*="language-"], |
|||
pre[class*="language-"] { |
|||
color: black; |
|||
background: none; |
|||
text-shadow: 0 1px white; |
|||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; |
|||
text-align: left; |
|||
white-space: pre; |
|||
word-spacing: normal; |
|||
word-break: normal; |
|||
word-wrap: normal; |
|||
line-height: 1.5; |
|||
|
|||
-moz-tab-size: 4; |
|||
-o-tab-size: 4; |
|||
tab-size: 4; |
|||
|
|||
-webkit-hyphens: none; |
|||
-moz-hyphens: none; |
|||
-ms-hyphens: none; |
|||
hyphens: none; |
|||
} |
|||
|
|||
pre[class*="language-"]::-moz-selection, |
|||
pre[class*="language-"] ::-moz-selection, |
|||
code[class*="language-"]::-moz-selection, |
|||
code[class*="language-"] ::-moz-selection { |
|||
text-shadow: none; |
|||
background: #b3d4fc; |
|||
} |
|||
|
|||
pre[class*="language-"]::selection, |
|||
pre[class*="language-"] ::selection, |
|||
code[class*="language-"]::selection, |
|||
code[class*="language-"] ::selection { |
|||
text-shadow: none; |
|||
background: #b3d4fc; |
|||
} |
|||
|
|||
@media print { |
|||
|
|||
code[class*="language-"], |
|||
pre[class*="language-"] { |
|||
text-shadow: none; |
|||
} |
|||
} |
|||
|
|||
/* Code blocks */ |
|||
pre[class*="language-"] { |
|||
padding: 1em; |
|||
margin: .5em 0; |
|||
overflow: auto; |
|||
} |
|||
|
|||
:not(pre)>code[class*="language-"], |
|||
pre[class*="language-"] { |
|||
background: #f5f2f0; |
|||
} |
|||
|
|||
/* Inline code */ |
|||
:not(pre)>code[class*="language-"] { |
|||
padding: .1em; |
|||
border-radius: .3em; |
|||
white-space: normal; |
|||
} |
|||
|
|||
.token.comment, |
|||
.token.prolog, |
|||
.token.doctype, |
|||
.token.cdata { |
|||
color: slategray; |
|||
} |
|||
|
|||
.token.punctuation { |
|||
color: #999; |
|||
} |
|||
|
|||
.namespace { |
|||
opacity: .7; |
|||
} |
|||
|
|||
.token.property, |
|||
.token.tag, |
|||
.token.boolean, |
|||
.token.number, |
|||
.token.constant, |
|||
.token.symbol, |
|||
.token.deleted { |
|||
color: #905; |
|||
} |
|||
|
|||
.token.selector, |
|||
.token.attr-name, |
|||
.token.string, |
|||
.token.char, |
|||
.token.builtin, |
|||
.token.inserted { |
|||
color: #690; |
|||
} |
|||
|
|||
.token.operator, |
|||
.token.entity, |
|||
.token.url, |
|||
.language-css .token.string, |
|||
.style .token.string { |
|||
color: #9a6e3a; |
|||
background: hsla(0, 0%, 100%, .5); |
|||
} |
|||
|
|||
.token.atrule, |
|||
.token.attr-value, |
|||
.token.keyword { |
|||
color: #07a; |
|||
} |
|||
|
|||
.token.function, |
|||
.token.class-name { |
|||
color: #DD4A68; |
|||
} |
|||
|
|||
.token.regex, |
|||
.token.important, |
|||
.token.variable { |
|||
color: #e90; |
|||
} |
|||
|
|||
.token.important, |
|||
.token.bold { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
.token.italic { |
|||
font-style: italic; |
|||
} |
|||
|
|||
.token.entity { |
|||
cursor: help; |
|||
} |
@ -0,0 +1,299 @@ |
|||
@font-face { |
|||
font-family: "iconfont"; /* Project id 4223894 */ |
|||
src: url('iconfont.woff2?t=1706149491935') format('woff2'), |
|||
url('iconfont.woff?t=1706149491935') format('woff'), |
|||
url('iconfont.ttf?t=1706149491935') format('truetype'); |
|||
} |
|||
|
|||
.iconfont { |
|||
font-family: "iconfont" !important; |
|||
font-size: 16px; |
|||
font-style: normal; |
|||
-webkit-font-smoothing: antialiased; |
|||
-moz-osx-font-smoothing: grayscale; |
|||
} |
|||
|
|||
.icon-area-chart:before { |
|||
content: "\e612"; |
|||
} |
|||
|
|||
.icon-HP:before { |
|||
content: "\e7b1"; |
|||
} |
|||
|
|||
.icon-boiler:before { |
|||
content: "\e60d"; |
|||
} |
|||
|
|||
.icon-device:before { |
|||
content: "\e9fd"; |
|||
} |
|||
|
|||
.icon-heat-exchange-station:before { |
|||
content: "\e84a"; |
|||
} |
|||
|
|||
.icon-yincang:before { |
|||
content: "\e690"; |
|||
} |
|||
|
|||
.icon-xianshi:before { |
|||
content: "\e691"; |
|||
} |
|||
|
|||
.icon-weather:before { |
|||
content: "\e601"; |
|||
} |
|||
|
|||
.icon-alarm:before { |
|||
content: "\e871"; |
|||
} |
|||
|
|||
.icon-four-screen:before { |
|||
content: "\e86a"; |
|||
} |
|||
|
|||
.icon-one-screen:before { |
|||
content: "\e600"; |
|||
} |
|||
|
|||
.icon-nine-screen:before { |
|||
content: "\e65f"; |
|||
} |
|||
|
|||
.icon-history:before { |
|||
content: "\e611"; |
|||
} |
|||
|
|||
.icon-station:before { |
|||
content: "\e6c5"; |
|||
} |
|||
|
|||
.icon-more:before { |
|||
content: "\e83d"; |
|||
} |
|||
|
|||
.icon-list:before { |
|||
content: "\e6be"; |
|||
} |
|||
|
|||
.icon-key:before { |
|||
content: "\e775"; |
|||
} |
|||
|
|||
.icon-user-mgt:before { |
|||
content: "\e617"; |
|||
} |
|||
|
|||
.icon-home:before { |
|||
content: "\e62e"; |
|||
} |
|||
|
|||
.icon-set-edit:before { |
|||
content: "\eb61"; |
|||
} |
|||
|
|||
.icon-app-mgt:before { |
|||
content: "\eb8f"; |
|||
} |
|||
|
|||
.icon-setting:before { |
|||
content: "\e78e"; |
|||
} |
|||
|
|||
.icon-folder-open:before { |
|||
content: "\e7d1"; |
|||
} |
|||
|
|||
.icon-image:before { |
|||
content: "\e7de"; |
|||
} |
|||
|
|||
.icon-cloud-download:before { |
|||
content: "\ec1d"; |
|||
} |
|||
|
|||
.icon-cloud-upload:before { |
|||
content: "\ec1e"; |
|||
} |
|||
|
|||
.icon-role-mgt:before { |
|||
content: "\e645"; |
|||
} |
|||
|
|||
.icon-visits-chart:before { |
|||
content: "\e6a5"; |
|||
} |
|||
|
|||
.icon-user-visits:before { |
|||
content: "\e651"; |
|||
} |
|||
|
|||
.icon-turnover:before { |
|||
content: "\ec18"; |
|||
} |
|||
|
|||
.icon-num-transactions:before { |
|||
content: "\e682"; |
|||
} |
|||
|
|||
.icon-num-download:before { |
|||
content: "\e6f8"; |
|||
} |
|||
|
|||
.icon-edit-icon:before { |
|||
content: "\e621"; |
|||
} |
|||
|
|||
.icon-user:before { |
|||
content: "\e828"; |
|||
} |
|||
|
|||
.icon-lock:before { |
|||
content: "\e62a"; |
|||
} |
|||
|
|||
.icon-language:before { |
|||
content: "\e739"; |
|||
} |
|||
|
|||
.icon-arrow-down:before { |
|||
content: "\e688"; |
|||
} |
|||
|
|||
.icon-close:before { |
|||
content: "\e668"; |
|||
} |
|||
|
|||
.icon-filter:before { |
|||
content: "\e648"; |
|||
} |
|||
|
|||
.icon-ashbin:before { |
|||
content: "\e665"; |
|||
} |
|||
|
|||
.icon-code:before { |
|||
content: "\e667"; |
|||
} |
|||
|
|||
.icon-copy:before { |
|||
content: "\e66a"; |
|||
} |
|||
|
|||
.icon-link:before { |
|||
content: "\e676"; |
|||
} |
|||
|
|||
.icon-layers:before { |
|||
content: "\e675"; |
|||
} |
|||
|
|||
.icon-fullscreen:before { |
|||
content: "\e677"; |
|||
} |
|||
|
|||
.icon-menu:before { |
|||
content: "\e678"; |
|||
} |
|||
|
|||
.icon-minus:before { |
|||
content: "\e67a"; |
|||
} |
|||
|
|||
.icon-refresh:before { |
|||
content: "\e67b"; |
|||
} |
|||
|
|||
.icon-scanning:before { |
|||
content: "\e67d"; |
|||
} |
|||
|
|||
.icon-close-other:before { |
|||
content: "\e624"; |
|||
} |
|||
|
|||
.icon-font-size:before { |
|||
content: "\e689"; |
|||
} |
|||
|
|||
.icon-page-left:before { |
|||
content: "\e659"; |
|||
} |
|||
|
|||
.icon-scan:before { |
|||
content: "\e68b"; |
|||
} |
|||
|
|||
.icon-edit:before { |
|||
content: "\e6aa"; |
|||
} |
|||
|
|||
.icon-camera:before { |
|||
content: "\e666"; |
|||
} |
|||
|
|||
.icon-qrcode:before { |
|||
content: "\e6b0"; |
|||
} |
|||
|
|||
.icon-delete:before { |
|||
content: "\e6b4"; |
|||
} |
|||
|
|||
.icon-address:before { |
|||
content: "\e652"; |
|||
} |
|||
|
|||
.icon-clock:before { |
|||
content: "\e890"; |
|||
} |
|||
|
|||
.icon-location:before { |
|||
content: "\e63d"; |
|||
} |
|||
|
|||
.icon-setup:before { |
|||
content: "\eb8d"; |
|||
} |
|||
|
|||
.icon-reset:before { |
|||
content: "\e614"; |
|||
} |
|||
|
|||
.icon-search:before { |
|||
content: "\e63c"; |
|||
} |
|||
|
|||
.icon-page-right:before { |
|||
content: "\e65b"; |
|||
} |
|||
|
|||
.icon-other:before { |
|||
content: "\e60b"; |
|||
} |
|||
|
|||
.icon-safe:before { |
|||
content: "\ec4d"; |
|||
} |
|||
|
|||
.icon-safe-code:before { |
|||
content: "\e627"; |
|||
} |
|||
|
|||
.icon-up:before { |
|||
content: "\e845"; |
|||
} |
|||
|
|||
.icon-angle-double:before { |
|||
content: "\e849"; |
|||
} |
|||
|
|||
.icon-rise:before { |
|||
content: "\e8f8"; |
|||
} |
|||
|
|||
.icon-decline:before { |
|||
content: "\e8f9"; |
|||
} |
|||
|
@ -0,0 +1,506 @@ |
|||
{ |
|||
"id": "4223894", |
|||
"name": "浑南热力", |
|||
"font_family": "iconfont", |
|||
"css_prefix_text": "icon-", |
|||
"description": "", |
|||
"glyphs": [ |
|||
{ |
|||
"icon_id": "4781603", |
|||
"name": "堆积面积图", |
|||
"font_class": "area-chart", |
|||
"unicode": "e612", |
|||
"unicode_decimal": 58898 |
|||
}, |
|||
{ |
|||
"icon_id": "15731469", |
|||
"name": "air_conditioning_filter", |
|||
"font_class": "HP", |
|||
"unicode": "e7b1", |
|||
"unicode_decimal": 59313 |
|||
}, |
|||
{ |
|||
"icon_id": "5037507", |
|||
"name": "锅炉", |
|||
"font_class": "boiler", |
|||
"unicode": "e60d", |
|||
"unicode_decimal": 58893 |
|||
}, |
|||
{ |
|||
"icon_id": "23060488", |
|||
"name": "设备", |
|||
"font_class": "device", |
|||
"unicode": "e9fd", |
|||
"unicode_decimal": 59901 |
|||
}, |
|||
{ |
|||
"icon_id": "25873889", |
|||
"name": "right-换热站-c", |
|||
"font_class": "heat-exchange-station", |
|||
"unicode": "e84a", |
|||
"unicode_decimal": 59466 |
|||
}, |
|||
{ |
|||
"icon_id": "29522767", |
|||
"name": "30D上双箭头", |
|||
"font_class": "yincang", |
|||
"unicode": "e690", |
|||
"unicode_decimal": 59024 |
|||
}, |
|||
{ |
|||
"icon_id": "29522768", |
|||
"name": "30C下双箭头", |
|||
"font_class": "xianshi", |
|||
"unicode": "e691", |
|||
"unicode_decimal": 59025 |
|||
}, |
|||
{ |
|||
"icon_id": "1447", |
|||
"name": "多云", |
|||
"font_class": "weather", |
|||
"unicode": "e601", |
|||
"unicode_decimal": 58881 |
|||
}, |
|||
{ |
|||
"icon_id": "18164959", |
|||
"name": "报警,警报,报警灯,危险", |
|||
"font_class": "alarm", |
|||
"unicode": "e871", |
|||
"unicode_decimal": 59505 |
|||
}, |
|||
{ |
|||
"icon_id": "18164825", |
|||
"name": "分屏,宫格", |
|||
"font_class": "four-screen", |
|||
"unicode": "e86a", |
|||
"unicode_decimal": 59498 |
|||
}, |
|||
{ |
|||
"icon_id": "1278", |
|||
"name": "单图排列", |
|||
"font_class": "one-screen", |
|||
"unicode": "e600", |
|||
"unicode_decimal": 58880 |
|||
}, |
|||
{ |
|||
"icon_id": "9773647", |
|||
"name": "homepage", |
|||
"font_class": "nine-screen", |
|||
"unicode": "e65f", |
|||
"unicode_decimal": 58975 |
|||
}, |
|||
{ |
|||
"icon_id": "8821264", |
|||
"name": "历史-01", |
|||
"font_class": "history", |
|||
"unicode": "e611", |
|||
"unicode_decimal": 58897 |
|||
}, |
|||
{ |
|||
"icon_id": "18911700", |
|||
"name": "换热站", |
|||
"font_class": "station", |
|||
"unicode": "e6c5", |
|||
"unicode_decimal": 59077 |
|||
}, |
|||
{ |
|||
"icon_id": "34453016", |
|||
"name": "more", |
|||
"font_class": "more", |
|||
"unicode": "e83d", |
|||
"unicode_decimal": 59453 |
|||
}, |
|||
{ |
|||
"icon_id": "8474293", |
|||
"name": "list", |
|||
"font_class": "list", |
|||
"unicode": "e6be", |
|||
"unicode_decimal": 59070 |
|||
}, |
|||
{ |
|||
"icon_id": "6150969", |
|||
"name": "key", |
|||
"font_class": "key", |
|||
"unicode": "e775", |
|||
"unicode_decimal": 59253 |
|||
}, |
|||
{ |
|||
"icon_id": "1348257", |
|||
"name": "用户管理", |
|||
"font_class": "user-mgt", |
|||
"unicode": "e617", |
|||
"unicode_decimal": 58903 |
|||
}, |
|||
{ |
|||
"icon_id": "2675009", |
|||
"name": "首页", |
|||
"font_class": "home", |
|||
"unicode": "e62e", |
|||
"unicode_decimal": 58926 |
|||
}, |
|||
{ |
|||
"icon_id": "3868263", |
|||
"name": "编辑", |
|||
"font_class": "set-edit", |
|||
"unicode": "eb61", |
|||
"unicode_decimal": 60257 |
|||
}, |
|||
{ |
|||
"icon_id": "4347582", |
|||
"name": "icon_应用管理", |
|||
"font_class": "app-mgt", |
|||
"unicode": "eb8f", |
|||
"unicode_decimal": 60303 |
|||
}, |
|||
{ |
|||
"icon_id": "4765891", |
|||
"name": "setting", |
|||
"font_class": "setting", |
|||
"unicode": "e78e", |
|||
"unicode_decimal": 59278 |
|||
}, |
|||
{ |
|||
"icon_id": "4766847", |
|||
"name": "folder-open", |
|||
"font_class": "folder-open", |
|||
"unicode": "e7d1", |
|||
"unicode_decimal": 59345 |
|||
}, |
|||
{ |
|||
"icon_id": "4766917", |
|||
"name": "image", |
|||
"font_class": "image", |
|||
"unicode": "e7de", |
|||
"unicode_decimal": 59358 |
|||
}, |
|||
{ |
|||
"icon_id": "4932635", |
|||
"name": "云端下载", |
|||
"font_class": "cloud-download", |
|||
"unicode": "ec1d", |
|||
"unicode_decimal": 60445 |
|||
}, |
|||
{ |
|||
"icon_id": "4932636", |
|||
"name": "云端上传", |
|||
"font_class": "cloud-upload", |
|||
"unicode": "ec1e", |
|||
"unicode_decimal": 60446 |
|||
}, |
|||
{ |
|||
"icon_id": "6447176", |
|||
"name": "角色管理", |
|||
"font_class": "role-mgt", |
|||
"unicode": "e645", |
|||
"unicode_decimal": 58949 |
|||
}, |
|||
{ |
|||
"icon_id": "6033101", |
|||
"name": "访问量", |
|||
"font_class": "visits-chart", |
|||
"unicode": "e6a5", |
|||
"unicode_decimal": 59045 |
|||
}, |
|||
{ |
|||
"icon_id": "7956168", |
|||
"name": "总访问量", |
|||
"font_class": "user-visits", |
|||
"unicode": "e651", |
|||
"unicode_decimal": 58961 |
|||
}, |
|||
{ |
|||
"icon_id": "26442901", |
|||
"name": "订单成交额", |
|||
"font_class": "turnover", |
|||
"unicode": "ec18", |
|||
"unicode_decimal": 60440 |
|||
}, |
|||
{ |
|||
"icon_id": "26908793", |
|||
"name": "成交数据-01", |
|||
"font_class": "num-transactions", |
|||
"unicode": "e682", |
|||
"unicode_decimal": 59010 |
|||
}, |
|||
{ |
|||
"icon_id": "31500093", |
|||
"name": "下载数量", |
|||
"font_class": "num-download", |
|||
"unicode": "e6f8", |
|||
"unicode_decimal": 59128 |
|||
}, |
|||
{ |
|||
"icon_id": "33987167", |
|||
"name": "编辑", |
|||
"font_class": "edit-icon", |
|||
"unicode": "e621", |
|||
"unicode_decimal": 58913 |
|||
}, |
|||
{ |
|||
"icon_id": "34452814", |
|||
"name": "customer-fill", |
|||
"font_class": "user", |
|||
"unicode": "e828", |
|||
"unicode_decimal": 59432 |
|||
}, |
|||
{ |
|||
"icon_id": "611345", |
|||
"name": "密码", |
|||
"font_class": "lock", |
|||
"unicode": "e62a", |
|||
"unicode_decimal": 58922 |
|||
}, |
|||
{ |
|||
"icon_id": "31061118", |
|||
"name": "中英切换", |
|||
"font_class": "language", |
|||
"unicode": "e739", |
|||
"unicode_decimal": 59193 |
|||
}, |
|||
{ |
|||
"icon_id": "15838582", |
|||
"name": "arrow-down-filling", |
|||
"font_class": "arrow-down", |
|||
"unicode": "e688", |
|||
"unicode_decimal": 59016 |
|||
}, |
|||
{ |
|||
"icon_id": "15838444", |
|||
"name": "close", |
|||
"font_class": "close", |
|||
"unicode": "e668", |
|||
"unicode_decimal": 58984 |
|||
}, |
|||
{ |
|||
"icon_id": "8777080", |
|||
"name": "filter", |
|||
"font_class": "filter", |
|||
"unicode": "e648", |
|||
"unicode_decimal": 58952 |
|||
}, |
|||
{ |
|||
"icon_id": "15838430", |
|||
"name": "ashbin", |
|||
"font_class": "ashbin", |
|||
"unicode": "e665", |
|||
"unicode_decimal": 58981 |
|||
}, |
|||
{ |
|||
"icon_id": "15838443", |
|||
"name": "code", |
|||
"font_class": "code", |
|||
"unicode": "e667", |
|||
"unicode_decimal": 58983 |
|||
}, |
|||
{ |
|||
"icon_id": "15838456", |
|||
"name": "copy", |
|||
"font_class": "copy", |
|||
"unicode": "e66a", |
|||
"unicode_decimal": 58986 |
|||
}, |
|||
{ |
|||
"icon_id": "15838493", |
|||
"name": "link", |
|||
"font_class": "link", |
|||
"unicode": "e676", |
|||
"unicode_decimal": 58998 |
|||
}, |
|||
{ |
|||
"icon_id": "15838496", |
|||
"name": "layers", |
|||
"font_class": "layers", |
|||
"unicode": "e675", |
|||
"unicode_decimal": 58997 |
|||
}, |
|||
{ |
|||
"icon_id": "15838498", |
|||
"name": "fullscreen-expand", |
|||
"font_class": "fullscreen", |
|||
"unicode": "e677", |
|||
"unicode_decimal": 58999 |
|||
}, |
|||
{ |
|||
"icon_id": "15838501", |
|||
"name": "menu", |
|||
"font_class": "menu", |
|||
"unicode": "e678", |
|||
"unicode_decimal": 59000 |
|||
}, |
|||
{ |
|||
"icon_id": "15838514", |
|||
"name": "minus", |
|||
"font_class": "minus", |
|||
"unicode": "e67a", |
|||
"unicode_decimal": 59002 |
|||
}, |
|||
{ |
|||
"icon_id": "15838519", |
|||
"name": "refresh", |
|||
"font_class": "refresh", |
|||
"unicode": "e67b", |
|||
"unicode_decimal": 59003 |
|||
}, |
|||
{ |
|||
"icon_id": "15838527", |
|||
"name": "scanning", |
|||
"font_class": "scanning", |
|||
"unicode": "e67d", |
|||
"unicode_decimal": 59005 |
|||
}, |
|||
{ |
|||
"icon_id": "33077825", |
|||
"name": "关闭其他-01", |
|||
"font_class": "close-other", |
|||
"unicode": "e624", |
|||
"unicode_decimal": 58916 |
|||
}, |
|||
{ |
|||
"icon_id": "24502124", |
|||
"name": "字体大小", |
|||
"font_class": "font-size", |
|||
"unicode": "e689", |
|||
"unicode_decimal": 59017 |
|||
}, |
|||
{ |
|||
"icon_id": "8777532", |
|||
"name": "page_first", |
|||
"font_class": "page-left", |
|||
"unicode": "e659", |
|||
"unicode_decimal": 58969 |
|||
}, |
|||
{ |
|||
"icon_id": "16617390", |
|||
"name": "scan", |
|||
"font_class": "scan", |
|||
"unicode": "e68b", |
|||
"unicode_decimal": 59019 |
|||
}, |
|||
{ |
|||
"icon_id": "16618154", |
|||
"name": "edit", |
|||
"font_class": "edit", |
|||
"unicode": "e6aa", |
|||
"unicode_decimal": 59050 |
|||
}, |
|||
{ |
|||
"icon_id": "30414", |
|||
"name": "camera", |
|||
"font_class": "camera", |
|||
"unicode": "e666", |
|||
"unicode_decimal": 58982 |
|||
}, |
|||
{ |
|||
"icon_id": "32472", |
|||
"name": "qr_code", |
|||
"font_class": "qrcode", |
|||
"unicode": "e6b0", |
|||
"unicode_decimal": 59056 |
|||
}, |
|||
{ |
|||
"icon_id": "32477", |
|||
"name": "delete", |
|||
"font_class": "delete", |
|||
"unicode": "e6b4", |
|||
"unicode_decimal": 59060 |
|||
}, |
|||
{ |
|||
"icon_id": "658000", |
|||
"name": "地址", |
|||
"font_class": "address", |
|||
"unicode": "e652", |
|||
"unicode_decimal": 58962 |
|||
}, |
|||
{ |
|||
"icon_id": "2076264", |
|||
"name": "闹钟", |
|||
"font_class": "clock", |
|||
"unicode": "e890", |
|||
"unicode_decimal": 59536 |
|||
}, |
|||
{ |
|||
"icon_id": "9690751", |
|||
"name": "地址", |
|||
"font_class": "location", |
|||
"unicode": "e63d", |
|||
"unicode_decimal": 58941 |
|||
}, |
|||
{ |
|||
"icon_id": "4347549", |
|||
"name": "icon_设置", |
|||
"font_class": "setup", |
|||
"unicode": "eb8d", |
|||
"unicode_decimal": 60301 |
|||
}, |
|||
{ |
|||
"icon_id": "27253675", |
|||
"name": "重置", |
|||
"font_class": "reset", |
|||
"unicode": "e614", |
|||
"unicode_decimal": 58900 |
|||
}, |
|||
{ |
|||
"icon_id": "8776842", |
|||
"name": "search", |
|||
"font_class": "search", |
|||
"unicode": "e63c", |
|||
"unicode_decimal": 58940 |
|||
}, |
|||
{ |
|||
"icon_id": "8777535", |
|||
"name": "page_last", |
|||
"font_class": "page-right", |
|||
"unicode": "e65b", |
|||
"unicode_decimal": 58971 |
|||
}, |
|||
{ |
|||
"icon_id": "13106274", |
|||
"name": "其他", |
|||
"font_class": "other", |
|||
"unicode": "e60b", |
|||
"unicode_decimal": 58891 |
|||
}, |
|||
{ |
|||
"icon_id": "5961299", |
|||
"name": "安全", |
|||
"font_class": "safe", |
|||
"unicode": "ec4d", |
|||
"unicode_decimal": 60493 |
|||
}, |
|||
{ |
|||
"icon_id": "1599882", |
|||
"name": "网商银行无线端_安全", |
|||
"font_class": "safe-code", |
|||
"unicode": "e627", |
|||
"unicode_decimal": 58919 |
|||
}, |
|||
{ |
|||
"icon_id": "34453072", |
|||
"name": "up", |
|||
"font_class": "up", |
|||
"unicode": "e845", |
|||
"unicode_decimal": 59461 |
|||
}, |
|||
{ |
|||
"icon_id": "6151391", |
|||
"name": "angle-double-up", |
|||
"font_class": "angle-double", |
|||
"unicode": "e849", |
|||
"unicode_decimal": 59465 |
|||
}, |
|||
{ |
|||
"icon_id": "1727559", |
|||
"name": "323向左交换", |
|||
"font_class": "rise", |
|||
"unicode": "e8f8", |
|||
"unicode_decimal": 59640 |
|||
}, |
|||
{ |
|||
"icon_id": "1727561", |
|||
"name": "324向右交换", |
|||
"font_class": "decline", |
|||
"unicode": "e8f9", |
|||
"unicode_decimal": 59641 |
|||
} |
|||
] |
|||
} |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 9.8 KiB |
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 5.7 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 395 B |
After Width: | Height: | Size: 279 B |
After Width: | Height: | Size: 647 B |
After Width: | Height: | Size: 284 B |
After Width: | Height: | Size: 693 B |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 6.8 KiB |
After Width: | Height: | Size: 6.2 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 927 B |
After Width: | Height: | Size: 909 B |
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 9.1 KiB |
After Width: | Height: | Size: 5.3 KiB |
After Width: | Height: | Size: 996 B |
After Width: | Height: | Size: 367 B |
After Width: | Height: | Size: 561 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 5.7 KiB |
After Width: | Height: | Size: 6.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 885 B |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 4.5 KiB |
After Width: | Height: | Size: 4.7 KiB |
After Width: | Height: | Size: 4.1 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 4.8 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 8.3 KiB |
After Width: | Height: | Size: 6.4 KiB |
After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 1.1 KiB |