35 lines
576 B
Vue
Raw Normal View History

2025-02-13 11:34:23 +08:00
<!--
* @Author: SunTao 328867980@qq.com
* @Date: 2025-02-12 14:35:34
* @LastEditors: SunTao 328867980@qq.com
* @LastEditTime: 2025-02-12 14:38:15
* @FilePath: \znxjxt-ui\src\views\xj\hisense\bridge\index.vue
* @Description: 海信-桥梁
-->
<template>
<div class="content">海信桥梁</div>
</template>
<script>
export default {
name: "Bridge",
data() {
return {
}
},
mounted() {
},
methods: {
},
}
</script>
<style lang="scss" scoped>
.content {
width: 100%;
height: calc(100vh - 5.4rem);
padding: 1rem;
overflow-y: auto;
}
</style>