mirror of
https://github.com/dataease/dataease.git
synced 2025-02-24 11:32:57 +08:00
fix(嵌入式): iframe方式嵌入的仪表板编辑页面新建数据集或编辑数据集跳转后无法返回到上一页
This commit is contained in:
parent
010a55b3b4
commit
80fabbccd5
@ -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({
|
||||
|
@ -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' },
|
||||
|
Loading…
Reference in New Issue
Block a user