|
@@ -13,7 +13,9 @@ import {showLoadingToast,showToast} from 'vant'
|
|
|
import {useCopyEdbData} from '@/hooks/edb/useCopyEdbData'
|
|
|
import {useEDBDelete} from './hooks/useEDBDelete'
|
|
|
import {useCachedViewsStore} from '@/store/modules/cachedViews'
|
|
|
+import { useWindowSize } from '@vueuse/core'
|
|
|
|
|
|
+const { width } = useWindowSize()
|
|
|
const cachedViewsStore=useCachedViewsStore()
|
|
|
const {edbClassifyDelete} =useEDBDelete()
|
|
|
const {copyData} =useCopyEdbData()
|
|
@@ -184,7 +186,7 @@ function handleSave(){
|
|
|
<div class="top-box">
|
|
|
<div class="van-multi-ellipsis--l2 edb-name-box">{{langType==='zh'?edbInfo.EdbName:edbInfo.EdbNameEn||edbInfo.EdbName}}</div>
|
|
|
</div>
|
|
|
- <van-tabs v-model:active="activeType" sticky line-width="16" title-active-color="#0052D9" title-inactive-color="#333">
|
|
|
+ <van-tabs v-model:active="activeType" :offset-top="width>650?60:0" sticky line-width="16" title-active-color="#0052D9" title-inactive-color="#333">
|
|
|
<van-tab title="图表详情" name="chart">
|
|
|
<EDBChartDetailVue
|
|
|
ref="chartDetailIns"
|