Commit 0931e64f by Tianqing Liu

feat: 聚类弹窗,人员分类完成,op

1 parent d12d07cd
......@@ -50,6 +50,7 @@
</el-row>
</div>
<div class="right-part">
<template v-if="groupList.length > 0">
<div class="classBox" v-for="row in groupList" :key="row.person_unid">
<el-row>
<el-col :span="3" v-for="item in row.personList" :key="item.id">
......@@ -73,6 +74,8 @@
</el-col>
</el-row>
</div>
</template>
<a-empty style="margin-top: 200px;" v-else />
</div>
</div>
</div>
......@@ -95,6 +98,7 @@ export default {
setup(props, { emit }) {
const isVisible = ref(false);
const personList = ref([])
// 右侧分组
const groupList = ref([])
const currentPerson = ref({})
// 表单
......@@ -185,6 +189,7 @@ export default {
}
const onCancel = () => {
isVisible.value = false;
groupList.value = []
};
const isLoading = ref(false)
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!