<!-- 机巢概况 -->
|
<template>
|
<common-title title="机巢概况" :style="{ marginLeft: pxToRem(14) }" @details="detailsFun"></common-title>
|
<div class="overview-next">
|
<MachineNestTotal @searchNickName="handleSearch" />
|
<div class="table-list">
|
<div class="table-header">
|
<div class="name">机巢名称</div>
|
<div class="status">机巢状态</div>
|
</div>
|
<div class="table-body" v-if="tableList.length > 0"
|
infinite-scroll-distance="6"
|
v-infinite-scroll="loadMore"
|
:infinite-scroll-disabled="busy"
|
infinite-scroll-immediate="true">
|
<div class="table-item" v-for="item in tableList">
|
<div class="name">
|
<!-- <img class="yjzx-img" width="10" height="10" src="@/assets/images/home/homeLeft/table-zx.png" alt="" /> -->
|
<img width="13" height="15" src="../../../assets/images/home/homeLeft/table-icon.png" alt="" />
|
{{ item.nickname }}
|
</div>
|
<div class="status" :class="item.status==='WORKING'?'atcive':''" @click="signMachineNestClick(item)">
|
{{ item.status==='OFFLINE'?'离线中':(item.status==='WORKING'?'作业中':'空闲中') }}
|
</div>
|
</div>
|
</div>
|
<el-empty class="custom-empty" v-else>
|
<template #description>
|
<span class="custom-text">暂无数据</span>
|
</template>
|
</el-empty>
|
</div>
|
</div>
|
</template>
|
<script setup>
|
import CommonTitle from '@/components/CommonTitle.vue';
|
import MachineNestTotal from './components/MachineNestTotal.vue';
|
import { selectDevicePage } from '@/api/home/machineNest.js'
|
import { useStore } from 'vuex';
|
|
const store = useStore();
|
|
const isMore = ref(true);
|
// 控制加载状态
|
const busy = ref(false);
|
const searchText = ref('');
|
// 分页参数
|
const pageParams = ref({
|
current: 1,
|
size: 5,
|
total: 0
|
});
|
// 机巢列表
|
const tableList = ref([]);
|
// 机巢列表数据
|
const getTableList = () => {
|
const params = {
|
nickname: searchText.value,
|
is_execute: true,
|
current: pageParams.value.current,
|
size: pageParams.value.size
|
};
|
selectDevicePage(params).then((res) => {
|
if (res.data.code !== 0) return;
|
if (res.data.data.records.length === 0) return (isMore.value = false);
|
pageParams.value.current += 1;
|
tableList.value = [...tableList.value, ...res.data.data.records];
|
busy.value = false;
|
});
|
}
|
|
// 加载更多数据
|
const loadMore = async () => {
|
busy.value = true;
|
if (!isMore.value) return;
|
getTableList();
|
};
|
|
// 搜索数据
|
const handleSearch = (name) => {
|
searchText.value = name;
|
pageParams.value.current = 1;
|
tableList.value = [];
|
isMore.value = true
|
getTableList();
|
}
|
|
// 单个机巢详情
|
const signMachineNestClick = (item) => {
|
store.commit('setSingleUavHome', item);
|
}
|
|
const detailsFun = () => {
|
store.commit('setMachineNestDetail', true);
|
};
|
|
onMounted(() => {
|
getTableList();
|
});
|
</script>
|
<style scoped lang="scss">
|
.overview-next {
|
font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
|
margin-left: 29px;
|
padding: 16px 16px;
|
width: 390px;
|
height: 414px;
|
background: linear-gradient(
|
270deg,
|
rgba(31, 62, 122, 0) 0%,
|
rgba(31, 62, 122, 0.35) 21%,
|
#1f3e7a 100%
|
);
|
border-radius: 0px 0px 0px 0px;
|
opacity: 0.85;
|
margin-bottom: 10px;
|
|
.table-list {
|
font-family: Source Han Sans CN, Source Han Sans CN;
|
margin: 16px;
|
font-weight: 500;
|
font-size: 16px;
|
height: 220px;
|
.table-header,
|
.table-item {
|
display: flex;
|
justify-content: space-between;
|
height: 36px;
|
line-height: 36px;
|
padding: 0 20px;
|
}
|
.table-header {
|
background: linear-gradient( 90deg, rgba(12,45,92,1) 0%, #0C3B78 50%, rgba(12,45,92,1) 100%), linear-gradient( 90deg, rgba(12,45,92,1) 0%, rgba(12,45,92,1) 50%, rgba(12,45,92,1) 100%);
|
border-radius: 0px 0px 0px 0px;
|
// border: 1px solid;
|
}
|
.table-body {
|
height: 190px;
|
overflow: auto;
|
&::-webkit-scrollbar {
|
width: 0;
|
display: none;
|
}
|
-ms-overflow-style: none; /* IE and Edge */
|
scrollbar-width: none; /* Firefox */
|
}
|
.table-item {
|
position: relative;
|
.yjzx-img {
|
position: absolute;
|
top: 14px;
|
left: 10px;
|
}
|
.status {
|
color: #6fc3ff;
|
cursor: pointer;
|
}
|
.atcive {
|
color: #04f020;
|
background: linear-gradient( 90deg, rgba(12,45,92,1) 0%, #154671 50%, rgba(12,45,92,1) 100%), linear-gradient( 90deg, rgba(12,45,92,1) 0%, rgba(12,45,92,1) 50%, rgba(12,45,92,1) 100%);
|
}
|
}
|
.custom-empty {
|
margin: 16px 0;
|
padding: 0;
|
:deep(.el-empty__image) {
|
width: 100px;
|
height: 100px;
|
}
|
}
|
}
|
}
|
</style>
|