设备看板修改

master
LAPTOP-R6EHHS26\86155 6 months ago
parent a67866390a
commit 115ffa619d

@ -6,6 +6,7 @@ ENV = 'development'
# Open Platform # Open Platform
VUE_APP_BASE_API = '/dev-api' VUE_APP_BASE_API = '/dev-api'
# VUE_APP_BASE_API = '/prod-api'
# 路由懒加载 # 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true VUE_CLI_BABEL_TRANSPILE_MODULES = true

@ -0,0 +1,24 @@
import request from '@/utils/request'
// 获取工厂下拉列表
export function getBoardFactory(data) {
return request({
url: '/mes/wcsInterface/getBoardFactory',
method: 'post',
data: data
});
}
// 根据工厂获取产线
export function getDictData(data) {
return request({
url: '/quality/qcInterface/getDictData',
method: 'get',
params: data
});
}
export function getProduction15Days(data) {
return request({
url: '/quality/qcInterface/getProduction15Days',
method: 'post',
data: data
});
}

File diff suppressed because it is too large Load Diff

@ -9,19 +9,48 @@
<img src="../../../assets/images/logo.png" alt="" /> <img src="../../../assets/images/logo.png" alt="" />
</div> </div>
<div class="back"> <div class="back">
<el-button @click="back()" type="primary" icon="el-icon-s-home"></el-button> <el-button
@click="back()"
type="primary"
icon="el-icon-s-home"
></el-button>
</div> </div>
</div> </div>
<div class="content-top"> <div class="content-top">
<div class="factory"> <div class="factory">
<div class="selectborder"> <div class="selectborder">
<select v-model="selectxt" class="select1" @change="selectline(selectxt)"> <select
<option :key="index" :value="x.parentName" v-for="(x, index) in getLineList"> v-model="selectxt"
class="select1"
@change="selectline(selectxt)"
>
<option
:key="index"
:value="x.parentName"
v-for="(x, index) in getLineList"
>
{{ x.deptName }} {{ x.deptName }}
</option> </option>
<!-- <option :key="index" :value="x.seriesName" v-for="(x, index) in ceshib">{{ x.seriesName }}</option> --> <!-- <option :key="index" :value="x.seriesName" v-for="(x, index) in ceshib">{{ x.seriesName }}</option> -->
</select> </select>
</div> </div>
<el-date-picker
style="
margin-left: 10px;
background-color: #142945;
color: #ffffff;
height: 70%;
"
v-model="StartArray"
type="daterange"
range-separator="至"
start-placeholder="开始日期"
value-format="yyyy-MM-dd"
end-placeholder="结束日期"
@change="handleDateChange"
>
</el-date-picker>
<!-- <div class="selectborder selectborder1"> <!-- <div class="selectborder selectborder1">
<select v-model="selectxtclasses" class="select1" @change="selectline2(selectxtclasses)"> <select v-model="selectxtclasses" class="select1" @change="selectline2(selectxtclasses)">
<option :key="index" :value="x.shiftId" v-for="(x, index) in classesList"> <option :key="index" :value="x.shiftId" v-for="(x, index) in classesList">
@ -40,15 +69,21 @@
<div class="itemtop"> <div class="itemtop">
<div class="left"> <div class="left">
<div class="item-table"> <div class="item-table">
<table class="table-thead" border="0" cellpadding="0" cellspacing="0"> <table
class="table-thead"
border="0"
cellpadding="0"
cellspacing="0"
>
<thead> <thead>
<tr style="height: 44px;"> <tr style="height: 44px">
<td style="width: 8%;">序号</td> <td style="width: 8%">序号</td>
<td style="width: 18%;">设备名称</td> <td style="width: 18%">设备名称</td>
<td style="width: 20%;">所在部门</td> <td style="width: 18%">设备编码</td>
<td style="width: 10%;">状态</td> <td style="width: 20%">所在部门</td>
<td style="width: 12%;">设备故障率</td> <td style="width: 10%">状态</td>
<td style="width: 12%;">设备有效利用率</td> <td style="width: 12%">设备故障率</td>
<td style="width: 12%">设备有效利用率</td>
</tr> </tr>
</thead> </thead>
</table> </table>
@ -56,14 +91,27 @@
<!-- <vue-seamless-scroll :data="getlistcx" :class-option="classOption" class="wrapscroll"> --> <!-- <vue-seamless-scroll :data="getlistcx" :class-option="classOption" class="wrapscroll"> -->
<table border="0" cellpadding="0" cellspacing="0"> <table border="0" cellpadding="0" cellspacing="0">
<tbody> <tbody>
<tr :class="[index % 2 == 1 ? 'active1' : 'active2']" style="height:48px" :key="index" <tr
v-for="(n, index) in equipmentlist"> :class="[index % 2 == 1 ? 'active1' : 'active2']"
<td style="width: 8%;">{{ index + 1 }}</td> style="height: 48px"
<td style="width: 18%;">{{ n.equipmentName }}</td> :key="index"
<td style="width: 20%;">{{ n.department || '无' }}</td> v-for="(n, index) in equipmentlist"
<td style="width: 10%;">{{ n.dictLabel }}</td> >
<td style="width: 12%;">{{ n.failureRate != null ? n.failureRate + '%' : '--' }}</td> <td style="width: 8%">{{ index + 1 }}</td>
<td style="width: 12%;">{{ n.utilizationRatio != null ? n.utilizationRatio + '%' : '--' }}</td> <td style="width: 18%">{{ n.equipmentName }}</td>
<td style="width: 18%">{{ n.equipmentCode }}</td>
<td style="width: 20%">{{ n.department || "无" }}</td>
<td style="width: 10%">{{ n.dictLabel }}</td>
<td style="width: 12%">
{{ n.failureRate != null ? n.failureRate + "%" : "--" }}
</td>
<td style="width: 12%">
{{
n.utilizationRatio != null
? n.utilizationRatio + "%"
: "--"
}}
</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
@ -71,21 +119,25 @@
</div> </div>
</div> </div>
<div class="item-table item-table1"> <div class="item-table item-table1">
<div class="titlebox" style="margin-bottom: 14px;"> <div class="titlebox" style="margin-bottom: 14px">
<div class="titlename">维修工单</div> <div class="titlename">维修工单</div>
</div> </div>
<table class="table-thead" border="0" cellpadding="0" cellspacing="0"> <table
class="table-thead"
border="0"
cellpadding="0"
cellspacing="0"
>
<thead> <thead>
<tr style="height: 44px;"> <tr style="height: 44px">
<td style="width: 8%;">序号</td> <td style="width: 8%">序号</td>
<td style="width: 12%;">设备名称</td> <td style="width: 12%">设备名称</td>
<td style="width: 12%;">设备编码</td> <td style="width: 12%">设备编码</td>
<td style="width: 12%;">设备位置</td> <td style="width: 12%">设备位置</td>
<td style="width: 12%;">故障原因</td> <td style="width: 12%">故障原因</td>
<td style="width: 12%;">维修组</td> <td style="width: 12%">维修组</td>
<td style="width: 10%;">是否立即维修</td> <td style="width: 10%">是否立即维修</td>
<td style="width: 18%;">计划维修时间</td> <td style="width: 18%">计划维修时间</td>
</tr> </tr>
</thead> </thead>
</table> </table>
@ -93,16 +145,22 @@
<!-- <vue-seamless-scroll :data="getlistcx" :class-option="classOption" class="wrapscroll"> --> <!-- <vue-seamless-scroll :data="getlistcx" :class-option="classOption" class="wrapscroll"> -->
<table border="0" cellpadding="0" cellspacing="0"> <table border="0" cellpadding="0" cellspacing="0">
<tbody> <tbody>
<tr :class="[index % 2 == 1 ? 'active1' : 'active2']" style="height:48px" :key="index" <tr
v-for="(n, index) in repairlist"> :class="[index % 2 == 1 ? 'active1' : 'active2']"
<td style="width: 8%;">{{ index + 1 }}</td> style="height: 48px"
<td style="width: 12%;">{{ n.equipmentName }}</td> :key="index"
<td style="width: 12%;">{{ n.equipmentCode }}</td> v-for="(n, index) in repairlist"
<td style="width: 12%;">{{ n.equipmentLocation || '无' }}</td> >
<td style="width: 12%;">{{ n.workFaultDesc }}</td> <td style="width: 8%">{{ index + 1 }}</td>
<td style="width: 12%;">{{ n.teamName }}</td> <td style="width: 12%">{{ n.equipmentName }}</td>
<td style="width: 10%;">{{ n.workHandle }}</td> <td style="width: 12%">{{ n.equipmentCode }}</td>
<td style="width: 18%;">{{ n.workPlanTime }}</td> <td style="width: 12%">
{{ n.equipmentLocation || "无" }}
</td>
<td style="width: 12%">{{ n.workFaultDesc }}</td>
<td style="width: 12%">{{ n.teamName }}</td>
<td style="width: 10%">{{ n.workHandle }}</td>
<td style="width: 18%">{{ n.workPlanTime }}</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
@ -111,38 +169,35 @@
</div> </div>
</div> </div>
<div class="right"> <div class="right">
<div class="echart1title"> <div class="echart1title">完好设备占比</div>
完好设备占比 <div
</div> class="echartbox"
<div class="echartbox" id="echart1" style="margin: auto; margin-top: 60px;width: 395px; height: 175px"> id="echart1"
style="
</div> margin: auto;
margin-top: 60px;
width: 395px;
height: 175px;
"
></div>
<div class="equipmentinfobox"> <div class="equipmentinfobox">
<div class="box"> <div class="box">
<div class="number"> <div class="number">
<span class="number1"> <span class="number1">
{{ equipmentinfo.totalEquipment }} {{ equipmentinfo.totalEquipment }}
</span> </span>
<span class="name1"> <span class="name1"> </span>
</span>
</div>
<div class="name2">
设备总数
</div> </div>
<div class="name2">设备总数</div>
</div> </div>
<div class="box"> <div class="box">
<div class="number"> <div class="number">
<span class="number1" style="color: #FF4D4F;"> <span class="number1" style="color: #ff4d4f">
{{ equipmentinfo.faultEquipment }} {{ equipmentinfo.faultEquipment }}
</span> </span>
<span class="name1"> <span class="name1"> </span>
</span>
</div>
<div class="name2">
故障总数
</div> </div>
<div class="name2">故障总数</div>
</div> </div>
</div> </div>
</div> </div>
@ -176,17 +231,21 @@
</div> </div>
</div> --> </div> -->
<div class="item-table item-table1"> <div class="item-table item-table1">
<div class="titlebox" style="margin-bottom: 14px;"> <div class="titlebox" style="margin-bottom: 14px">
<div class="titlename">设备稳定性</div> <div class="titlename">设备稳定性</div>
</div> </div>
<table class="table-thead" border="0" cellpadding="0" cellspacing="0"> <table
class="table-thead"
border="0"
cellpadding="0"
cellspacing="0"
>
<thead> <thead>
<tr style="height: 44px;"> <tr style="height: 44px">
<td style="width: 8%;">排名</td> <td style="width: 8%">排名</td>
<td style="width: 15%;">设备名称</td> <td style="width: 15%">设备名称</td>
<td style="width: 8%;">设备编码</td> <td style="width: 8%">设备编码</td>
<td style="width: 12%;">MTBF</td> <td style="width: 12%">MTBF</td>
</tr> </tr>
</thead> </thead>
</table> </table>
@ -194,12 +253,18 @@
<!-- <vue-seamless-scroll :data="getlistcx" :class-option="classOption" class="wrapscroll"> --> <!-- <vue-seamless-scroll :data="getlistcx" :class-option="classOption" class="wrapscroll"> -->
<table border="0" cellpadding="0" cellspacing="0"> <table border="0" cellpadding="0" cellspacing="0">
<tbody> <tbody>
<tr :class="[index % 2 == 1 ? 'active1' : 'active2']" style="height:48px" :key="index" <tr
v-for="(n, index) in equipmentstabilizelist"> :class="[index % 2 == 1 ? 'active1' : 'active2']"
<td style="width: 8%;">{{ index + 1 }}</td> style="height: 48px"
<td style="width: 15%;">{{ n.equipmentName }}</td> :key="index"
<td style="width: 8%;">{{ n.equipmentCode }}</td> v-for="(n, index) in equipmentstabilizelist"
<td style="width: 12%;">{{ n.mtbf != null ? n.mtbf + 'h' : '--' }}</td> >
<td style="width: 8%">{{ index + 1 }}</td>
<td style="width: 15%">{{ n.equipmentName }}</td>
<td style="width: 8%">{{ n.equipmentCode }}</td>
<td style="width: 12%">
{{ n.mtbf != null ? n.mtbf + "h" : "--" }}
</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
@ -207,17 +272,21 @@
</div> </div>
</div> </div>
<div class="item-table item-table1"> <div class="item-table item-table1">
<div class="titlebox" style="margin-bottom: 14px;"> <div class="titlebox" style="margin-bottom: 14px">
<div class="titlename">设备维修质量</div> <div class="titlename">设备维修质量</div>
</div> </div>
<table class="table-thead" border="0" cellpadding="0" cellspacing="0"> <table
class="table-thead"
border="0"
cellpadding="0"
cellspacing="0"
>
<thead> <thead>
<tr style="height: 44px;"> <tr style="height: 44px">
<td style="width: 8%;">排名</td> <td style="width: 8%">排名</td>
<td style="width: 12%;">设备名称</td> <td style="width: 12%">设备名称</td>
<td style="width: 12%;">设备编码</td> <td style="width: 12%">设备编码</td>
<td style="width: 12%;">MTTR</td> <td style="width: 12%">MTTR</td>
</tr> </tr>
</thead> </thead>
</table> </table>
@ -225,12 +294,18 @@
<!-- <vue-seamless-scroll :data="getlistcx" :class-option="classOption" class="wrapscroll"> --> <!-- <vue-seamless-scroll :data="getlistcx" :class-option="classOption" class="wrapscroll"> -->
<table border="0" cellpadding="0" cellspacing="0"> <table border="0" cellpadding="0" cellspacing="0">
<tbody> <tbody>
<tr :class="[index % 2 == 1 ? 'active1' : 'active2']" style="height:48px" :key="index" <tr
v-for="(n, index) in equipmentrepairlist"> :class="[index % 2 == 1 ? 'active1' : 'active2']"
<td style="width: 8%;">{{ index + 1 }}</td> style="height: 48px"
<td style="width: 12%;">{{ n.equipmentName }}</td> :key="index"
<td style="width: 12%;">{{ n.equipmentCode }}</td> v-for="(n, index) in equipmentrepairlist"
<td style="width: 12%;">{{ n.rapairQuantity != null ? n.rapairQuantity + 'h' : '--' }}</td> >
<td style="width: 8%">{{ index + 1 }}</td>
<td style="width: 12%">{{ n.equipmentName }}</td>
<td style="width: 12%">{{ n.equipmentCode }}</td>
<td style="width: 12%">
{{ n.mttr != null ? n.mttr + "h" : "--" }}
</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
@ -264,8 +339,7 @@ import moment from "moment";
// import Echarts3D2 from "./echarts3d2.vue"; // import Echarts3D2 from "./echarts3d2.vue";
export default { export default {
name: "Index", name: "Index",
components: { components: {},
},
data() { data() {
return { return {
gettimedata: "", gettimedata: "",
@ -303,11 +377,11 @@ export default {
equipmentinfo: [], equipmentinfo: [],
RefreshTime: null, RefreshTime: null,
dictlist: [], dictlist: [],
StartArray: [],
}; };
}, },
created() { created() {
this.getdictlist() this.getdictlist();
}, },
destroyed() { destroyed() {
clearInterval(this.time1); clearInterval(this.time1);
@ -335,10 +409,10 @@ export default {
getdictlist({ getdictlist({
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
dictType: 'equipment_status', dictType: "equipment_status",
}).then((response) => { }).then((response) => {
if (response) { if (response) {
this.dictlist = response.rows this.dictlist = response.rows;
} }
}); });
}, },
@ -350,8 +424,8 @@ export default {
if (response) { if (response) {
_this.getLineList = response.data; _this.getLineList = response.data;
_this.selectxt = _this.getLineList[0].parentName; _this.selectxt = _this.getLineList[0].parentName;
_this.getdatalist(_this.selectxt) _this.getdatalist(_this.selectxt);
_this.getDeviceRefreshTime() _this.getDeviceRefreshTime();
} }
}); });
}, },
@ -359,89 +433,115 @@ export default {
const _this = this; const _this = this;
getDeviceRefreshTime().then((response) => { getDeviceRefreshTime().then((response) => {
if (response.data) { if (response.data) {
console.log(response.data) console.log(response.data);
this.RefreshTime = response.data this.RefreshTime = response.data;
this.RefreshTime = 1 this.RefreshTime = 1;
this.time1 = setInterval(() => { this.time1 = setInterval(() => {
_this.getdatalist(_this.selectxt) _this.getdatalist(_this.selectxt);
}, 1000 * 60 * this.RefreshTime); }, 1000 * 60 * this.RefreshTime);
} }
}); });
}, },
getdatalist(Name) { getdatalist(Name) {
const _this = this; const _this = this;
let poolName = 'ds_' + Name let poolName = "ds_" + Name;
getRepairWorkOrder({ getRepairWorkOrder({
poolName: poolName, poolName: poolName,
}).then((response) => { }).then((response) => {
if (response.data) { if (response.data) {
response.data.forEach((item) => { response.data.forEach((item) => {
item.workPlanTime = moment(item.workPlanTime).format('YYYY-MM-DD HH:mm:ss') item.workPlanTime = moment(item.workPlanTime).format(
"YYYY-MM-DD HH:mm:ss"
);
}); });
_this.repairlist = response.data _this.repairlist = response.data;
} }
}); });
getEquipmentInfo({ getEquipmentInfo({
poolName: poolName, poolName: poolName,
startTime: _this.StartArray[0],
endTime: _this.StartArray[1],
}).then((response) => { }).then((response) => {
if (response.data) { if (response.data) {
_this.equipmentlist = response.data _this.equipmentlist = response.data;
_this.equipmentlist.forEach((item) => { _this.equipmentlist.forEach((item) => {
_this.dictlist.forEach((m) => { _this.dictlist.forEach((m) => {
if (item.equipmentStatus == m.dictValue) { if (item.equipmentStatus == m.dictValue) {
item.dictLabel = m.dictLabel item.dictLabel = m.dictLabel;
} }
}); });
if (item.failureRate) { if (item.failureRate) {
item.failureRate = parseFloat(item.failureRate).toFixed(2) item.failureRate = parseFloat(item.failureRate).toFixed(2);
} }
if (item.utilizationRatio) { if (item.utilizationRatio) {
item.utilizationRatio = parseFloat(item.utilizationRatio).toFixed(2) item.utilizationRatio = parseFloat(item.utilizationRatio).toFixed(
2
);
} }
}); });
} }
}); });
getRepairQuantity({ getRepairQuantity({
poolName: poolName, poolName: poolName,
startTime: _this.StartArray[0],
endTime: _this.StartArray[1],
}).then((response) => { }).then((response) => {
if (response.data) { if (response.data) {
_this.equipmentrepairlist = response.data _this.equipmentrepairlist = response.data;
} }
}); });
equipmentIntactRate({ equipmentIntactRate({
poolName: poolName, poolName: poolName,
startTime: _this.StartArray[0],
endTime: _this.StartArray[1],
}).then((response) => { }).then((response) => {
if (response.data) { if (response.data) {
_this.equipmentinfo = response.data _this.equipmentinfo = response.data;
_this.initChart1() _this.initChart1();
} }
}); });
equipmentStability({ equipmentStability({
poolName: poolName, poolName: poolName,
startTime: _this.StartArray[0],
endTime: _this.StartArray[1],
}).then((response) => { }).then((response) => {
if (response.data) { if (response.data) {
_this.equipmentstabilizelist = response.data _this.equipmentstabilizelist = response.data;
} }
}); });
}, },
//
handleDateChange(value) {
console.log("选择的日期:", value);
if (value == null) {
this.StartArray = [];
this.getdatalist(this.selectxt);
} else {
if(this.StartArray[0] == this.StartArray[1]){
this.StartArray[0] = moment(this.StartArray[0]).format("YYYY-MM-DD 00:00:00 ")
this.StartArray[1] = moment(this.StartArray[1]).add(1, 'day').startOf('day').format('YYYY-MM-DD 00:00:00');
}
this.StartArray = value;
this.getdatalist(this.selectxt);
}
},
initChart1() { initChart1() {
const _this = this const _this = this;
let intactRate = 0 let intactRate = 0;
let numberAngle = 180 let numberAngle = 180;
console.log(_this.equipmentinfo.intactRate) console.log(_this.equipmentinfo.intactRate);
if (_this.equipmentinfo.intactRate) { if (_this.equipmentinfo.intactRate) {
intactRate = _this.equipmentinfo.intactRate intactRate = _this.equipmentinfo.intactRate;
numberAngle = parseInt(180 -_this.equipmentinfo.intactRate * 1.8) numberAngle = parseInt(180 - _this.equipmentinfo.intactRate * 1.8);
} }
console.log(numberAngle) console.log(numberAngle);
var myChart1 = echarts.init(document.querySelector("#echart1")); var myChart1 = echarts.init(document.querySelector("#echart1"));
var option1 = { var option1 = {
// //
tooltip: { tooltip: {
formatter: "{a} <br/>{b} : {c}%", formatter: "{a} <br/>{b} : {c}%",
}, },
grid: { grid: {},
},
// //
series: [ series: [
{ {
@ -661,7 +761,7 @@ export default {
color: "#fff", color: "#fff",
splitNumber: 4, // splitNumber: 4, //
type: "gauge", type: "gauge",
name: '完好设备占比', name: "完好设备占比",
// //
radius: 135, radius: 135,
// 090180 // 090180
@ -743,13 +843,11 @@ export default {
color: "#fff", color: "#fff",
fontSize: 30, fontSize: 30,
}, },
}, },
data: [ data: [
{ {
value: intactRate, value: intactRate,
}, },
], ],
}, },
], ],
@ -762,7 +860,7 @@ export default {
this.optionDatalist2 = []; this.optionDatalist2 = [];
this.optionDatalist3 = []; this.optionDatalist3 = [];
this.optionDatalist4 = []; this.optionDatalist4 = [];
_this.getdatalist(_this.selectxt) _this.getdatalist(_this.selectxt);
}, },
// //
@ -865,7 +963,8 @@ export default {
.item-table { .item-table {
width: 1243px; width: 1243px;
height: 292px; height: 292px;
background: url('../../../assets/images/equipment/bg-border1.png') no-repeat; background: url("../../../assets/images/equipment/bg-border1.png")
no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
padding: 27px 21px 30px 25px; padding: 27px 21px 30px 25px;
box-sizing: border-box; box-sizing: border-box;
@ -875,13 +974,13 @@ export default {
width: 1197px; width: 1197px;
height: 44px; height: 44px;
margin: auto; margin: auto;
background: #0A1A33; background: #0a1a33;
td { td {
font-size: 19px; font-size: 19px;
font-family: NotoSansHans-Medium, NotoSansHans; font-family: NotoSansHans-Medium, NotoSansHans;
font-weight: 500; font-weight: 500;
color: #159AFF; color: #159aff;
text-align: center; text-align: center;
white-space: nowrap; white-space: nowrap;
} }
@ -903,9 +1002,9 @@ export default {
font-size: 19px; font-size: 19px;
font-family: NotoSansHans-Medium, NotoSansHans; font-family: NotoSansHans-Medium, NotoSansHans;
font-weight: 500; font-weight: 500;
color: #FFFFFF; color: #ffffff;
text-align: center; text-align: center;
border-bottom: 1px dashed #6C8097 border-bottom: 1px dashed #6c8097;
} }
} }
} }
@ -926,7 +1025,8 @@ export default {
margin-left: 23px; margin-left: 23px;
width: 610px; width: 610px;
height: 604px; height: 604px;
background: url('../../../assets/images/equipment/bg-border1.png') no-repeat; background: url("../../../assets/images/equipment/bg-border1.png")
no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
// padding: 27px 21px 30px 25px; // padding: 27px 21px 30px 25px;
box-sizing: border-box; box-sizing: border-box;
@ -947,7 +1047,7 @@ export default {
z-index: 9999; z-index: 9999;
font-size: 24px; font-size: 24px;
font-weight: bold; font-weight: bold;
color: #FFFFFF; color: #ffffff;
} }
.equipmentinfobox { .equipmentinfobox {
@ -959,7 +1059,8 @@ export default {
.box { .box {
width: 186px; width: 186px;
height: 180px; height: 180px;
background: url('../../../assets/images/equipment/number.png') no-repeat; background: url("../../../assets/images/equipment/number.png")
no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
text-align: center; text-align: center;
padding-top: 30px; padding-top: 30px;
@ -969,13 +1070,13 @@ export default {
.number1 { .number1 {
font-size: 60px; font-size: 60px;
font-weight: 500; font-weight: 500;
color: #66FFFF; color: #66ffff;
} }
.name1 { .name1 {
font-size: 32px; font-size: 32px;
font-weight: 400; font-weight: 400;
color: #FFFFFF; color: #ffffff;
} }
} }
@ -983,7 +1084,7 @@ export default {
margin-top: 15px; margin-top: 15px;
font-size: 32px; font-size: 32px;
font-weight: bold; font-weight: bold;
color: #FFFFFF; color: #ffffff;
} }
} }
} }
@ -998,7 +1099,8 @@ export default {
.item-table { .item-table {
width: 610px; width: 610px;
height: 292px; height: 292px;
background: url('../../../assets/images/equipment/bg-border1.png') no-repeat; background: url("../../../assets/images/equipment/bg-border1.png")
no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
padding: 27px 21px 30px 25px; padding: 27px 21px 30px 25px;
box-sizing: border-box; box-sizing: border-box;
@ -1008,13 +1110,13 @@ export default {
width: 100%; width: 100%;
height: 44px; height: 44px;
margin: auto; margin: auto;
background: #0A1A33; background: #0a1a33;
td { td {
font-size: 19px; font-size: 19px;
font-family: NotoSansHans-Medium, NotoSansHans; font-family: NotoSansHans-Medium, NotoSansHans;
font-weight: 500; font-weight: 500;
color: #159AFF; color: #159aff;
text-align: center; text-align: center;
white-space: nowrap; white-space: nowrap;
} }
@ -1036,9 +1138,9 @@ export default {
font-size: 19px; font-size: 19px;
font-family: NotoSansHans-Medium, NotoSansHans; font-family: NotoSansHans-Medium, NotoSansHans;
font-weight: 500; font-weight: 500;
color: #FFFFFF; color: #ffffff;
text-align: center; text-align: center;
border-bottom: 1px dashed #6C8097 border-bottom: 1px dashed #6c8097;
} }
} }
} }
@ -1087,6 +1189,7 @@ export default {
.factory { .factory {
display: flex; display: flex;
align-items: center;
// justify-content: space-around; // justify-content: space-around;
} }
@ -1206,7 +1309,7 @@ export default {
} }
.active1 { .active1 {
background-color: #0D1B2F; background-color: #0d1b2f;
} }
.active2 { .active2 {
@ -1232,4 +1335,20 @@ export default {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
background-color: #0091ff; background-color: #0091ff;
} }
::v-deep .el-date-editor .el-range-input {
background-color: #142944;
color: #ffffff;
}
::v-deep .el-range-input::placeholder {
color: #ffffff; /* 设置 placeholder 文本的颜色 */
}
::v-deep .el-range-separator {
color: #ffffff; /* 设置 placeholder 文本的颜色 */
}
::v-deep .el-range-editor--medium .el-range-separator {
line-height: 35px;
}
::v-deep .el-input__icon .el-range__icon .el-icon-date {
color: #ffffff; /* 设置 placeholder 文本的颜色 */
}
</style> </style>

Loading…
Cancel
Save