index.vue 594 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div style="height: 100%">
  3. <iframe
  4. :src="url"
  5. width="100%"
  6. height="100%"
  7. frameborder="0"
  8. scrolling="auto"
  9. ></iframe>
  10. </div>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. url:
  17. process.env.VUE_APP_REPORT2 +
  18. "/jmreport/shareView/1173532057787670528?shareToken=2c02ff298d9c575c215ec6ec347bf463",
  19. };
  20. },
  21. };
  22. </script>
  23. <style lang="less" scope>
  24. @titleGray: #9ca5a8;
  25. @rowGray: #606769;
  26. @darkBack: #536268;
  27. .knowledge-2 {
  28. .el-select {
  29. width: 200px;
  30. }
  31. .el-input {
  32. width: 200px;
  33. }
  34. }
  35. </style>