1234567891011121314151617181920212223242526272829 |
- <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.220.1.5:8001/rbi/ebibase/showreport.do?resid=EANA$2$2$1$72977a47b6154b299ebcc708634e63dc$f6c89c7391914af08b438662b125e26a&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>
|