18 lines
457 B
Vue
18 lines
457 B
Vue
<template>
|
|
<Breadcrumb />
|
|
<el-row :gutter="20" style="margin-top: 20px">
|
|
<el-col :xs="24">
|
|
<CustomIframe
|
|
src="/ord/file:^px/All.px|view:hx:HxPxView|view:?fullScreen=true"
|
|
minHeight="calc(100vh - 156px)"
|
|
/>
|
|
</el-col>
|
|
</el-row>
|
|
</template>
|
|
|
|
<script setup>
|
|
import Breadcrumb from "../components/Common/Breadcrumb.vue";
|
|
import CustomIframe from "../components/Common/CustomIframe.vue";
|
|
</script>
|
|
<style scoped></style>
|