上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: nextBtn(formName) { const { projectId, type, account, userName, contactWay, email, password, againPassword, } = this.ruleForm; if ( projectId && type 阅读全文
posted @ 2022-05-19 14:28 abcByme 阅读(15) 评论(0) 推荐(0) 编辑
摘要: <p> <span>手机号:</span> {{ telShow ? changetel(userInfo.contactWay) : userInfo.contactWay }} <i class="showTel" @click="showTelClick(userInfo.contactWay 阅读全文
posted @ 2022-05-19 10:53 abcByme 阅读(20) 评论(1) 推荐(0) 编辑
摘要: 需要把数据返回到父页面,父页面接收到数据后调用 this.$refs.formValidate.validateField('XXXX') 来重新校验表单,因为已经收到数据,所以校验通过,红色提示文字就会消失 例如 <FormItem label="图标1:" prop="iconFirst" re 阅读全文
posted @ 2022-05-18 11:17 abcByme 阅读(596) 评论(0) 推荐(0) 编辑
摘要: 来自 https://www.h5w3.com/144598.html 侵删 vue项目中使用axios作为ajax请求插件,由于异步的原因,项目初始化之后axios获取的localstorage中缓存的token,在无刷新的情况下,localstorage缓存的token并不会被axios检测到更 阅读全文
posted @ 2022-04-21 11:49 abcByme 阅读(772) 评论(0) 推荐(0) 编辑
摘要: if (window !== top) { top.location.href = "a"; } else { window.location.href = "b"; } 其实就是 top.location.href 和 window.location.href 的区别 阅读全文
posted @ 2022-04-19 17:19 abcByme 阅读(496) 评论(0) 推荐(0) 编辑
摘要: 在跳转iframe的时候 把 iframe 存储下来刷新后判断是否存在保存的iframe如果有 就赋值 sliderClick(i, item) { this.sIndex = item.id; this.toggleSlider = true; this.iframeId = item.id; t 阅读全文
posted @ 2022-04-19 16:22 abcByme 阅读(777) 评论(0) 推荐(0) 编辑
摘要: 1.配置app id 2.路由配置-非常重要。否则会出现图片路径访问不到的情况 3.其他设置 阅读全文
posted @ 2022-04-15 16:31 abcByme 阅读(1621) 评论(0) 推荐(0) 编辑
摘要: <div class="basicInfo-box"> <div v-for="(item, index) in baoxiulist" class="sub-list"> <div> <p>2022-04-09 17:25:22</p> <p>王丽:提交报修单</p> </div> <div v- 阅读全文
posted @ 2022-04-09 14:42 abcByme 阅读(293) 评论(0) 推荐(0) 编辑
摘要: setup的执行时组件对象还没有创建,此时不能使用this来访问data/computed/methods/props我们可以通过 getCurrentInstance这个函数来返回当前组件的实例对象,也就是当前vue这个实例对象 <template> <div> </div> </template 阅读全文
posted @ 2022-02-23 10:18 abcByme 阅读(2073) 评论(0) 推荐(0) 编辑
摘要: const path = require('path') const resolve = function (dir) { return path.join(__dirname, dir) } module.exports = { publicPath: process.env.NODE_ENV ' 阅读全文
posted @ 2022-02-10 17:05 abcByme 阅读(522) 评论(0) 推荐(0) 编辑
摘要: 1.定义组件 <template> <h1>{{result}}</h1> </template> <script> export default { name: "NewModel", setup(){ return new Promise((resolve)=>{ setTimeout(()=> 阅读全文
posted @ 2022-02-10 11:20 abcByme 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 来自:https://www.jianshu.com/p/1c142ec2ca45 侵删 如何区分深拷贝与浅拷贝,简单点来说,就是假设B复制了A,当修改A时,看B是否会发生变化,如果B也跟着变了,说明这是浅拷贝,拿人手短,如果B没变,那就是深拷贝,自食其力。 1. 如果是基本数据类型,名字和值都会储 阅读全文
posted @ 2022-01-17 09:39 abcByme 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 来自:本文地址:http://www.cnblogs.com/dongcanliang/p/7054176.html 侵删 前言 this 指向问题是入坑前端必须了解知识点,现在迎来了ES6时代,因为箭头函数的出现,所以感觉有必要对 this 问题梳理一下,遂有此文 在非箭头函数下, this 指向 阅读全文
posted @ 2022-01-14 14:57 abcByme 阅读(288) 评论(1) 推荐(0) 编辑
摘要: 来自 https://www.jianshu.com/p/02c1cf54a5df 侵删 this.props.location.query: 1)路由注册 <Route path=' /target ' component={TargetPage}></Route> 2)发起跳转页面 html方式 阅读全文
posted @ 2021-12-16 11:30 abcByme 阅读(1370) 评论(0) 推荐(0) 编辑
摘要: function request({ url, data, method }) { uni.showLoading({ title: '加载中...' }); return new Promise((resolve, reject) => { // alert('token',getLocalSto 阅读全文
posted @ 2021-12-15 17:09 abcByme 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 来自 :https://blog.csdn.net/qq_37041819/article/details/116597572 侵删 1.引入element-ui upload组件 <el-upload class="avatar-uploader" :headers="myHeaders" :ac 阅读全文
posted @ 2021-12-13 17:06 abcByme 阅读(1247) 评论(1) 推荐(0) 编辑
摘要: <template> <div class="department-container"> <p>栏目管理</p> <div style="display: flex; margin: 10px 0"> <Button type="primary" @click="addNew">新增栏目</But 阅读全文
posted @ 2021-12-13 17:00 abcByme 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 来自:https://www.cnblogs.com/niexianda/p/14482157.html 侵删 先看结果 结果 [ { "id": 1, "title": "张三", "parent_id": -1, "childs": [ { "id": 2, "title": "张小二", "p 阅读全文
posted @ 2021-12-13 10:46 abcByme 阅读(1538) 评论(2) 推荐(0) 编辑
摘要: 作者:Ting Yu链接:https://zhuanlan.zhihu.com/p/434776450来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 1.防抖: function debounce(fn, delay) { let timer return funct 阅读全文
posted @ 2021-12-02 14:55 abcByme 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-11-16 16:23 abcByme 阅读(18) 评论(0) 推荐(0) 编辑
摘要: function getNowFormatDate() { var date = new Date(); var seperator1 = "-"; var seperator2 = ":"; //前十分钟时间 var minutes=parseInt("10"); var interTimes=m 阅读全文
posted @ 2021-11-02 15:52 abcByme 阅读(1936) 评论(0) 推荐(1) 编辑
摘要: {{ listIndex == 2 ? item.name == "填报时间" ? "填报周期" : item.name : item.name }} <span>{{ chartDataType == 1 ? "园区经济排行" : chartDataType == 2 ? "园区能耗排行" : " 阅读全文
posted @ 2021-10-29 10:06 abcByme 阅读(172) 评论(0) 推荐(0) 编辑
摘要: <FormItem :label="item.name" prop="" v-for="(item, index) in Listnew" class="newformItem" > <Input v-model="item.value" style="width: 340px" type="tex 阅读全文
posted @ 2021-10-28 17:25 abcByme 阅读(91) 评论(0) 推荐(0) 编辑
摘要: if (_temp.dataView) { const _json = JSON.parse(_temp.dataView); const _tempArr = []; Object.keys(_json).forEach((key, index) => { _tempArr.push({ valu 阅读全文
posted @ 2021-09-14 17:09 abcByme 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 重点的代码是eChart.off("click"); 在给ehcart绑定事件时,要先写上以上代码。 阅读全文
posted @ 2021-08-27 17:30 abcByme 阅读(613) 评论(0) 推荐(0) 编辑
摘要: 竟然是key的原因。是key的原因!!! 阅读全文
posted @ 2021-08-27 17:28 abcByme 阅读(928) 评论(2) 推荐(0) 编辑
摘要: var websock = null; var globalCallback = null; // 初始化weosocket function initWebSocket() { // ws地址 -->这里是你的请求路径 // var ws = `ws://192.168.79.185:8089/p 阅读全文
posted @ 2021-08-18 10:01 abcByme 阅读(390) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="container"> <div class="earth-container"> <div class="earth-item-box"> <div class="earth-item"></div> </div> <div class="earth- 阅读全文
posted @ 2021-08-06 14:21 abcByme 阅读(964) 评论(1) 推荐(1) 编辑
摘要: https://www.jianshu.com/p/a2a7d3a9cf2b 侵删 1、安装vue-seamless-scroll npm install vue-seamless-scroll --save 2、引入组件 <vue-seamless-scroll></vue-seamless-sc 阅读全文
posted @ 2021-08-04 11:24 abcByme 阅读(1191) 评论(0) 推荐(0) 编辑
摘要: 来自 https://www.cnblogs.com/tuspring/p/9801603.html 侵删 vue-countTo是一个无依赖,轻量级的vue组件,可以自行覆盖easingFn。 你可以设置 startVal 和 endVal,它会自动判断计数或倒计时。支持vue-ssr。vue-c 阅读全文
posted @ 2021-08-03 11:25 abcByme 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 来自:https://www.cnblogs.com/taohuaya/p/10274993.html#%E5%A6%82%E4%BD%95%E5%9C%A8vue-cli3.0%E4%B8%AD%E4%BD%BF%E7%94%A8postcss-plugin-px2rem%C2%A0%E6%8F% 阅读全文
posted @ 2021-07-28 11:12 abcByme 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 来自 https://www.jb51.net/article/174637.htm 侵删 1.cnpm install postcss-pxtorem -D安装postcss-pxtorem,此插件如果你用的是webpack的话只要进行安装即可,不需要另外进行配置,此插件是对px进行转换。 2.新 阅读全文
posted @ 2021-07-28 10:08 abcByme 阅读(458) 评论(2) 推荐(0) 编辑
摘要: let current = this.$router.history.current; this.activeIndex = current.path; if (current.meta.parent) { this.activeIndex = current.meta.parent; } 阅读全文
posted @ 2021-07-23 15:14 abcByme 阅读(647) 评论(0) 推荐(0) 编辑
摘要: <el-carousel trigger="click" class="gwbox-carouselBox left-sub2-carouselBox" :autoplay="false" > <el-carousel-item class="gwbox-carouselBox-child" v-f 阅读全文
posted @ 2021-07-23 10:25 abcByme 阅读(521) 评论(0) 推荐(0) 编辑
摘要: 方式一<template> <div v-for="(item,index) in menus :key="index> <img :src="require(`../../assets/images/${item.icon}`)" /> <span>{{item.name}}</span> </d 阅读全文
posted @ 2021-07-09 11:20 abcByme 阅读(3525) 评论(6) 推荐(0) 编辑
摘要: mapJson: [ { featureType: "land", elementType: "geometry.fill", stylers: { color: "#08304B", }, }, { featureType: "land", elementType: "geometry.strok 阅读全文
posted @ 2021-07-05 10:09 abcByme 阅读(735) 评论(0) 推荐(0) 编辑
摘要: // 地图默认弹框 /*地图标题 infoWindow*/ // .BMap_bubble_title { // color: #fff; // font-size: 16px; // font-weight: bold; // text-align: left; // background: tr 阅读全文
posted @ 2021-06-30 11:11 abcByme 阅读(3393) 评论(0) 推荐(0) 编辑
摘要: //地图点击事件-公司详情 // 创建图文信息窗口 let sContent = "<div class='comyInfoBox'>" + " <div class='comyInfoBox-head'>" + "<span class='active' id='qiye1'> 企业数据 </sp 阅读全文
posted @ 2021-06-30 10:59 abcByme 阅读(788) 评论(0) 推荐(0) 编辑
摘要: function showTime() { let show_day = new Array( "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日" ); let time = new Date(); let year = time.getFullYear( 阅读全文
posted @ 2021-06-24 16:30 abcByme 阅读(1490) 评论(0) 推荐(0) 编辑
摘要: 这个问题是因为异步加载的 树形数据结构造成的。只需要筛选保留需要的属性即可。 例如,原数组结构是 对数据进行处理。保留几个需要的属性即可—— 阅读全文
posted @ 2021-06-22 11:05 abcByme 阅读(382) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页