|
|
@@ -50,7 +50,7 @@ import { httpRequests } from '@/utils/httpRequests';
|
|
|
import { importFileGetUrls } from '@/utils/models';
|
|
|
import { H5ModelLook } from '@/views/components';
|
|
|
|
|
|
-const VITE_APP_PAGETPL_URL = ref(import.meta.env.VITE_APP_PAGETPL_URL || '');
|
|
|
+const VITE_APP_MEETING_URL = ref(import.meta.env.VITE_APP_MEETING_URL || '');
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
const dict = proxy?.useDict('page_event')
|
|
|
const { page_event } = toRefs<any>(dict);
|
|
|
@@ -96,7 +96,7 @@ const previewTpl = async () => {
|
|
|
if (!list.value?.length) {
|
|
|
return proxy?.$modal.msgWarning('请先添加页面');
|
|
|
}
|
|
|
- previewTplStr.value = `${VITE_APP_PAGETPL_URL.value}?id=${list.value[0].id}`;
|
|
|
+ previewTplStr.value = `${VITE_APP_MEETING_URL.value}?id=${list.value[0].id}`;
|
|
|
showPreviewTpl.value = true;
|
|
|
};
|
|
|
const list = ref<any>([]);
|