courseAnswerLogsTabIndex.vue 723 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!-- TabComponent.vue -->
  2. <template>
  3. <div class="tab-container">
  4. <el-tabs type="card" style="background-color: white">
  5. <el-tab-pane label="会员">
  6. <member-view/>
  7. </el-tab-pane>
  8. <el-tab-pane label="企微">
  9. <qw-view/>
  10. </el-tab-pane>
  11. </el-tabs>
  12. </div>
  13. </template>
  14. <script>
  15. import MemberView from './index.vue';
  16. import QwView from './qw/index.vue';
  17. export default {
  18. name: 'TabComponent',
  19. components: {
  20. MemberView,
  21. QwView
  22. },
  23. data() {
  24. return {
  25. };
  26. }
  27. };
  28. </script>
  29. <style scoped>
  30. .tab-container {
  31. width: 100%;
  32. height: 100%;
  33. }
  34. .app-container{
  35. padding: 15px !important;
  36. margin: 0px !important;
  37. background-color: #fff !important;
  38. }
  39. </style>