123456789101112131415161718192021222324252627282930313233 |
- <template>
- <div style="height: 100%">
- <iframe
- :src="url"
- width="100%"
- height="100%"
- frameborder="0"
- scrolling="auto"
- ></iframe>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- url: "http://10.81.3.155:8083/bi/ebibase/showreport.do?resid=EANA$2$2$1$cf794177cf764f258f8105c6d3b03f3c$8d845c96594c422caf0bcd332e09ec0d&id=admin&pw=admin",
- };
- },
- };
- </script>
- <style lang="less" scope>
- @titleGray: #9ca5a8;
- @rowGray: #606769;
- @darkBack: #536268;
- .knowledge-2 {
- .el-select {
- width: 200px;
- }
- .el-input {
- width: 200px;
- }
- }
- </style>
|