| 12345678910111213141516171819202122232425262728 |
- <template>
- <div style="width: 100%;height: 100%;">
- <div class="title" style="vertical-align: top; height: 35px;font-size: 18px;">停用/报废列表</div>
- <div style="width:100%;display: inline-block;background-color: #06163f;">
- <dv-scroll-board :config="info" style="width:100%;height:320px" />
- </div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- props: {
- info: {
- type: Object,
- default: {},
- },
- },
- };
- </script>
- <style lang="scss" module>
- .pieView {
- width: 100%;
- }
- </style>
|