labBinding.vue 553 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!-- 实验室绑定 -->
  2. <template>
  3. <view class="labBinding-component">
  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. .labBinding-component {
  31. }
  32. </style>