Commit 5b9a76fd authored by Zhang Xiaojie's avatar Zhang Xiaojie

创建团队UI界面优化

parent b4c7cbb6
...@@ -5,15 +5,22 @@ ...@@ -5,15 +5,22 @@
@click-left="handleClickLeft" @click-left="handleClickLeft"
> >
<div class="mx-4 pt-14"> <div class="mx-4 pt-14">
<teamcreate class=" mb-4 mt-2.5" > <input-cell
<template v-slot:title>企业/组织/团队名称</template> v-model="team_name"
<template v-slot:limit>20</template> required
</teamcreate> :limit="20"
<teamcreate class="" hint="请填写真实姓名"> label="企业/组织/团队名称"
<template v-slot:title>负责人真实姓名</template> placeholder="请输入团队名称"
<template v-slot:limit>20</template> error-msg="团队名称不能为空"
</teamcreate> />
<input-cell
v-model="name"
required
:limit="20"
label="负责人真实姓名"
placeholder="请输入真实姓名"
error-msg="姓名不能为空"
/>
<p class="note text-text-primary text-base mt-36 ml-3"> <p class="note text-text-primary text-base mt-36 ml-3">
默认创建团队的人为团队负责人 默认创建团队的人为团队负责人
</p> </p>
...@@ -33,9 +40,15 @@ export default Vue.extend({ ...@@ -33,9 +40,15 @@ export default Vue.extend({
name:'createteam', name:'createteam',
components:{ components:{
'main-page': () => import('@/layout/main-page.vue'), 'main-page': () => import('@/layout/main-page.vue'),
'teamcreate': () => import('@/components/Team/c-input.vue'), 'input-cell': () => import('./components/input-cell.vue'),
'c-button': () => import('./components/c-button.vue') 'c-button': () => import('./components/c-button.vue')
}, },
data(){
return{
team_name:'杭州复杂美科技有限公司',
name:''
}
},
props:{ props:{
isValid:{ isValid:{
type:Boolean, type:Boolean,
......
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