Commit 0b60252a by Tianqing Liu

feat: 聚类弹窗,优化

1 parent 0931e64f
......@@ -133,12 +133,12 @@
<span class="expandWord" @click='expandChange(person)'>{{person.expand?'收起':'展开'}}</span>
<!--修正组类型数据-->
<a-popconfirm
title="您确认要删除此记录吗?"
title="将从本组中剔除,您确认吗?"
ok-text="是"
cancel-text="否"
@confirm="deletePersonRecord(person)"
>
<span class="expandWord"></span>
<span class="expandWord"></span>
</a-popconfirm>
<span class="expandWord" @click='updatePersonInfoByGroup(person)'>类型修正</span>
<span class="expandWord" @click='searchPersonInfoByGroup(person)'>搜索</span>
......@@ -577,7 +577,7 @@ export default {
// isShowGroupEditor.value = true
personGroupEditorRef.value.initDialog(data);
}
// 除人员
// 除人员
const selectedPersonList = ref([])
const deletePersonRecord = (data) => {
console.log('deletePersonRecord', data)
......@@ -585,7 +585,7 @@ export default {
(r) => {
if(r.msg_code==200){
ElMessage({
message: `除成功`,
message: `除成功`,
type: 'success'
})
selectedPersonList.value = []
......
......@@ -79,6 +79,10 @@
</div>
</div>
</div>
<!--<div v-if="" class="preview-image">
<a-image :width="200" src="" />
</div>-->
<template #footer>
<a-button @click="onCancel">返回</a-button>
</template>
......
<template>
<a-modal
title="人员类型修正"
title="类型修正"
v-if='isVisible'
v-model:visible="isVisible"
width="400px"
......
......@@ -126,7 +126,7 @@
特征
</span>
<a-popconfirm
title="您确认要删除此记录吗?"
title="删除后无法恢复,确认删除吗?"
ok-text="是"
cancel-text="否"
@confirm="handleDeleteFileConfirm(item)"
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!