|
@@ -143,7 +143,7 @@
|
|
|
</div>
|
|
|
|
|
|
<!--档案柜-->
|
|
|
- <div class="hc-gather-card-box gui" v-if="tabKey === 'tab2'">
|
|
|
+ <div class="hc-gather-card-box gui" :class="isMac?'is-mac':''" v-if="tabKey === 'tab2'">
|
|
|
<HcCardItem ui="hc-card-item-main" v-loading="tableLoading">
|
|
|
<el-carousel class="hc-file-cabinet" :autoplay="false" :loop="false" indicator-position="none" v-if="guiItemData.length > 0">
|
|
|
<el-carousel-item v-for="item in guiItemData">
|
|
@@ -446,6 +446,8 @@ const hoverHand = ref(true)
|
|
|
const isShowheader = ref(false)
|
|
|
const tags = ref([])
|
|
|
|
|
|
+const userAgent = navigator.userAgent
|
|
|
+const isMac = userAgent.indexOf("Mac") !== -1
|
|
|
|
|
|
//监听
|
|
|
watch(() => [
|