摘要: hasOwnProperty(propertyName)方法 是用来检测属性是否为对象的自有属性,如果是,返回true,否者false; 参数propertyName指要检测的属性名; 用法:object.hasOwnProperty(propertyName) // true/false hasO 阅读全文
posted @ 2022-11-08 11:54 Chaplink 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 1、安装 js-file-download npm install js-file-download 2、引入 import fileDownload from 'js-file-download'; 3、使用 download() { this.$api.fileDownload().then(r 阅读全文
posted @ 2022-11-08 11:49 Chaplink 阅读(751) 评论(0) 推荐(0) 编辑
摘要: 后端返回的是文件流形式,并且在浏览器输入链接是直接下载到本地的。 文件流遇到问题可参考这个 https://blog.csdn.net/Robergean/article/details/125981195 https://www.hangge.com/blog/cache/detail_3163. 阅读全文
posted @ 2022-11-08 11:43 Chaplink 阅读(2154) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://blog.csdn.net/weixin_46002631/article/details/123135208 可参考链接:https://blog.csdn.net/bigbear00007/article/details/102594645 vue渲染以及监听问题 举个 阅读全文
posted @ 2022-11-08 10:35 Chaplink 阅读(1267) 评论(0) 推荐(0) 编辑
摘要: 通常在使用的时候,v-model的值为当前被选中的el-option的value属性值,但有些时候我们也需要用到label值,这时我们需要把 :value="item.value" 改成 :value="{ value: item.value, label: item.label}" 添加@chan 阅读全文
posted @ 2022-11-08 10:14 Chaplink 阅读(450) 评论(0) 推荐(0) 编辑
摘要: 参考 https://fullcalendar.io/demos https://www.cnblogs.com/czk1634798848/p/13386178.html https://blog.csdn.net/qq_39863107/article/details/105387879 引入了 阅读全文
posted @ 2022-11-08 09:35 Chaplink 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 参考 https://www.icode9.com/content-4-1384870.html 通过设置css超出换行,监听是否超出所设置的值,重新对数据插入标识,并刷新dom树实现。 <div class="class-datas"> <p class="datas-title">可排课专业:< 阅读全文
posted @ 2022-11-07 18:04 Chaplink 阅读(1661) 评论(0) 推荐(0) 编辑
摘要: 这个好像是github上找来改的还是百度上的,回头去找没找到。如找回出处会补上。 这个有一个比较坑的点是courses的数据的每个数组必须为7个数据(看你设置一周几天,以7天为例), 每个[{},{},{},{},{},{},{}]指代的是这7天的第几节课,如果后端愿意帮忙处理数据那还好,不然就需要 阅读全文
posted @ 2022-11-07 17:41 Chaplink 阅读(705) 评论(0) 推荐(0) 编辑
摘要: this.time=val.toLocaleDateString().replace(/\//g, "-") + " " + val.toTimeString().substr(0, 8)月日单数不补0 this.time=this.farmatDate(new Date(val.getTime() 阅读全文
posted @ 2022-06-08 16:59 Chaplink 阅读(28) 评论(0) 推荐(0) 编辑
摘要: //安装插件 npm install vue-json-excel //引入main.js import JsonExcel from "vue-json-excel"; Vue.component("downloadExcel", JsonExcel); //html代码 <download-ex 阅读全文
posted @ 2022-06-08 16:43 Chaplink 阅读(99) 评论(0) 推荐(0) 编辑