style: 优化部分弹窗提示

This commit is contained in:
2024-01-02 22:32:00 +08:00
parent 6d08ba6ca2
commit 74b03bc3f6
11 changed files with 19 additions and 19 deletions

View File

@@ -155,7 +155,7 @@
<template #icon><icon-edit /></template>修改
</a-button>
<a-popconfirm
content="确定删除当前选中的数据"
content="是否确定删除数据?"
type="warning"
@ok="handleDelete([record.id])"
>
@@ -484,7 +484,7 @@
proxy.$modal.warning({
title: '警告',
titleAlign: 'start',
content: '确定删除当前选中的数据吗?',
content: `是否确定删除所选的${ids.value.length}条数据?`,
hideCancel: false,
onOk: () => {
handleDelete(ids.value);