|
@@ -1,19 +1,26 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <!-- 现货信息录入-->
|
|
|
|
|
- <div>现货信息录入</div>
|
|
|
|
|
|
|
+ <!-- 现货信息录入 -->
|
|
|
|
|
+ <div class="iframe-container">
|
|
|
|
|
+ <iframe :src="url"
|
|
|
|
|
+ style="border: 0;"></iframe>
|
|
|
|
|
+ </div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
<script lang="ts">
|
|
|
import { defineComponent } from 'vue';
|
|
import { defineComponent } from 'vue';
|
|
|
-import { initData } from '@/common/methods';
|
|
|
|
|
-import { EnumRouterName } from '@/common/constants/enumRouterName';
|
|
|
|
|
|
|
+import { IfameRouteParam } from '@/common/setup/iframe/interface';
|
|
|
|
|
+import { handleIfameRouter } from '@/common/setup/iframe';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
|
- name: EnumRouterName.spot_price_management_normal,
|
|
|
|
|
|
|
+ name: 'entry_of_spot_information',
|
|
|
components: {},
|
|
components: {},
|
|
|
setup() {
|
|
setup() {
|
|
|
- initData(() => {});
|
|
|
|
|
- return {};
|
|
|
|
|
|
|
+ const param: IfameRouteParam = {
|
|
|
|
|
+ code: 'entry_of_spot_information',
|
|
|
|
|
+ btnCodeList: [],
|
|
|
|
|
+ tabIndex: 1,
|
|
|
|
|
+ };
|
|
|
|
|
+ return { ...handleIfameRouter(param) };
|
|
|
},
|
|
},
|
|
|
});
|
|
});
|
|
|
</script>
|
|
</script>
|