perf: 优化获取id 的旧代码

This commit is contained in:
奔跑的面条 2022-11-12 16:16:03 +08:00
parent 1bd67a6ea7
commit 2f2d87826c
2 changed files with 4 additions and 7 deletions

View File

@ -66,7 +66,7 @@ import { ref, computed, h, watch } from 'vue'
import { useSettingStore } from '@/store/modules/settingStore/settingStore'
import { ToolsStatusEnum } from '@/store/modules/settingStore/settingStore.d'
import { useChartEditStore } from '@/store/modules/chartEditStore/chartEditStore'
import { fetchPathByName, routerTurnByPath, setSessionStorage, getLocalStorage } from '@/utils'
import { fetchRouteParamsLocation, fetchPathByName, routerTurnByPath, setSessionStorage, getLocalStorage } from '@/utils'
import { editToJsonInterval } from '@/settings/designSetting'
import { EditEnum, ChartEnum } from '@/enums/pageEnum'
import { StorageEnum } from '@/enums/storageEnum'
@ -143,8 +143,7 @@ const editHandle = () => {
// id
const path = fetchPathByName(EditEnum.CHART_EDIT_NAME, 'href')
if (!path) return
let { id } = routerParamsInfo.params as any
id = typeof id === 'string' ? id : id[0]
const id = fetchRouteParamsLocation()
updateToSession(id)
routerTurnByPath(path, [id], undefined, true)
}, 1000)

View File

@ -30,7 +30,7 @@
<script setup lang="ts">
import { ref, nextTick, computed } from 'vue'
import { fetchRouteParams } from '@/utils'
import { fetchRouteParamsLocation } from '@/utils'
import { icon } from '@/plugins'
const { FishIcon } = icon.ionicons5
@ -39,9 +39,7 @@ const inputInstRef = ref(null)
// id
const fetchProhectInfoById = () => {
const routeParamsRes = fetchRouteParams()
if (!routeParamsRes) return
const { id } = routeParamsRes
const id = fetchRouteParamsLocation()
if (id.length) {
return id[0]
}