| 1234567891011121314151617181920212223242526272829303132 |
- <template>
- <div style="width: 100%;height: 100%;overflow: hidden;">
- <div class="title" style="vertical-align: top; height: 10%;font-size: 16px;">{{ title }}</div>
- <div style="width:100%;height: 90%;display: inline-block;background-color: #06163f;">
- <dv-scroll-board :config="info" style="width:100%;height:100%" />
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- props: {
- info: {
- type: Object,
- default: {},
- },
- title: {
- type: String,
- default: "",
- },
- },
- };
- </script>
- <style lang="scss" module>
- .pieView {
- width: 100%;
- }
- </style>
|