!302 点击表格删除按钮后 Layer弹出层 确定 取消 按钮 的 多语言 版本修改

Merge pull request !302 from Ylianjie/develop
pull/330/MERGE
Karson 2021-07-19 06:39:14 +00:00 committed by Gitee
commit dfd0ba0524
1 changed files with 3 additions and 3 deletions

View File

@ -404,7 +404,7 @@ define(['jquery', 'bootstrap', 'moment', 'moment/locale/zh-cn', 'bootstrap-table
var ids = Table.api.selectedids(table); var ids = Table.api.selectedids(table);
Layer.confirm( Layer.confirm(
__('Are you sure you want to delete the %s selected item?', ids.length), __('Are you sure you want to delete the %s selected item?', ids.length),
{icon: 3, title: __('Warning'), offset: 0, shadeClose: true}, {icon: 3, title: __('Warning'), offset: 0, shadeClose: true, btn: [__('OK'), __('Cancel')]},
function (index) { function (index) {
Table.api.multi("del", ids, table, that); Table.api.multi("del", ids, table, that);
Layer.close(index); Layer.close(index);
@ -493,7 +493,7 @@ define(['jquery', 'bootstrap', 'moment', 'moment/locale/zh-cn', 'bootstrap-table
var that = this; var that = this;
Layer.confirm( Layer.confirm(
__('Are you sure you want to delete this item?'), __('Are you sure you want to delete this item?'),
{icon: 3, title: __('Warning'), shadeClose: true}, {icon: 3, title: __('Warning'), shadeClose: true, btn: [__('OK'), __('Cancel')]},
function (index) { function (index) {
Table.api.multi("del", id, table, that); Table.api.multi("del", id, table, that);
Layer.close(index); Layer.close(index);
@ -596,7 +596,7 @@ define(['jquery', 'bootstrap', 'moment', 'moment/locale/zh-cn', 'bootstrap-table
} }
Layer.confirm( Layer.confirm(
__('Are you sure you want to delete this item?'), __('Are you sure you want to delete this item?'),
{icon: 3, title: __('Warning'), offset: [top, left], shadeClose: true}, {icon: 3, title: __('Warning'), offset: [top, left], shadeClose: true, btn: [__('OK'), __('Cancel')]},
function (index) { function (index) {
var table = $(that).closest('table'); var table = $(that).closest('table');
var options = table.bootstrapTable('getOptions'); var options = table.bootstrapTable('getOptions');