fix(嵌入式): iframe方式嵌入的仪表板编辑页面新建数据集或编辑数据集跳转后无法返回到上一页

This commit is contained in:
dataeaseShu 2024-12-19 09:56:21 +08:00 committed by fit2cloud-chenyw
parent 010a55b3b4
commit 80fabbccd5
2 changed files with 2 additions and 2 deletions

View File

@ -250,7 +250,7 @@ const handleFocus = () => {
defineExpose({ getNode })
const appStore = useAppStoreWithOut()
const isDataEaseBi = computed(() => appStore.getIsDataEaseBi)
const isDataEaseBi = computed(() => appStore.getIsDataEaseBi || appStore.getIsIframe)
onMounted(() => {
initDataset()
useEmitt({

View File

@ -198,7 +198,7 @@ onMounted(() => {
})
const appStore = useAppStoreWithOut()
const isDataEaseBi = computed(() => appStore.getIsDataEaseBi)
const isDataEaseBi = computed(() => appStore.getIsDataEaseBi || appStore.getIsIframe)
const itemFormRules = reactive<FormRules>({
chartShowName: [
{ required: true, message: t('commons.input_content'), trigger: 'change' },