|
@@ -0,0 +1,10 @@
|
|
|
+<template>
|
|
|
+ <i-frame :src="url" />
|
|
|
+</template>
|
|
|
+<script lang="ts" setup name="wf-start">
|
|
|
+ import iFrame from '@/components/iFrame/index.vue';
|
|
|
+ import { ref } from 'vue';
|
|
|
+ import { useUserStoreWithOut } from '/@/store/modules/user';
|
|
|
+ const user = useUserStoreWithOut();
|
|
|
+ const url = ref(`${import.meta.env.VITE_APP_JFLOW_CORE_ADDR}/#/FEForward?action=GL_RecentStart&token=${user.getJFlowToken}`);
|
|
|
+</script>
|