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