12345678910111213141516171819202122232425262728293031323334353637 |
- <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:
- process.env.VUE_APP_REPORT +
- "/rbi/ebipro/easyolap.do?action=edit&resid=EANA$2$8$1$72977a47b6154b299ebcc708634e63dc$bb7ed0d54ad94d6fa1dead9bd0018ecb&id=admin&pw=GYpt.6388@7590*",
- };
- },
- };
- </script>
- <style lang="less" scope>
- @titleGray: #9ca5a8;
- @rowGray: #606769;
- @darkBack: #536268;
- .knowledge-2 {
- .el-select {
- width: 200px;
- }
- .el-input {
- width: 200px;
- }
- }
- </style>
|