Update excel.xlsx.js

This commit is contained in:
邹景立 2021-01-26 17:57:35 +08:00
parent af18a102b2
commit 964719ac62

View File

@ -34,7 +34,7 @@ define(function () {
function LoadNextPage(curPage, maxPage, urlParams) {
$('[data-upload-count]').html((curPage / maxPage * 100).toFixed(2));
if (curPage > maxPage) return $.msg.close(loaded), defer.resolve(lists);
urlParams = (url.indexOf('?') > -1 ? '&' : '?') + 'output=json&not_cache_limit=0&limit=100&page=' + curPage;
urlParams = (url.indexOf('?') > -1 ? '&' : '?') + 'output=json&not_cache_limit=1&limit=100&page=' + curPage;
$.form.load(url + urlParams, data, method, function (ret) {
if (ret.code) {
lists = lists.concat(ret.data.list);