paopaolee
paopaolee
#1315 #371 1. 支持对表格和透视表字段进行自定义拖拽排序; 2. 由于SQL语句限制,目前只支持对单一非数值型字段进行自定义排序;   
 ```js const thymeleaf = require("thymeleaf"); const fs = require("fs"); const json = JSON.parse(fs.readFileSync("./demo.json", "utf8")); const templateEngine = new thymeleaf.TemplateEngine( thymeleaf.STANDARD_CONFIGURATION ); templateEngine .process(fs.readFileSync("./demo2.html", "utf8"), json) .then((result) => { console.log(result);...