We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95781e8 commit 7072d7eCopy full SHA for 7072d7e
web/src/view/systemTools/formCreate/index.vue
@@ -1,12 +1,18 @@
1
<template>
2
<div style="height:80vh">
3
- <iframe width="100%" height="100%" src="http://127.0.0.1:8888/form-generator/#/" frameborder="0"></iframe>
+ <iframe width="100%" height="100%" :src="basePath+'/form-generator/#/'" frameborder="0"></iframe>
4
</div>
5
</template>
6
7
<script>
8
+var path = process.env.VUE_APP_BASE_API
9
export default {
- name:"FormGenerator"
10
+ name:"FormGenerator",
11
+ data(){
12
+ return{
13
+ basePath:path
14
+ }
15
+ },
16
};
17
</script>
18
0 commit comments