From 643b83894c851e32ebafa1d9b257a3195e525896 Mon Sep 17 00:00:00 2001 From: vapao Date: Sat, 10 Oct 2020 10:30:18 +0800 Subject: [PATCH] =?UTF-8?q?F=20=E4=BF=AE=E5=A4=8D=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E5=8F=98=E6=9B=B4=E6=97=B6=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E4=B8=BA=E5=88=A0=E9=99=A4=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spug_web/src/pages/schedule/Table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spug_web/src/pages/schedule/Table.js b/spug_web/src/pages/schedule/Table.js index 4e20812..a492f49 100644 --- a/spug_web/src/pages/schedule/Table.js +++ b/spug_web/src/pages/schedule/Table.js @@ -84,7 +84,7 @@ class ComTable extends React.Component { handleActive = (text) => { Modal.confirm({ - title: '删除确认', + title: '操作确认', content: `确定要${text.is_active ? '禁用' : '激活'}任务【${text['name']}】?`, onOk: () => { return http.patch('/api/schedule/', {id: text.id, is_active: !text.is_active})