CarouselTabl.vue 553 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div style="width: 100%;height: 100%;">
  3. <div class="title" style="vertical-align: top; height: 35px;font-size: 18px;">停用/报废列表</div>
  4. <div style="width:100%;display: inline-block;background-color: #06163f;">
  5. <dv-scroll-board :config="info" style="width:100%;height:320px" />
  6. </div>
  7. </div>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {};
  13. },
  14. props: {
  15. info: {
  16. type: Object,
  17. default: {},
  18. },
  19. },
  20. };
  21. </script>
  22. <style lang="scss" module>
  23. .pieView {
  24. width: 100%;
  25. }
  26. </style>