调整设备集成状态

This commit is contained in:
曹磊 2026-04-27 15:29:00 +08:00
parent a4bc1106e3
commit d484dbad49
8 changed files with 11 additions and 11 deletions

View File

@ -1,5 +1,5 @@
<template>
<div>
<div class="p-2">
<!--查询区域-->
<div class="jeecg-basic-table-form-container">
<a-form ref="formRef" :model="queryParam" :label-col="labelCol"

View File

@ -96,13 +96,13 @@
const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext
const labelCol = reactive({
xs:24,
sm:4,
xl:6,
xxl:4
sm:8,
xl:8,
xxl:8
});
const wrapperCol = reactive({
xs: 24,
sm: 20,
sm: 16,
});
/**

View File

@ -11,7 +11,7 @@
<template v-slot:bodyCell="{ column, record, index, text }">
</template>
<template #deviceStatus="{ record }">
<span v-if="record.deviceStatus === '待集成'" style="color:red">
<span v-if="record.deviceStatus === '待标识' || record.deviceStatus === '待集成'" style="color:red">
{{ record.deviceStatus }}
</span>
</template>

View File

@ -11,7 +11,7 @@
<template v-slot:bodyCell="{ column, record, index, text }">
</template>
<template #deviceStatus="{ record }">
<span v-if="record.deviceStatus === '待集成'" style="color:red">
<span v-if="record.deviceStatus === '待标识' || record.deviceStatus === '待集成'" style="color:red">
{{ record.deviceStatus }}
</span>
</template>

View File

@ -11,7 +11,7 @@
<template v-slot:bodyCell="{ column, record, index, text }">
</template>
<template #deviceStatus="{ record }">
<span v-if="record.deviceStatus === '待集成'" style="color:red">
<span v-if="record.deviceStatus === '待标识' || record.deviceStatus === '待集成'" style="color:red">
{{ record.deviceStatus }}
</span>
</template>

View File

@ -11,7 +11,7 @@
<template v-slot:bodyCell="{ column, record, index, text }">
</template>
<template #deviceStatus="{ record }">
<span v-if="record.deviceStatus === '待集成'" style="color:red">
<span v-if="record.deviceStatus === '待标识' || record.deviceStatus === '待集成'" style="color:red">
{{ record.deviceStatus }}
</span>
</template>

View File

@ -11,7 +11,7 @@
<template v-slot:bodyCell="{ column, record, index, text }">
</template>
<template #deviceStatus="{ record }">
<span v-if="record.deviceStatus === '待集成'" style="color:red">
<span v-if="record.deviceStatus === '待标识' || record.deviceStatus === '待集成'" style="color:red">
{{ record.deviceStatus }}
</span>
</template>

View File

@ -263,7 +263,7 @@ async function createPreview() {
socket: formData.wssUrl, // websocket, getPreviewUrl
pluginPath: '/static', // sdkpluginPath
talkEnable: true,
useMultitrans: false,
useMultitrans: true,
});
let isPlaying = player.value.isPlaying();