|
|
@@ -1,9 +1,32 @@
|
|
|
<template>
|
|
|
- <div>
|
|
|
- 设立“惠园贷”、“科技贷”、“潇湘财经贷”等园区金融产品申报服务窗口
|
|
|
+ <div class="iframe-container" v-loading="loading">
|
|
|
+ <iframe src="http://www.hunan.gov.cn/zqt/hqzc/202206/t20220610_25443825.html" scrolling="auto" frameborder="0" class="frame">
|
|
|
+ </iframe>
|
|
|
</div>
|
|
|
- </template>
|
|
|
+</template>
|
|
|
|
|
|
- <script setup name="Confirmation">
|
|
|
- </script>
|
|
|
-
|
|
|
+<script setup>
|
|
|
+import { ref } from 'vue'
|
|
|
+const loading = ref(false)
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss">
|
|
|
+.iframe-container {
|
|
|
+ position: absolute;
|
|
|
+ top: 0px;
|
|
|
+ left: 0px;
|
|
|
+ right: 0px;
|
|
|
+ ;
|
|
|
+ bottom: 0px;
|
|
|
+
|
|
|
+ .frame {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+.example-showcase .el-loading-mask {
|
|
|
+ z-index: 9;
|
|
|
+}
|
|
|
+}
|
|
|
+
|
|
|
+</style>
|