paopaolee

Results 2 issues of paopaolee

#1315 #371 1. 支持对表格和透视表字段进行自定义拖拽排序; 2. 由于SQL语句限制,目前只支持对单一非数值型字段进行自定义排序; ![image](https://github.com/running-elephant/datart/assets/21979285/f3ac7ba6-2574-4ec8-ab5f-de76da41a5a4) ![image](https://github.com/running-elephant/datart/assets/21979285/64326506-5380-46ab-bbce-f636218d081b) ![image](https://github.com/running-elephant/datart/assets/21979285/36b8292b-61c2-48d4-8b1f-c6959a46e6dd)

![bug](https://github.com/ultraq/thymeleafjs/assets/21979285/5153e315-df64-4b55-937c-bc6b0bf434ff) ```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);...