21 lines
508 B
Vue
21 lines
508 B
Vue
|
|
<template>
|
||
|
|
<div style="width: 100%; min-height: 700px">
|
||
|
|
<iframe class="iframe" style="width: 98%;overflow-y: auto; height:80vh" frameborder="0" src="https://rili-d.jin10.com/open.php?fontSize=14px&theme=primary"></iframe>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<!-- frameborder="0" width="830" height="630" scrolling="yes" -->
|
||
|
|
<script>
|
||
|
|
import IndexJs from "./index"
|
||
|
|
export default {
|
||
|
|
mixins:[IndexJs]
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
// .iframe{
|
||
|
|
// // outline: 1px solid red;
|
||
|
|
// width: 100%;
|
||
|
|
// }
|
||
|
|
|
||
|
|
</style>
|