摘要: 1.mode="aspectFill" 保持图片宽高比例不变 用法 <image class="image" lazy-load :src="item.image" mode="aspectFill"></image> lazy-load 懒加载 阅读全文
posted @ 2022-11-03 16:05 干红 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 1.申请key 2.新建文件夹bmpgl.js export function BMPGL(ak) { return new Promise(function(resolve, reject) { window.init = function() { // eslint-disable-next-l 阅读全文
posted @ 2022-10-31 14:57 干红 阅读(1130) 评论(0) 推荐(0) 编辑
摘要: // 缓动动画 // 封装缓动动画函数 传递两个参数 需要执行动画的对象和目标位置 function animate (obj,target){ //先把原先的定时器清除,只保留一个. clearInterval(obj.time); obj.time = setInterval( function 阅读全文
posted @ 2022-10-27 14:02 干红 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 1.安装 npm install swiper@3 --save-dev2.引入 import Vue from 'vue'import App from './App.vue'import router from './router'import store from './store' impo 阅读全文
posted @ 2022-10-27 10:55 干红 阅读(402) 评论(0) 推荐(0) 编辑
摘要: /* 定义滚动条样式 */ ::-webkit-scrollbar { width: 3px; //滚动条宽度 height: 5px; //滚动条高度 border-radius: 10px; //滚动条圆角 background-color: rgba(226, 226, 226, 0.897) 阅读全文
posted @ 2022-10-25 17:12 干红 阅读(22) 评论(0) 推荐(0) 编辑
摘要: import axios from 'axios' import { Toast } from 'vant' import store from '../store' // 区分开发环境(development)下的测试接口与生产环境(production)下的真实(线上)接口基准路径 const 阅读全文
posted @ 2022-09-05 17:09 干红 阅读(33) 评论(0) 推荐(0) 编辑
摘要: // 保存数据到 sessionStorage sessionStorage.setItem('key', 'value'); // 从 sessionStorage 获取数据 let data = sessionStorage.getItem('key'); // 从 sessionStorage 阅读全文
posted @ 2022-08-15 16:54 干红 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 1.创建和存储cookie。 // 函数中的参数分别为 cookie 的名称、值以及过期天数function setCookie(c_name,value,expiredays){ var exdate=new Date(); exdate.setDate(exdate.getDate()+expi 阅读全文
posted @ 2022-08-15 11:33 干红 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 1存数据,将value存储到key字段,如果key存在时,就更新value。 var requesteducatData = { "school": '吉林大学', "startSchoolTime": '2015', "finishSchoolTime": '2019', "schoolTypeI 阅读全文
posted @ 2022-08-01 01:05 干红 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 放在事件下边 this.$once('hook:beforeDestroy', () => { clearInterval(timer); }) 阅读全文
posted @ 2022-08-01 00:41 干红 阅读(294) 评论(0) 推荐(0) 编辑