|
@@ -2,6 +2,9 @@
|
|
|
import {ref,reactive, onMounted} from 'vue'
|
|
|
import { useRoute, useRouter } from "vue-router";
|
|
|
import {apiReportClassifyList,apiReportList} from '@/api/report'
|
|
|
+import { useWindowSize } from '@vueuse/core'
|
|
|
+
|
|
|
+const { width, height } = useWindowSize()
|
|
|
|
|
|
const router=useRouter()
|
|
|
const route=useRoute()
|
|
@@ -208,7 +211,7 @@ let filterSize=ref('30%')
|
|
|
</div>
|
|
|
|
|
|
<!-- 关于 我们 -->
|
|
|
- <div class="about-us-box" v-show="listState.firstClassifyId==0">
|
|
|
+ <div class="about-us-box" v-show="listState.firstClassifyId==0||(listState.firstClassifyId!=0&&width<768)">
|
|
|
<div class="flex box top-box">
|
|
|
<div class="left">
|
|
|
<video controls autoplay loop src="https://hongze.oss-cn-shanghai.aliyuncs.com/static/video_03.mp4"></video>
|