自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(18)
  • 收藏
  • 关注

原创 vue3中使用pinia

vue3模块化使用pinia

2022-08-12 16:36:59 399 1

原创 vue3+element Plus 写的项目模版

基于vue3 + element 写的小demo项目地址:https://gitee.com/zhangconglin/vue3-admin目前功能:面包屑tagsView打字机效果animate动画粒子动画E charts

2021-12-31 14:38:13 608 1

原创 vue3 router路由跳转传参

页面引入import { useRouter } from 'vue-router'路由定义方式1 { name: 'List', path: '/list/:id', meta: { title: '列表', }, component: () => import('../pages/data/list.vue'), },路由跳转router.push({ path: `/l

2021-11-09 14:16:55 480

原创 工作中常用的js正则

去除字符串中的单引号str.replace(/\'/g,"")去除字符串中的中括号let str = '这是一个字符串[html]语句;[html]字符串很常见';str.replace(/\[|]/g,'');//移除字符串中的所有[]括号(不包括其内容)str.replace(/\[.*?\]/g,'');//移除字符串中的所有[]括号(包括其内容)获取指定字符前面的内容或后面的内容获取-前后的内容function getCaption(obj,state) {var index=

2021-09-07 20:21:28 108

原创 vue 组件循环设置ref

设置ref<classbox :ref="'goclass' + index" v-for="(item,index) in waitFinishList" :key="item.waitId" ></classbox>使用let id = 4;let index = this.waitFinishList.findIndex(item => item.courseStatus === id)let name = 'goclass' + index;this.$r

2021-05-06 16:47:13 1621

原创 uni-app 重启app

plus.runtime.restart()

2021-01-18 13:45:27 2967

原创 uni-app app 解决手机侧滑默认返回上一层级问题

https://ask.dcloud.net.cn/article/152https://www.jianshu.com/p/4e5cdfa16c5e

2021-01-14 14:53:43 3649

原创 uni-app 使用uni-push推送消息(在线&离线)

首先在manifest.json中开启uni.push在app.vue中 onlanuch周期内 var pinf = plus.push.getClientInfo(); var cid = pinf.clientid; //客户端标识 console.log('cid==' + cid) plus.push.addEventListener("receive", function(msg) { if (msg.aps) { // Apple

2020-12-04 17:56:51 2442

原创 jquery 消息通知持续上下滚动

<div id="noticelist" class="weui-flex__item" style="height: 35px;overflow: hidden"> <ul id="noticemessages" > </ul> </div> for(var i=0;i<NoticeMessage.length;i++){ $("#noticemessages").a

2020-11-26 14:50:25 487

原创 jquery循环绑定事件

for (var i = 0;i<Factories.length;i++){ $("#factorylist").append( "<p style='width: 140px' id='factory"+[i]+"'>"+ Factories[i].name +"</p>"+ ); $("#fa.

2020-11-26 14:41:43 1230

原创 js查找某个值在数组 对象数组中的下标

查找某个值在数组中的下标arr=['香蕉', '苹果', '橘子']var a1 = '苹果'var index= arr.findindex(value=>value == a1)根据值查找下对象数组中的下标arr= [ { id: 1, name: '香蕉' }, { id: 2, name: '苹果' }, { id: 3, name: '橘子' }, ],var aid = 2;var index = arr.findindex(item

2020-11-13 14:35:05 19758 1

原创 记录一个莫名其妙的bug。。。

判断下限必须小于上限if($("#device-temp-min-val").val()>=$("#device-temp-max-val").val()){ $.toast("温度下限必须低于温度上限","cancel"); return false; }是不是完全没毛病但是 只要选择5℃时 就会出错!简直是莫名其妙阿 而且实验了 把value值改为2 3 就好使 4 5 6 7 8 9 就会出错然

2020-11-07 17:05:37 180

原创 uni-app 循环数组 给每一个标签动态绑定class

<text v-for="(item,index) in reasonList" :key="index" class="reason radius margin-bottom-sm " :class="isCheck[index].name ==true ? 'reasonChecked' : 'reasonunChecked'" @click="change(index)">{{item.name}}</text>change(index) { thi

2020-11-07 15:33:00 2136

原创 uni-app 微信小程序 使用echarts

推荐使用插件市场 echarts-for-wx 插件 小程序中几乎可以完美使用 用法和echarts用法一致使用方法<uni-ec-canvas class="uni-ec-canvas" id="line-chart" canvas-id="multi-charts-line" :ec="ec"></uni-ec-canvas>import uniEcCanvas from '@/components/uni-ec-canvas/uni-ec-canvas.vue'd

2020-10-28 14:18:03 3807 5

原创 uni-app 微信小程序 getuserinfo 获取用户信息 拼音转中文

在方法中添加 lang:“zh_CN”,<button open-type="getUserInfo" @getuserinfo="wxGetUserInfo" class="auth" type="primary" >允 许</button>methods:{ wxGetUserInfo() { uni.getUserInfo({ lang:"zh_CN", success: (res) => { this.userI

2020-10-28 14:12:30 998 2

原创 uni-app 微信小程序 使用ucharts

引入getServerData() { var Column = { "categories": ["运行", "故障", "待料", "维修", "保养", "停机", "离线"], "series": [{ "name": "设备状态", "data": [ { "value": 1, "color": "#009036" }, { "value": 1, "color": "#ffeb0.

2020-10-28 11:19:59 2053

原创 uni-app 其他页面进入tabbar页面方法

需使用uni.switchTab

2020-10-19 10:51:26 2556

原创 uni-app 微信小程序 引入iconfont

uni-app 使用iconfont阿里图标库添加到购物车添加至项目下载至本地app.vue中全局引入生成代码替换 前面添加https:

2020-10-14 15:41:39 962

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除