| 12345678910111213141516171819202122232425262728 |
- <template>
- <div>
- <bind-enterprise :showInfo="showInfo"></bind-enterprise>
- </div>
- </template>
- <script>
- import bindEnterprise from '../user/bindEnterprise.vue'
- export default {
- data() {
- return {
- showInfo: false
- }
- },
- layout: 'mobile',
- middleware: 'authenticated',
- components: {
- bindEnterprise
- }
- }
- </script>
- <style lang="scss" scoped>
- .seek-operation {
- height: auto;
- padding-bottom: .59rem;
- }
- </style>
|