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.81.3.155:8083/bi/ebibase/showreport.do?resid=EANA$2$2$1$a95c37e40d684dfc91cf61e9a67b22e3$0884b7e114ff4f67ae7679824f8f1a9d&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>
-
-
|