index.vue 656 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_REPORT +
  18. "/rbi/ebipro/easyolap.do?action=edit&resid=EANA$2$8$1$72977a47b6154b299ebcc708634e63dc$bb7ed0d54ad94d6fa1dead9bd0018ecb&id=admin&pw=GYpt.6388@7590*",
  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>