add:电动门 对接接口
This commit is contained in:
@@ -22,7 +22,7 @@
|
||||
:style="{
|
||||
'background-color': ['#e43e1e', '#f59a23', '#bbcf10', '#62d7a7'][index % 3],
|
||||
}">
|
||||
{{ ['A号门', 'B号门', 'C号门', 'D号门'][index % 3] }}
|
||||
{{ item.deviceInfoName }}
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
@@ -44,7 +44,7 @@
|
||||
:style="{
|
||||
'background-color': ['#e43e1e', '#f59a23', '#bbcf10', '#62d7a7'][index % 3],
|
||||
}">
|
||||
{{ ['A号门', 'B号门', 'C号门', 'D号门'][index % 3] }}
|
||||
{{ item.deviceInfoName }}
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
@@ -75,12 +75,17 @@
|
||||
:style="{
|
||||
border:
|
||||
'1px solid ' +
|
||||
{ '0': '#bfcde2', '1': '#0dffa4', '2': '#ffbc46' }[record.EGstRu],
|
||||
color: { '0': '#bfcde2', '1': '#0dffa4', '2': '#ffbc46' }[record.EGstRu],
|
||||
{ '0': '#bfcde2', '1': '#0dffa4', '2': '#ffbc46' }[record.record.EGstRu],
|
||||
color: { '0': '#bfcde2', '1': '#0dffa4', '2': '#ffbc46' }[
|
||||
record.record.EGstRu
|
||||
],
|
||||
}">
|
||||
{{ record.runMode.label }}
|
||||
{{ record.record.runMode.label }}
|
||||
</a-tag>
|
||||
</template>
|
||||
<template v-if="column.dataIndex === 'time'">
|
||||
{{ record.record.time.substring(11, 19) }}
|
||||
</template>
|
||||
</template>
|
||||
</a-table>
|
||||
</div>
|
||||
@@ -101,7 +106,7 @@
|
||||
x
|
||||
</div>
|
||||
<div style="color: rgb(53, 205, 0); font-size: 20px; font-weight: 700">
|
||||
{{ infoObject.name }}
|
||||
{{ infoObject.deviceInfoName }}
|
||||
</div>
|
||||
<img
|
||||
style="width: 100%; margin-top: -10px"
|
||||
@@ -159,7 +164,7 @@
|
||||
// 处理点击事件
|
||||
detailed.value = !detailed.value;
|
||||
infoObject.value = record;
|
||||
tables.value.toggle(record);
|
||||
tables.value.toggle(record.record);
|
||||
},
|
||||
};
|
||||
};
|
||||
@@ -168,24 +173,22 @@
|
||||
const columns = [
|
||||
{
|
||||
title: '序号',
|
||||
dataIndex: 'name',
|
||||
key: 'name',
|
||||
dataIndex: 'deviceInfoName',
|
||||
key: 'deviceInfoName',
|
||||
width: 100,
|
||||
ellipsis: true,
|
||||
},
|
||||
{
|
||||
title: '执行时间',
|
||||
dataIndex: 'time',
|
||||
key: 'time',
|
||||
width: 100,
|
||||
customRender: ({ value }: any) => {
|
||||
return value.substring(11, 19);
|
||||
},
|
||||
width: 80,
|
||||
},
|
||||
{
|
||||
title: '状态',
|
||||
dataIndex: 'EGstRu',
|
||||
key: 'EGstRu',
|
||||
width: 160,
|
||||
width: 110,
|
||||
},
|
||||
];
|
||||
const dataSource = ref([]);
|
||||
|
@@ -6,9 +6,12 @@
|
||||
:loading="loading">
|
||||
<template #bodyCell="{ record, column }">
|
||||
<template v-if="column.dataIndex === 'state'">
|
||||
<span :style="{ color: { '0': '#bfcde2', '1': '#0dffa4' }[record.switchStatus.value] }">{{
|
||||
record.switchStatus.label
|
||||
}}</span>
|
||||
<span
|
||||
:style="{
|
||||
color: { '0': '#bfcde2', '1': '#0dffa4', '2': '#ffbc46' }[record.runMode.value],
|
||||
}"
|
||||
>{{ record.runMode.label }}</span
|
||||
>
|
||||
</template>
|
||||
</template>
|
||||
</a-table>
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 553 KiB After Width: | Height: | Size: 1.1 MiB |
Reference in New Issue
Block a user