12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <div style="height: 100%" id="baobiao">
- <iframe
- :src="url"
- width="100%"
- height="100%"
- frameborder="0"
- scrolling="auto"
- style="background: #fff"
- ></iframe>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- url: "./static/iframe.html",
- // url: "https://202.99.219.114:28888/qjny/report/view/report?viewlet=清洁能源/生产部门日周月报/日报表填报-加发电量.cpt&op=write",
- // url: "https://202.99.219.114:28888/qjny/report/view/report?viewlet=清洁能源/生产部门日周月报/周报表展示.cpt&op=write",
- // url: "https://202.99.219.114:28888/qjny/report/view/report?viewlet=清洁能源/生产部门日周月报/周报表展示.cpt",
- };
- },
- };
- </script>
- <style lang="less" scope>
- @titleGray: #9ca5ab;
- @rowGray: #606769;
- @darkBack: #536268;
- .knowledge-2 {
- .el-select {
- width: 200px;
- }
- .el-input {
- width: 200px;
- }
- }
- </style>
|