Commit 46ac57a8 authored by sixiaofeng's avatar sixiaofeng

添加部门/编辑成员/部门设置

parent b49a3bd9
......@@ -17,7 +17,7 @@
<p class="note text-text-primary text-base mt-36 ml-3">
默认创建团队的人为团队负责人
</p>
<c-button round buttonBg="bg-color-primary" class="text-white mt-16" @click-button="$router.push('/team-QRcode')">确定</c-button>
<c-button round buttonBg="bg-color-primary" class="text-white mt-16" @click="$router.push('/team-QRcode')">确定</c-button>
</div>
</main-page>
......
......@@ -23,9 +23,9 @@
</div>
<!-- 底部操作 -->
<div class="py-2 px-4 grid grid-cols-3 gap-2.5 bg-common-bg w-screen fixed bottom-0 left-0 z-30">
<c-button round @click-button="addMember">添加成员</c-button>
<c-button round @click-button="addDepartment">添加部门</c-button>
<c-button round @click-button="setDepartment">部门设置</c-button>
<c-button round @click="$router.push('/file')">添加成员</c-button>
<c-button round @click="$router.push('/add-department')">添加部门</c-button>
<c-button round @click="$router.push('/department-management')">部门设置</c-button>
</div>
</div>
</main-page>
......@@ -64,15 +64,6 @@ export default Vue.extend({
clickItem(val: Member) {
// console.log(val)
this.$router.push(`/team/${val.id}`)
},
addMember() {
console.log('添加成员')
},
addDepartment() {
console.log('添加部门')
},
setDepartment() {
console.log('设置部门')
}
}
})
......
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