/** * The default luckysheet config object. */ export default { container: "luckysheet", //Container ID column: 60, //Default number of columns for empty tables row: 84, //Default row data amount for empty table allowCopy: true, //Whether to allow copy showtoolbar: true, //Whether to display the toolbar in the second column showinfobar: true, //Whether to show the top name bar showsheetbar: true, //Whether to display the bottom table name area showstatisticBar: true, //Whether to show the bottom count bar pointEdit: false, //Whether it is the editor insert table mode pointEditUpdate: null, //Editor table update function pointEditZoom: 1, //Scaling ratio during editor table editing // menu: "undo|redo|freezenrow|freezencolumn|download|share|chart|pivot", data: [{ "name": "Sheet1", color: "", "status": "1", "order": "0", "data": [], "config": {}, "index":0 }, { "name": "Sheet2", color: "", "status": "0", "order": "1", "data": [], "config": {}, "index":1 }, { "name": "Sheet3", color: "", "status": "0", "order": "2", "data": [], "config": {}, "index":2 }], //客户端sheet数据[shee1, sheet2, sheet3] title: "Luckysheet", //Table's name userInfo: ' rabbit', //User information display style in the upper right corner userMenuItem: [{url:"", "icon":'', "name":"My form"}, {url:"www.baidu.com", "icon":'', "name":"sign out"}], //Click the pop-up menu of user information in the upper right corner myFolderUrl: "", //The upper left corner 下载 ' showConfigWindowResize: true, //The configuration of the chart and pivot table will pop up on the right side, set whether the table will automatically indent after popping up enableAddRow: true, //Allow additional rows enableAddCol: true, //Allow adding columns enablePage: false, //Allow to load next page autoFormatw: false, //Automatically format numbers exceeding 4 digits into hundreds of millions of formats Example: true or "true" or "TRUE" accuracy: undefined, //Set the exact number of digits of the transmitted value, n digits after the decimal point. The parameter is a number or a string of numbers, for example: "0" or 0 pageInfo:{ 'queryExps':'', 'reportId':'', 'fields':'', 'mobile':'', 'frezon':'', 'currentPage':'', "totalPage":10, "pageUrl":"", }, editMode: false, //Is it in edit mode chartConfigChange: null, //Custom method for triggering chart update in chart plugin beforeCreateDom: null, //Method before table creation fireMousedown: null, //Cell data drill down lang: 'en', //language plugins: [], //plugins, e.g. ['chart'] }