register.vue 477 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div>
  3. <bind-enterprise :showInfo="showInfo"></bind-enterprise>
  4. </div>
  5. </template>
  6. <script>
  7. import bindEnterprise from '../user/bindEnterprise.vue'
  8. export default {
  9. data() {
  10. return {
  11. showInfo: false
  12. }
  13. },
  14. layout: 'mobile',
  15. middleware: 'authenticated',
  16. components: {
  17. bindEnterprise
  18. }
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. .seek-operation {
  23. height: auto;
  24. padding-bottom: .59rem;
  25. }
  26. </style>