mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update excel.xlsx.js
This commit is contained in:
parent
a54704f385
commit
ca1666a8bf
@ -95,13 +95,11 @@ define(function () {
|
||||
/*! 执行导入的数据 */
|
||||
function doPostItem(idx, item, info, result) {
|
||||
if (idx >= total) {
|
||||
info = '共处理' + total + '条记录' + '( 成功 ' + oks + ' 条, 失败 ' + ers + ' 条 )';
|
||||
return clearAll(), $.msg.success(info, 3, function () {
|
||||
return clearAll(), $.msg.success('共处理' + total + '条记录( 成功 ' + oks + ' 条, 失败 ' + ers + ' 条 )', 3, function () {
|
||||
$.form.reload();
|
||||
});
|
||||
} else {
|
||||
info = (idx * 100 / total).toFixed(2) + '%( 成功 ' + oks + ' 条, 失败 ' + ers + ' 条 )';
|
||||
$('[data-load-count]').html(info);
|
||||
$('[data-load-count]').html((idx * 100 / total).toFixed(2) + '%( 成功 ' + oks + ' 条, 失败 ' + ers + ' 条 )');
|
||||
/*! 单元数据过滤 */
|
||||
result = item;
|
||||
if (filterFn && (result = filterFn(item)) === false) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user