奇淼(piexlmax
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
2 deletions
-
web/src/view/systemTools/formCreate/index.vue
|
|
@ -1,16 +1,18 @@ |
|
|
|
<template> |
|
|
|
<div style="height:80vh"> |
|
|
|
<iframe width="100%" height="100%" :src="basePath+':8888/form-generator/#/'" frameborder="0" /> |
|
|
|
<iframe width="100%" height="100%" :src="`${basePath}:${basePort}/form-generator/#/`" frameborder="0" /> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
var path = import.meta.env.VITE_BASE_PATH |
|
|
|
var port = import.meta.env.VITE_SERVER_PORT |
|
|
|
export default { |
|
|
|
name: 'FormGenerator', |
|
|
|
data() { |
|
|
|
return { |
|
|
|
basePath: path |
|
|
|
basePath: path, |
|
|
|
basePort: port |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|