摘要: 记录下,使用若依v3.8.7版本,后续要升级到v3.8.8版本,本地仓库合并若依仓库的新版本的提交记录: 1. 添加远程仓库 git remote add other-repo <另一个仓库的URL> 2.拉取最新 git fetch other-repo 3.合并对应的分支 git merge o 阅读全文
posted @ 2024-07-02 09:59 行走的蒲公英 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1. 获取整个表单: $("#inputForm").serializeArray() 2. 获取单个例如input: $("#input").val() 阅读全文
posted @ 2024-07-01 14:28 行走的蒲公英 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1. 火狐:https://www.colorzilla.com/zh-cn/firefox/ 2.谷歌:https://www.colorzilla.com/zh-cn/chrome/ 阅读全文
posted @ 2024-06-20 10:30 行走的蒲公英 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1. 看下效果图 表头为2栏,分为计划、记录; 左侧栏是一天中具体时间点,具体到分钟; 按钮栏分为日周月,三种视图切换: 顶部、左侧固定,都支持滑动滚动条 a56爆大奖在线娱乐超出,加入鼠标悬浮效果。 2. 用到插件 日历插件fullcalendar :使用v6版本:https://fullcalendar.io/ 阅读全文
posted @ 2024-06-14 16:42 行走的蒲公英 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 1. 先看下效果图 这里选用组件:layui的layDate 至今按钮是自定义功能,忽略 2. 官网文档: layui: https://www.bejson.com/doc/layui/doc/index.html layDate: https://www.bejson.com/doc/layui 阅读全文
posted @ 2024-06-14 16:10 行走的蒲公英 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 上方导航栏“Help→Etit Custom VM Options…”进入自定义虚拟机选项页面。 文件内容尾部加上:-Dfile.encoding=UTF-8 重启idea,运行。 阅读全文
posted @ 2024-05-28 15:53 行走的蒲公英 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 用到 createWriteStream 和 zip 插件: 写入文件夹就是拼接好路径就行:文件夹字符串,比如 ‘第一文件夹/子文件夹/孙文件夹’,成功后可写入本机 const handleBatchDownload = async (cosFileNameUrls, downName) => { 阅读全文
posted @ 2024-05-23 14:40 行走的蒲公英 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 1. 先看下要实现的效果图,左侧栏为当日时间,顶部为部门所有人员,表格内容是人员事件,要求数据多的时候,左侧栏和顶部固定,支持横竖滚动条,如图: 2. 这里用的js原生写法: <html> <head> <title>工作记录详情</title> <meta name="decorator" con 阅读全文
posted @ 2024-05-23 11:17 行走的蒲公英 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 用的vue3+最新版本:官网链接:https://fullcalendar.io/demos 效果如图:x轴为人员,y轴为当日的时间段: 1. 安装 引入 npm install --save @fullcalendar/core @fullcalendar/resource @fullcalend 阅读全文
posted @ 2024-05-20 14:24 行走的蒲公英 阅读(45) 评论(0) 推荐(0) 编辑
摘要: uniapp小程序,引入uni-ui库后,观察到其他组件,有的默认有清除按钮,比如: 在写内置组件 input框,查看文档没有此属性,官方示例在这里:https://github.com/dcloudio/hello-uniapp/blob/master/pages/component/input/ 阅读全文
posted @ 2024-05-13 15:28 行走的蒲公英 阅读(165) 评论(0) 推荐(0) 编辑