style: 优化部分弹窗提示
This commit is contained in:
@@ -75,7 +75,7 @@
|
|||||||
>
|
>
|
||||||
<template #cell="{ record }">
|
<template #cell="{ record }">
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
content="确定要强退该用户吗?"
|
content="是否确定强退该用户?"
|
||||||
type="warning"
|
type="warning"
|
||||||
@ok="handleKickout(record.token)"
|
@ok="handleKickout(record.token)"
|
||||||
>
|
>
|
||||||
|
@@ -172,7 +172,7 @@
|
|||||||
<template #icon><icon-edit /></template>修改
|
<template #icon><icon-edit /></template>修改
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
content="确定要删除当前选中的数据吗?"
|
content="是否确定删除该数据?"
|
||||||
type="warning"
|
type="warning"
|
||||||
@ok="handleDelete([record.id])"
|
@ok="handleDelete([record.id])"
|
||||||
>
|
>
|
||||||
@@ -509,7 +509,7 @@
|
|||||||
proxy.$modal.warning({
|
proxy.$modal.warning({
|
||||||
title: '警告',
|
title: '警告',
|
||||||
titleAlign: 'start',
|
titleAlign: 'start',
|
||||||
content: '确定要删除当前选中的数据吗?',
|
content: `是否确定删除所选的${ids.value.length}条数据?`,
|
||||||
hideCancel: false,
|
hideCancel: false,
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
handleDelete(ids.value);
|
handleDelete(ids.value);
|
||||||
|
@@ -155,7 +155,7 @@
|
|||||||
<template #icon><icon-edit /></template>修改
|
<template #icon><icon-edit /></template>修改
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
content="确定要删除当前选中的数据吗?"
|
content="是否确定删除该数据?"
|
||||||
type="warning"
|
type="warning"
|
||||||
@ok="handleDelete([record.id])"
|
@ok="handleDelete([record.id])"
|
||||||
>
|
>
|
||||||
@@ -484,7 +484,7 @@
|
|||||||
proxy.$modal.warning({
|
proxy.$modal.warning({
|
||||||
title: '警告',
|
title: '警告',
|
||||||
titleAlign: 'start',
|
titleAlign: 'start',
|
||||||
content: '确定要删除当前选中的数据吗?',
|
content: `是否确定删除所选的${ids.value.length}条数据?`,
|
||||||
hideCancel: false,
|
hideCancel: false,
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
handleDelete(ids.value);
|
handleDelete(ids.value);
|
||||||
|
@@ -157,7 +157,7 @@
|
|||||||
<template #icon><icon-edit /></template>修改
|
<template #icon><icon-edit /></template>修改
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
content="确定要删除当前选中的数据吗?"
|
content="是否确定删除该数据?"
|
||||||
type="warning"
|
type="warning"
|
||||||
@ok="handleDelete([record.id])"
|
@ok="handleDelete([record.id])"
|
||||||
>
|
>
|
||||||
@@ -396,7 +396,7 @@
|
|||||||
proxy.$modal.warning({
|
proxy.$modal.warning({
|
||||||
title: '警告',
|
title: '警告',
|
||||||
titleAlign: 'start',
|
titleAlign: 'start',
|
||||||
content: '确定要删除当前选中的数据吗?',
|
content: `是否确定删除所选的${ids.value.length}条数据?`,
|
||||||
hideCancel: false,
|
hideCancel: false,
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
handleDelete(ids.value);
|
handleDelete(ids.value);
|
||||||
|
@@ -71,7 +71,7 @@
|
|||||||
<template #icon><icon-edit /></template>修改
|
<template #icon><icon-edit /></template>修改
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
content="确定要删除当前选中的数据吗?"
|
content="是否确定删除该数据?"
|
||||||
type="warning"
|
type="warning"
|
||||||
@ok="handleDelete([record.id])"
|
@ok="handleDelete([record.id])"
|
||||||
>
|
>
|
||||||
|
@@ -232,7 +232,7 @@
|
|||||||
<template #icon><icon-edit /></template>
|
<template #icon><icon-edit /></template>
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
content="确定要删除当前选中的数据吗?"
|
content="是否确定删除该数据?"
|
||||||
type="warning"
|
type="warning"
|
||||||
@ok="handleDeleteStorage([record.id])"
|
@ok="handleDeleteStorage([record.id])"
|
||||||
>
|
>
|
||||||
|
@@ -170,7 +170,7 @@
|
|||||||
<template #icon><icon-edit /></template>修改
|
<template #icon><icon-edit /></template>修改
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
content="确定要删除当前选中的数据吗?如果存在下级菜单则一并删除,此操作不能撤销!"
|
content="是否确定删除该数据?如果存在下级菜单则一并删除,此操作不能撤销!"
|
||||||
type="warning"
|
type="warning"
|
||||||
@ok="handleDelete([record.id])"
|
@ok="handleDelete([record.id])"
|
||||||
>
|
>
|
||||||
@@ -499,7 +499,7 @@
|
|||||||
title: '警告',
|
title: '警告',
|
||||||
titleAlign: 'start',
|
titleAlign: 'start',
|
||||||
content:
|
content:
|
||||||
'确定要删除当前选中的数据吗?如果存在下级菜单则一并删除,此操作不能撤销!',
|
'是否确定删除所选的数据?如果存在下级菜单则一并删除,此操作不能撤销!',
|
||||||
hideCancel: false,
|
hideCancel: false,
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
handleDelete(ids.value);
|
handleDelete(ids.value);
|
||||||
|
@@ -151,7 +151,7 @@
|
|||||||
<template #icon><icon-check /></template>标记已读
|
<template #icon><icon-check /></template>标记已读
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
content="确定要删除当前选中的数据吗?"
|
content="是否确定删除该数据?"
|
||||||
type="warning"
|
type="warning"
|
||||||
@ok="handleDelete([record.id])"
|
@ok="handleDelete([record.id])"
|
||||||
>
|
>
|
||||||
@@ -318,7 +318,7 @@
|
|||||||
proxy.$modal.warning({
|
proxy.$modal.warning({
|
||||||
title: '警告',
|
title: '警告',
|
||||||
titleAlign: 'start',
|
titleAlign: 'start',
|
||||||
content: '确定要删除当前选中的数据吗?',
|
content: `是否确定删除所选的${ids.value.length}条数据?`,
|
||||||
hideCancel: false,
|
hideCancel: false,
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
handleDelete(ids.value);
|
handleDelete(ids.value);
|
||||||
|
@@ -166,7 +166,7 @@
|
|||||||
<template #icon><icon-edit /></template>修改
|
<template #icon><icon-edit /></template>修改
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
content="确定要删除当前选中的数据吗?"
|
content="是否确定删除该数据?"
|
||||||
type="warning"
|
type="warning"
|
||||||
@ok="handleDelete([record.id])"
|
@ok="handleDelete([record.id])"
|
||||||
>
|
>
|
||||||
@@ -708,7 +708,7 @@
|
|||||||
proxy.$modal.warning({
|
proxy.$modal.warning({
|
||||||
title: '警告',
|
title: '警告',
|
||||||
titleAlign: 'start',
|
titleAlign: 'start',
|
||||||
content: '确定要删除当前选中的数据吗?',
|
content: `是否确定删除所选的${ids.value.length}条数据?`,
|
||||||
hideCancel: false,
|
hideCancel: false,
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
handleDelete(ids.value);
|
handleDelete(ids.value);
|
||||||
|
@@ -229,7 +229,7 @@
|
|||||||
<template #icon><icon-edit /></template>
|
<template #icon><icon-edit /></template>
|
||||||
</a-button>
|
</a-button>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
content="确定要删除当前选中的数据吗?"
|
content="是否确定删除该数据?"
|
||||||
type="warning"
|
type="warning"
|
||||||
@ok="handleDelete([record.id])"
|
@ok="handleDelete([record.id])"
|
||||||
>
|
>
|
||||||
@@ -244,7 +244,7 @@
|
|||||||
</a-button>
|
</a-button>
|
||||||
</a-popconfirm>
|
</a-popconfirm>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
content="确定要重置当前用户的密码吗?"
|
content="是否确定重置当前用户的密码?"
|
||||||
type="warning"
|
type="warning"
|
||||||
@ok="handleResetPassword(record.id)"
|
@ok="handleResetPassword(record.id)"
|
||||||
>
|
>
|
||||||
@@ -775,7 +775,7 @@
|
|||||||
proxy.$modal.warning({
|
proxy.$modal.warning({
|
||||||
title: '警告',
|
title: '警告',
|
||||||
titleAlign: 'start',
|
titleAlign: 'start',
|
||||||
content: '确定要删除当前选中的数据吗?',
|
content: `是否确定删除所选的${ids.value.length}条数据?`,
|
||||||
hideCancel: false,
|
hideCancel: false,
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
handleDelete(ids.value);
|
handleDelete(ids.value);
|
||||||
|
@@ -115,7 +115,7 @@
|
|||||||
<a-card title="字段配置" class="field-config">
|
<a-card title="字段配置" class="field-config">
|
||||||
<template #extra>
|
<template #extra>
|
||||||
<a-popconfirm
|
<a-popconfirm
|
||||||
content="确定要同步最新数据表结构吗?同步后只要不点击确定保存,则不影响原有配置数据。"
|
content="是否确定同步最新数据表结构?同步后只要不点击确定保存,则不影响原有配置数据。"
|
||||||
type="warning"
|
type="warning"
|
||||||
@ok="handleRefresh(form.tableName)"
|
@ok="handleRefresh(form.tableName)"
|
||||||
>
|
>
|
||||||
|
Reference in New Issue
Block a user