Newer
Older
urbanLifeline_YanAn / src / views / DialogTabs / component / ImouPlayer.vue
@zhangzhihui zhangzhihui 4 days ago 638 bytes 桥梁视频弹窗
<template>
  <div id="ImouPlayer">视频正在接入......</div>
</template>

<script setup name="ImouPlayer">
import bus from '@/bus';

import dialogTabsStore from '@/store/modules/dialogTabs';

const { proxy } = getCurrentInstance();

const useDialogTabs = dialogTabsStore();

const showData = ref(null);
const loading = ref(false);
const props = defineProps({
  // 数据SiteNo
  SiteNo: {
    type: String,
  },
});

onMounted(() => {});
</script>

<style lang="scss" scoped>
#ImouPlayer{
  width: 100%;
  height: 100%;
  background-color: #000;
  color: #ccc;
  text-align: center;
  padding-top: 30px;
  font-size: 20px;
}
</style>