update icon

This commit is contained in:
g7hoo 2023-05-13 18:17:19 +08:00
parent e6c7a143e8
commit 0b7feca848
11 changed files with 30 additions and 5 deletions

BIN
src/assets/fan-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
src/assets/gas-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 748 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 890 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 905 B

BIN
src/assets/xicao-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 627 B

View File

@ -1,7 +1,7 @@
<template>
<!-- 窑底温度 -->
<Container usage="Charts">
<SubContainer title="窑底温度" icon="oil" padding="34px">
<SubContainer title="窑底温度" icon="kbtm" padding="34px">
<div class="tables flex" style="height: 100%">
<LineChart
key="1"

View File

@ -1,7 +1,7 @@
<template>
<!-- 风机运行情况 -->
<Container usage="Table">
<SubContainer title="风机运行情况" icon="docs" padding="34px">
<SubContainer title="风机运行情况" icon="fan" padding="34px">
<div class="tables flex" style="height: 100%">
<div class="table-wrapper flex-1 align-start">
<table class="table-1">

View File

@ -1,7 +1,7 @@
<template>
<!-- 天然气流量 -->
<Container usage="Charts">
<SubContainer title="天然气流量" icon="oil" padding="34px">
<SubContainer title="天然气流量" icon="gas" padding="34px">
<div class="tables flex" style="height: 100%">
<LineChart
key="1"

View File

@ -1,7 +1,7 @@
<template>
<!-- 窑顶温度 -->
<Container usage="Charts">
<SubContainer title="窑顶温度" icon="oil" padding="34px">
<SubContainer title="窑顶温度" icon="ktop" padding="34px">
<div class="tables flex" style="height: 100%">
<LineChart
key="1"

View File

@ -1,7 +1,7 @@
<template>
<!-- 锡槽温度 -->
<Container usage="Charts">
<SubContainer title="锡槽温度" icon="oil" padding="34px">
<SubContainer title="锡槽温度" icon="xicao" padding="34px">
<div class="tables flex" style="height: 100%">
<LineChart
key="1"

View File

@ -34,7 +34,12 @@ export default {
clock: "icon-clock",
docs: "icon-docs",
oil: "icon-oil",
gas: "icon-gas",
xicao: "icon-xc",
inWater: "icon-water-in",
fan: 'icon-fan',
ktop: 'icon-kiln-top',
kbtm: 'icon-kiln-bottom',
},
};
},
@ -70,6 +75,26 @@ export default {
background: url(../../assets/oil.png);
background-size: 100% 100%;
}
.icon-gas {
background: url(../../assets/gas-icon.png);
background-size: 100% 100%;
}
.icon-xc {
background: url(../../assets/xicao-icon.png);
background-size: 100% 100%;
}
.icon-fan {
background: url(../../assets/fan-icon.png);
background-size: 100% 100%;
}
.icon-kiln-top {
background: url(../../assets/kiln-top-icon.png);
background-size: 100% 100%;
}
.icon-kiln-bottom {
background: url(../../assets/kiln-bottom-icon.png);
background-size: 100% 100%;
}
.icon-water-in {
background: url(../../assets/water-temp.png);