Commit a17e01dd authored by zengchao's avatar zengchao
Browse files

-

parent a30f21ad
package com.ibeetl.admin.core.conf;
import cn.hutool.core.util.CharsetUtil;
import cn.hutool.setting.SettingUtil;
import cn.hutool.setting.dialect.Props;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.ibeetl.admin.core.conf.handler.DateTypeHandler;
import com.ibeetl.admin.core.conf.handler.ZonedDateTimeTypeHandler;
......@@ -25,7 +23,6 @@ import com.ibeetl.admin.core.web.query.QueryParser;
import com.ibeetl.starter.BeetlSqlMutipleSourceCustomize;
import com.ibeetl.starter.BeetlTemplateCustomize;
import com.ibeetl.starter.ObjectMapperJsonUtil;
import java.io.File;
import java.io.UnsupportedEncodingException;
import java.time.ZonedDateTime;
import java.util.Date;
......@@ -113,8 +110,9 @@ public class BeetlConf {
/**
* Beetl模板引擎的自定义配置
*
* @return
* */
*/
@Bean
public BeetlTemplateCustomize beetlTemplateCustomize() {
return groupTemplate -> {
......@@ -183,6 +181,7 @@ public class BeetlConf {
/**
* 将内置生成的SQL排除打印
*
* @param sqlId
* @return
*/
......@@ -197,7 +196,7 @@ public class BeetlConf {
@Override
protected void println(String str) {
logger.info(System.lineSeparator()+str);
logger.info(System.lineSeparator() + str);
}
}
}
<!--
* @Author: ???????
* @since: 2019-09-09 12:16:29
* @LastEditTime: 2019-10-12 17:10:36
* @LastEditTime: 2019-10-14 16:02:48
* @LastEditors: ???????
* @Description:
-->
......@@ -438,7 +438,7 @@ export default {
},
handleModifyStatus(row, status) {
this.$message({
message: '操作Success',
message: 'Modify Success',
type: 'success'
});
row.status = status;
......@@ -574,6 +574,7 @@ export default {
})
);
},
/* eslint-disable indent */
getSortClass: function(key) {
const sort = this.listQuery.sort;
return sort === `+${key}`
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment