会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
蒜泥香菜
博客园
首页
新随笔
联系
订阅
管理
2023年1月4日
echarts饼图鼠标移入高亮设置
摘要: 通过鼠标移入配合dispatchAction设置itemStyle.color的颜色 // 饼图 let echart = echarts.init(document.getElementById(this.echartId.source)); echart.setOption({ series:
阅读全文
posted @ 2023-01-04 18:15 蒜泥香菜
阅读(1565)
评论(0)
推荐(0)
2022年11月18日
linux常用命令
摘要: cp容器内的文件 # 进入容器 docker exec -it lab-web-exam bash # 从容器复制文件到主机 docker cp <container_id_or_name>:/path/in/container/file.txt ./ docker cp lab-web-exam:
阅读全文
posted @ 2022-11-18 17:20 蒜泥香菜
阅读(45)
评论(0)
推荐(0)
2022年11月15日
Git常用命令
摘要: 分支 branch 查看本地和远程分支关联情况 git branch -vv 推送并关联远端分支 git push -u origin master 把commit记录合并成一次, 并不提交 git merge --squash --no-commit <branch name> 冲突取消合并, g
阅读全文
posted @ 2022-11-15 15:21 蒜泥香菜
阅读(49)
评论(0)
推荐(0)
2022年11月11日
flexible.js
摘要: (function flexible(window, document) { var docEl = document.documentElement; var dpr = window.devicePixelRatio || 1; // adjust body font size function
阅读全文
posted @ 2022-11-11 08:56 蒜泥香菜
阅读(337)
评论(0)
推荐(0)
2022年11月9日
URL.createObjectURL()
摘要: URL.createObjectURL(blob)和FileReader.readAsDataURL(file)很相似 URL.createObjectURL() 静态方法会创建一个 DOMString,其中包含一个表示参数中给出的对象的URL。这个 URL 的生命周期和创建它的窗口中的 docum
阅读全文
posted @ 2022-11-09 14:26 蒜泥香菜
阅读(1172)
评论(0)
推荐(0)
2022年11月8日
iview form组件中可编辑表格校验
摘要: FormItem里再嵌套FormItem,rules写行内。 <template> <Layout class="rightContent"> <Content> <div class="my-page"> <Form ref="form" :model="formData" :rules="rul
阅读全文
posted @ 2022-11-08 09:48 蒜泥香菜
阅读(365)
评论(0)
推荐(0)
2022年11月5日
我的第一个博客
摘要: 2022年11月5日 周六加班!!! 好文推荐: 十三年老程序员,跟你聊聊前端 职业规划 我分析了自己性格中的让我受益的部分,也想分享给大家,希望大家也能从中获益 敢于接受挑战:人与人之间的分水岭,可能也就差那么一两次挑战,跃过去以后,你可能发现后面海阔天空。同时这也决定了你看待问题的方式,你能否能
阅读全文
posted @ 2022-11-05 09:41 蒜泥香菜
阅读(13)
评论(0)
推荐(0)