作者 Cool
1 个管道 的构建 失败 耗费 0 秒

导出科学计数法调试

@@ -22,11 +22,15 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin @@ -22,11 +22,15 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
22 pk: 'id', 22 pk: 'id',
23 sortName: 'user.id', 23 sortName: 'user.id',
24 exportOptions: { 24 exportOptions: {
25 - type: 'excel',  
26 - onMsoNumberFormat: function(cell, row, col) {  
27 - return (row > 0 && col == 0) ? '\\@' : ''; 25 + // type: 'excel',
  26 + mso:{
  27 + // fileFormat: 'xlsx',
  28 + //修复导出数字不显示为科学计数法
  29 + onMsoNumberFormat: function (cell, row, col) {
  30 + return !isNaN($(cell).text())?'\\@':'';
  31 + }
28 } 32 }
29 - }, 33 + },
30 columns: [ 34 columns: [
31 [ 35 [
32 {checkbox: true}, 36 {checkbox: true},