血翼残飞

导航

2024年4月12日 #

element-plus npm版本过高或者过低的时候下载过程中可能会报错

摘要: npm install element-plus --S --legacy-peer-deps 阅读全文

posted @ 2024-04-12 13:27 血翼残飞 阅读(12) 评论(0) 推荐(0) 编辑

2024年1月15日 #

docker时区

摘要: 1.修改docker容器系统时间 ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 重启容器 若不行 2.修改JVM获取时间的文件 RUN echo "Asia/Shanghai" > /etc/timezone 阅读全文

posted @ 2024-01-15 19:40 血翼残飞 阅读(3) 评论(0) 推荐(0) 编辑

2023年10月26日 #

mysql 数据库修改sql查询链接时长

摘要: mysql url链接配置keepAlive=true&connectTimeout=30000&socketTimeout=60000 阅读全文

posted @ 2023-10-26 11:11 血翼残飞 阅读(8) 评论(0) 推荐(0) 编辑

2023年9月21日 #

若依 vue问题

摘要: 1.table 列 对布尔的处理 <el-table-column label="是否可见" align="center" prop="activityVisible" :formatter="formatActivityVisible"/> formatActivityVisible:functi 阅读全文

posted @ 2023-09-21 11:09 血翼残飞 阅读(5) 评论(0) 推荐(0) 编辑

2023年4月18日 #

vue+springboot 传list

摘要: @PostMapping(value = "/aa") public Result<?> aa(@RequestBody List<Map<String, Object>> list) { return Result.ok(); } let dataSource = [];postAction(th 阅读全文

posted @ 2023-04-18 16:58 血翼残飞 阅读(101) 评论(0) 推荐(0) 编辑

2022年12月23日 #

pojo忽略表字段映射

摘要: @TableField(exist = false)//忽略表字段 阅读全文

posted @ 2022-12-23 16:28 血翼残飞 阅读(44) 评论(0) 推荐(0) 编辑

2022年7月7日 #

ztree.js 初始化数据,及选父不选子,选子不选父

摘要: var settingMenu = { check: { enable: true, chkStyle: 'checkbox' // chkboxType: {"Y": "s", "N": "ps"} }, view: { showLine: true,//是否显示节点之间的连线。 showIcon 阅读全文

posted @ 2022-07-07 14:06 血翼残飞 阅读(264) 评论(0) 推荐(0) 编辑

mybatis 执行函数 call{} 报错Encountered unexpected token: "{" "{" at line 1, column

摘要: mapper 方法加注解@InterceptorIgnore(tenantLine = "true") 阅读全文

posted @ 2022-07-07 12:01 血翼残飞 阅读(1110) 评论(0) 推荐(0) 编辑

2021年12月31日 #

刷新页面后强制让页面回到顶部

摘要: $(window).scrollTop(0); $('html ,body').animate({ scrollTop: -10 }, 300); setTimeout(function(){$(window).scrollTop(0)},10); 阅读全文

posted @ 2021-12-31 12:04 血翼残飞 阅读(98) 评论(0) 推荐(0) 编辑

2021年12月9日 #

是纯数字和纯字母的td没有换行

摘要: style="word-break:break-all;" 阅读全文

posted @ 2021-12-09 11:17 血翼残飞 阅读(31) 评论(0) 推荐(0) 编辑