Commit 9129ae57 authored by Zhang Xiaojie's avatar Zhang Xiaojie

团队二维码UI界面

parent 42dd7493
<template>
<div class="createteam">
<main-page
left-arrow
@click-left="handleClickLeft"
>
<teamcreate class=" mb-4 mt-2.5 mx-4" :limitation="20" :title="'企业/组织/团队名称'" />
<teamcreate class=" mx-4" :limitation="10" :title="'企负责人真实姓名'" :hint="'请填写真实姓名'" />
<p class="note text-darkgray text-base mt-36 ml-7">
默认创建团队的人为团队负责人
</p>
<teambtn class=" mt-20 mx-4 "/>
</main-page>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
name:'createteam',
components:{
'main-page': () => import('@/layout/main-page.vue'),
'teamcreate': () => import('@/components/Team/team-create.vue'),
'teambtn': () => import('@/components/Team/teambtn.vue'),
},
methods: {
handleClickLeft() {
console.log('click left')
}
}
});
</script>
<style>
</style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment