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 1d52614 commit 1457876Copy full SHA for 1457876
web/src/view/systemTools/formCreate/index.vue
@@ -1,16 +1,18 @@
1
<template>
2
<div style="height:80vh">
3
- <iframe width="100%" height="100%" :src="basePath+':8888/form-generator/#/'" frameborder="0" />
+ <iframe width="100%" height="100%" :src="`${basePath}:${basePort}/form-generator/#/`" frameborder="0" />
4
</div>
5
</template>
6
7
<script>
8
var path = import.meta.env.VITE_BASE_PATH
9
+var port = import.meta.env.VITE_SERVER_PORT
10
export default {
11
name: 'FormGenerator',
12
data() {
13
return {
- basePath: path
14
+ basePath: path,
15
+ basePort: port
16
}
17
18
0 commit comments