index.vue 736 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <view class='safetyEducationExamination-workbench'>
  3. <user-info-card></user-info-card>
  4. <Workbench-stats-cards></Workbench-stats-cards>
  5. </view>
  6. </template>
  7. <script>
  8. import {
  9. userInfoCard
  10. } from '@/pages_safetyEducationExamination/component/workbench/userInfoCard'
  11. import {
  12. workbenchStatsCards
  13. } from '@/pages_safetyEducationExamination/component/workbench/workbenchStatsCards.vue'
  14. export default {
  15. components: {
  16. userInfoCard,
  17. workbenchStatsCards,
  18. },
  19. data() {
  20. return {
  21. }
  22. },
  23. created() {
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style lang="stylus" scoped>
  30. .safetyEducationExamination-workbench {
  31. flex:1;
  32. display: flex;
  33. flex-direction: column;
  34. overflow-y:scroll;
  35. }
  36. </style>