fillTeamInfo.vue 656 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view class="default_page" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
  3. <cus-header title='填写所在团队信息'></cus-header>
  4. <cus-team-info-fill @handleConfirm="handleConfirm"></cus-team-info-fill>
  5. </view>
  6. </template>
  7. <script>
  8. import CusTeamInfoFill from '@/components/CusTeamInfoFill/index.vue'
  9. export default {
  10. components:{ CusTeamInfoFill },
  11. data(){
  12. return {
  13. }
  14. },
  15. methods:{
  16. handleConfirm(){
  17. uni.navigateTo({
  18. url:'/pagesPublish/questionnaireFill'
  19. })
  20. }
  21. }
  22. }
  23. </script>
  24. <style scoped lang="scss">
  25. .default_page{
  26. box-sizing: border-box;
  27. }
  28. </style>