posted @ 2021-11-17 11:47 凡凡0410 阅读(394) 评论(0) 推荐(0) 编辑
2021年11月17日
摘要:
import axios from 'axios'; axios.get('../../static/readme.md').then(res=> { console.log(res.data); });需要值得注意的是,静态文件的地址必须是和src文件夹同级的static文件夹,才可以获取到文件( 阅读全文
2021年11月8日
2021年11月1日
摘要:
问题描述: vite 项目 build 部署后在浏览器中访问出现以下报错: Expected a JavaScript module script but the server responded with a MIME type of "text/html" Strict MIME type ch 阅读全文
posted @ 2021-11-01 14:55 凡凡0410 阅读(20385) 评论(0) 推荐(0) 编辑
2021年10月29日
摘要:
记录一次无语的bug,找了半天代码,最后发现是css写的问题 bug效果如下 但是我发现element-ui的例子中并没有出现这种问题,,最后一段排查, 发现 我给这个表格加了一个css样式, .el-table tr:hover { background: none; } 鼠标移入行的时候,去掉了 阅读全文
posted @ 2021-10-29 10:50 凡凡0410 阅读(601) 评论(0) 推荐(0) 编辑
2021年10月12日
摘要:
实现效果如图,在里边的那个饼图中,label的内容展示不同的样式 这个实现有两个要点 1.里边的饼图没有使用主题中默认的颜色 2.label的内容的样式不同 实现方式 series: [ { name: '', type: 'pie', selectedMode: 'single', radius: 阅读全文
posted @ 2021-10-12 17:11 凡凡0410 阅读(622) 评论(0) 推荐(0) 编辑
2021年9月22日
摘要:
Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.remote: Please see https://github.blog/ 阅读全文
posted @ 2021-09-22 17:08 凡凡0410 阅读(491) 评论(0) 推荐(0) 编辑
2021年9月14日
摘要:
报错的原因是:生成线的时候,找不到目标源的id,如下,红色部分,在已生成的nodes中,找不到源所指向的节点id 解决方式就是加判断句 let nodeIds = this.nodeList.map((item) => { return item.modelId; }); this.linkList 阅读全文
posted @ 2021-09-14 14:25 凡凡0410 阅读(223) 评论(0) 推荐(0) 编辑
2021年9月13日
摘要:
一般vue项目,我们会封装好axios请求,,和后端约定好,对返回也做好处理,当遇上下载文件时,后端直接返回二进制文件流,需要我们自己在拦截器先设置好返回数据的格式 // interceptors 拦截器,统一处理接口的响应和错误 // 特殊处理 - 下载附件直接返回了二进制流 AxiosInsta 阅读全文
posted @ 2021-09-13 14:24 凡凡0410 阅读(1094) 评论(0) 推荐(0) 编辑
摘要:
在test.vue的组件中,使用test.vue export default{ name:"Test" } 不需要import 引入自己,也不需要在components中引入 直接使用就可以 <Test/> 阅读全文
posted @ 2021-09-13 11:04 凡凡0410 阅读(1048) 评论(0) 推荐(0) 编辑
2021年9月2日
摘要:
附上文档连接 https://resources.jointjs.com/tutorial/custom-attributes 代码在最后 element.attr('body/strokeWidth', 2); element.prop('id', "自己得id"); /** * 改写 joint 阅读全文
posted @ 2021-09-02 17:50 凡凡0410 阅读(221) 评论(0) 推荐(0) 编辑