摘要: 修改配置文件,没有则新增这个文件 vi /etc/docker/daemon.json 内容修改为 { "registry-mirrors": [ "https://hub.xdark.top", "https://hub.littlediary.cn", "https://dockerpull.o 阅读全文
posted @ 2024-11-06 18:38 岑惜 阅读(587) 评论(0) 推荐(0) 编辑
摘要: redis-cli -h <指定的IP地址> -p <指定的端口> 然后 执行 登录 auth <密码> 太久不用忘记了,记录一下 阅读全文
posted @ 2024-11-01 12:27 岑惜 阅读(2) 评论(0) 推荐(0) 编辑
摘要: <style scoped lang="less"> /deep/ .el-table__header .el-table__cell{ background-color: var(--el-fill-color-lighter) !important; } </style> 阅读全文
posted @ 2024-10-12 09:37 岑惜 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 在vue2中,无法监听写法例子 this.value[0] = val 需要改为下面写法才能正常监听 this.$set(this.value,0,val) vue3正常使用 ref 则可以正常被监听变化,在vue3中 $set已经被弃用了 阅读全文
posted @ 2024-10-09 16:25 岑惜 阅读(67) 评论(0) 推荐(0) 编辑
摘要: "dependencies": { "@kjgl77/datav-vue3": "^1.7.3", 阅读全文
posted @ 2024-09-26 17:34 岑惜 阅读(59) 评论(0) 推荐(0) 编辑
摘要: //需要挂载后才能添加监听 - 没有卸载,导致监听混乱 this.$nextTick(() => { this.$watch(() => this.$refs.grid.editFormFields.Warehouse, (newVal, oldVal) => { console.log(newVa 阅读全文
posted @ 2024-09-23 15:53 岑惜 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 包一层view即可,点击事件不要写在按钮上 阅读全文
posted @ 2024-09-14 17:47 岑惜 阅读(57) 评论(0) 推荐(0) 编辑
摘要: <dependency> <groupId>cn.keking</groupId> <artifactId>spring-boot-klock-starter</artifactId> <version>1.5-RELEASE</version> </dependency> yml配置文件上,设置r 阅读全文
posted @ 2024-09-09 11:28 岑惜 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 需要在class 样式 添加 fill: currentColor; 例子如下 阅读全文
posted @ 2024-09-04 14:46 岑惜 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 1.原因 springboot 框架不支持LocalDateTime的解析,需要自己添加一个解析配置 2.解决 创建一个配置类,位置随意 import com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer; imp 阅读全文
posted @ 2024-08-16 09:43 岑惜 阅读(85) 评论(0) 推荐(0) 编辑