更换摄像头图片

This commit is contained in:
zy 2025-11-18 19:30:09 +08:00
parent 513410f78a
commit 64e8f8f968
7 changed files with 2 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 172 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

View File

@ -3,7 +3,7 @@
<a-col :span="24">
<a-card :title="value.stationName" style="width: 100%" size="default">
<a-row :gutter="16">
<a-col class="gutter-row" :span="12" v-for="value2 in value.deviceList" :key="value2.id">
<a-col class="gutter-row" :span="5" v-for="value2 in value.deviceList" :key="value2.id">
<div class="gutter-box" :id="value2.deployCode" style="width: 100%;text-align: center;">
<div class="video_head" style="">
{{value2.deployDes}}
@ -22,11 +22,9 @@
</template>
<script lang="ts" setup>
import EZUIKit from 'ezuikit-js';
import { ref, onMounted, reactive } from 'vue';
import MonitorDetailModal from './MonitorModal.vue';
import { getCamList } from '../deploy/SurvDeviceDeploy.api';
const ysToken = ref('');
const formData = reactive<Record<string, any>>({
item: [],
});
@ -85,7 +83,7 @@
width: 24px;
height: 40px;
cursor: pointer;
background: url('../../assets/video_icon.png') no-repeat right center;
background: url('/camera/video_icon.png') no-repeat right center;
}
}
</style>