Commit 67f2fb72 by Tianqing Liu

feat: 新批量,代码逻辑修改,op

1 parent ffef034b
......@@ -665,6 +665,13 @@ export default {
// 删除人员
const deleteRealPersonRecord = () => {
console.log('deletePersonRecord', selectedPersonList)
if (selectedPersonList.value.length < 1) {
ElMessage({
message: `至少选择一条数据`,
type: 'error'
})
return
}
const strIdList = selectedPersonList.value.map(item => item.id).join(',')
const params = {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!