2022年7月19日
摘要: 1、写好点击事件 2、在methods 中的点击事件中写 一下代码即可 // 点击滚动到顶部显示 toTitle(index) { document.getElementsByClassName("topicTitle")[index].scrollIntoView({ behavior: "smo 阅读全文
posted @ 2022-07-19 15:44 好大的虫子 阅读(305) 评论(0) 推荐(0) 编辑
  2022年7月8日
摘要: 在被引入的头部文件中添加以下代码即可 原因:每跳转一个新页面都显示的是新页面引入的头部,头部初始值设置的就是第0项 解决思路:点击每一项时记录下每一项的路由地址,然后利用路由地址来改变头部高亮位置 watch: { $route: { handler(to) { // console.log(thi 阅读全文
posted @ 2022-07-08 12:58 好大的虫子 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-07-08 12:48 好大的虫子 阅读(2038) 评论(0) 推荐(0) 编辑
  2022年6月29日
摘要: 去掉style标签里的scoped、 有strong标签的,将strong标签设置display: block;即可设置strong的样式 阅读全文
posted @ 2022-06-29 14:12 好大的虫子 阅读(526) 评论(0) 推荐(0) 编辑
  2022年6月28日
摘要: 在标签内添加 <i slot="suffix" class="el-icon-view" @click="showPwd"></i> 即可出现图标,并附加了点击事件 <el-input v-model="ruleForm.password" placeholder="请输入密码"> <i slot= 阅读全文
posted @ 2022-06-28 13:20 好大的虫子 阅读(3322) 评论(0) 推荐(0) 编辑
摘要: 只需要在 el-input 的标签中加入 show-password 即可 <el-input v-model="ruleForm.password" placeholder="请输入密码" show-password> 阅读全文
posted @ 2022-06-28 13:17 好大的虫子 阅读(1726) 评论(0) 推荐(0) 编辑
  2022年6月22日
摘要: 阅读全文
posted @ 2022-06-22 12:36 好大的虫子 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 在App.vue的style中写上 /* 解决小程序和app滚动条的问题 */ /* #ifdef MP-NEIXIN 11 APP-PLUS */ ::-webkit-scrollbar { display: none; width: 0 !important; height: 0 !import 阅读全文
posted @ 2022-06-22 12:35 好大的虫子 阅读(2051) 评论(0) 推荐(0) 编辑
摘要: 1.在项目文件夹里面的地址栏中输入npm后回车 2.在弹出来的管理员界面输入 npm install base-64 后回车 3.在需要使用的页面引入 import Base64 from 'base-64'; 4.提交时转换成base64后提交 const en = Base64. encode( 阅读全文
posted @ 2022-06-22 12:04 好大的虫子 阅读(1268) 评论(0) 推荐(0) 编辑
  2021年5月10日
摘要: var itemLi = document.querySelectorAll("#list li img"); var picImg = document.querySelector("#pic img"); for (var i = 0; i < itemLi.length; i++) { //f 阅读全文
posted @ 2021-05-10 20:56 好大的虫子 阅读(274) 评论(0) 推荐(0) 编辑