You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
2.7 KiB
100 lines
2.7 KiB
<template> |
|
<div> |
|
<div style="height: 50px; line-height: 50px; border-bottom: 1px solid #4f4f4f; font-weight: 450;"> |
|
<a-row> |
|
<a-col :span="1"></a-col> |
|
<a-col :span="22">Devices</a-col> |
|
<a-col :span="1"></a-col> |
|
</a-row> |
|
</div> |
|
<div v-if="docksData.data.length !== 0"> |
|
<div v-for="dock in docksData.data" :key="dock.device_sn"> |
|
<div v-if="dock?.children" class="panel" style="padding-top: 5px;" @click="selectDock(dock)"> |
|
<div class="title"> |
|
<a-tooltip :title="dock.nickname"> |
|
<div class="pr10" style="width: 120px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;">{{ dock.nickname }}</div> |
|
</a-tooltip> |
|
</div> |
|
<div class="ml10 mt5" style="color: hsla(0,0%,100%,0.65);"> |
|
<span><RocketOutlined /></span> |
|
<span class="ml5">{{ dock.children?.nickname }}</span> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
<div v-else> |
|
<a-empty :image-style="{ height: '60px', marginTop: '60px' }" /> |
|
</div> |
|
</div> |
|
</template> |
|
|
|
<script lang="ts" setup> |
|
import { reactive } from '@vue/reactivity' |
|
import { message } from 'ant-design-vue' |
|
import { onMounted, ref } from 'vue' |
|
import { deleteWaylineFile, downloadWaylineFile, getWaylineFiles } from '/@/api/wayline' |
|
import { EDeviceTypeName, ELocalStorageKey } from '/@/types' |
|
import { EllipsisOutlined, RocketOutlined, CameraFilled, UserOutlined } from '@ant-design/icons-vue' |
|
import { Device, EDeviceType } from '/@/types/device' |
|
import { useMyStore } from '/@/store' |
|
import { getBindingDevices } from '/@/api/manage' |
|
import { IPage } from '/@/api/http/type' |
|
|
|
const store = useMyStore() |
|
|
|
const docksData = reactive({ |
|
data: [] as Device[] |
|
}) |
|
|
|
const workspaceId = localStorage.getItem(ELocalStorageKey.WorkspaceId)! |
|
|
|
onMounted(() => { |
|
getDocks() |
|
}) |
|
const body: IPage = { |
|
page: 1, |
|
total: 0, |
|
page_size: 100 |
|
} |
|
function getDocks () { |
|
getBindingDevices(workspaceId, body, EDeviceTypeName.Dock).then(res => { |
|
if (res.code !== 0) { |
|
return |
|
} |
|
docksData.data = [] |
|
res.data.list.forEach((dock: any) => { |
|
if (dock.child_device_sn) { |
|
docksData.data.push(dock) |
|
} |
|
}) |
|
console.info(docksData.data) |
|
}) |
|
} |
|
|
|
function selectDock (dock: Device) { |
|
store.commit('SET_SELECT_DOCK_INFO', dock) |
|
} |
|
|
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
.panel { |
|
background: #3c3c3c; |
|
margin-left: auto; |
|
margin-right: auto; |
|
margin-top: 10px; |
|
height: 70px; |
|
width: 95%; |
|
font-size: 13px; |
|
border-radius: 2px; |
|
cursor: pointer; |
|
.title { |
|
display: flex; |
|
flex-direction: row; |
|
align-items: center; |
|
height: 30px; |
|
font-weight: bold; |
|
margin: 0px 10px 0 10px; |
|
} |
|
} |
|
</style>
|
|
|