index.vue 686 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!-- 在线考试列表 -->
  2. <template>
  3. <view class="safetyEducationExamination-exam">
  4. </view>
  5. </template>
  6. <script>
  7. // import {
  8. // systemMineUserEdit
  9. // } from '@/pages_safetyEducationExamination/api/index.js'
  10. // import {
  11. // workbench
  12. // } from '@/pages_safetyEducationExamination/component/workbench/index'
  13. export default {
  14. // components: {
  15. // workbench,
  16. // },
  17. data() {
  18. return {
  19. }
  20. },
  21. created() {
  22. },
  23. onShow() {
  24. },
  25. methods: {
  26. },
  27. }
  28. </script>
  29. <style lang="stylus" scoped>
  30. .safetyEducationExamination-exam {
  31. height: 100%;
  32. display: flex;
  33. flex-direction: column;
  34. overflow: hidden;
  35. background-color: #f0f4fb;
  36. }
  37. </style>