摘要: legend: { textStyle: { color: '#fff', textAlign: 'center' }, } legend: { //right:100, //图例组件离右边的距离 // orient: 'horizontal', //布局 纵向布局 图例标记居文字的左边 verti 阅读全文
posted @ 2022-04-21 21:27 寒冷的雨呢 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 问题 当鼠标滑过网页的某些按键时,往往会变成小手。 解决 //在需要悬停增加小手显示的class处增加如下设置即可 .a-b-c { cursor: pointer; } <div class="a-b-c"></div> 阅读全文
posted @ 2022-04-18 13:03 寒冷的雨呢 阅读(184) 评论(0) 推荐(0) 编辑
摘要: MybatisPlus的update默认机制是更新字段时判断是否为null,做值为null,则不更新该字段 当我们需要将部分字段更新为null时,可利用UpdateWrapper解决该问题 UpdateWrapper用法 WarehouseItem warehouseItem = warehouse 阅读全文
posted @ 2022-04-17 22:09 寒冷的雨呢 阅读(2420) 评论(0) 推荐(0) 编辑
摘要: The user specified as a definer ('root'@'%') does not exist 此种报错主要是针对访问视图文件引起的(没有权限) 在DOS命令窗口输入 cd C:\Program Files\MySQL\MySQL Server 5.7\bin 回车 mysq 阅读全文
posted @ 2022-04-13 15:14 寒冷的雨呢 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 显示代码 {{$moment(nowTime).format("YYYY-MM-DD HH:mm:ss")}} {{nowWeek}} data() { return { nowTime: new Date(), weekDays: ["星期日", "星期一", "星期二", "星期三", "星期四 阅读全文
posted @ 2022-04-12 19:51 寒冷的雨呢 阅读(877) 评论(0) 推荐(0) 编辑
摘要: 1.浏览器设置 - 高级设置 - 更改代理服务器 - 局域网设置 - 取消选中 为LAN使用代理服务器 2.win + r 输入 ipconfig/flushdns 刷新缓存 阅读全文
posted @ 2022-04-05 22:24 寒冷的雨呢 阅读(1312) 评论(0) 推荐(0) 编辑
摘要: 1.BeanUtil.fillBeanWithMap使用Map填充bean HashMap<String, Object> map = CollUtil.newHashMap(); map.put("name", "Joe"); map.put("age", 12); map.put("openId 阅读全文
posted @ 2022-04-05 08:54 寒冷的雨呢 阅读(1673) 评论(0) 推荐(0) 编辑
摘要: 问题:springboot启动时报如下错误 Failed to process import candidates for configuration class […Application] … AutoConfigure cycle detected between TransactionAut 阅读全文
posted @ 2022-04-04 12:00 寒冷的雨呢 阅读(9661) 评论(0) 推荐(0) 编辑
摘要: 错误提示: Error creating bean with name 'rabbitConnectionFactory': Singleton bean creation not allowed while singletons of this factory are in destruction 阅读全文
posted @ 2022-03-21 18:07 寒冷的雨呢 阅读(8256) 评论(0) 推荐(0) 编辑
摘要: 错误提示: 命令行过长。要为 RunshiCoreApplication 或也为 Spring Boot default 配置 缩短命令行吗 或 Error running 'Application': Command line is too long. Shorten command line f 阅读全文
posted @ 2022-03-21 17:57 寒冷的雨呢 阅读(5202) 评论(0) 推荐(0) 编辑
摘要: node -v npx node-sass -v This usually happens because your environment has changed since running `npm install`. Run `npm rebuild node-sass` to downloa 阅读全文
posted @ 2022-03-16 18:31 寒冷的雨呢 阅读(3651) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <div :id="chartId" style="height:500px; width:100%"></div> </div> </template> <script> import echarts from "echarts"; export default 阅读全文
posted @ 2022-03-13 10:25 寒冷的雨呢 阅读(3407) 评论(0) 推荐(0) 编辑
摘要: 横轴: xAxis:[ axisLabel: { rotate: -25, //旋转度数 fontSize: 14 }, 或 axisLabel:{ rich: { color1: { color: "#53772d", fontSize: 20, fontWeight: "bold" }, col 阅读全文
posted @ 2022-03-11 16:30 寒冷的雨呢 阅读(478) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <div :id="chartId" style="height:500px; width:100%"></div> </div> </template> <script> import echarts from "echarts"; export default 阅读全文
posted @ 2022-03-11 15:51 寒冷的雨呢 阅读(493) 评论(0) 推荐(0) 编辑
摘要: 正常写法 <span style="font-size: 12px"></span> 绑定写法 <span :style="'font-size: 12px'"></span> 调用函数写法 <span :style="'font-size:'+getNrFontSize(item.deptName 阅读全文
posted @ 2022-03-11 11:48 寒冷的雨呢 阅读(92) 评论(0) 推荐(0) 编辑