摘要: handel(ide) { let that = this; console.log(that.goodCaseList); let detailData = that.goodCaseList.find((v) => { return v.id == ide; }); 阅读全文
posted @ 2022-09-19 13:29 xuelin 阅读(62) 评论(0) 推荐(0)
摘要: 1、params 方式传递和接收参数 //传参 this.$router.push({ name: 'checkDetailInfo', params:{ fkdNum:fkdNum, jyayStr:jyayStr, defaultStr:defaultStr, detailViewBtn:det 阅读全文
posted @ 2022-09-19 13:28 xuelin 阅读(131) 评论(0) 推荐(0)
摘要: 取消勾选设置-功能-compact Folders 阅读全文
posted @ 2022-09-13 17:58 xuelin 阅读(16) 评论(0) 推荐(0)
摘要: 解决方法: 1、先删除 node_modules 依赖 npm rm -rf node_modules 2、首先安装 报错的插件 npm install --save core-js 3、最后再 npm install 或者 yarn install npm install yarn install 阅读全文
posted @ 2022-09-13 17:24 xuelin 阅读(87) 评论(0) 推荐(0)
摘要: ###官网文档:https://vuex.vuejs.org/zh/ ###辅助理解的博客:https://blog.csdn.net/m0_70477767/article/details/125155540 #vueX是什么 ####Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式 阅读全文
posted @ 2022-09-09 09:41 xuelin 阅读(120) 评论(0) 推荐(0)
摘要: 1.单行实现文字省略号 /这里要显示的设置宽度/ overflow:hidden; white-space:nowrap; /文字超出宽度则显示ellipsis省略号/ text-overflow:ellipsis; width:100%; 2345截图20181015145014.png 2.第几 阅读全文
posted @ 2022-07-14 10:20 xuelin 阅读(69) 评论(0) 推荐(0)
摘要: 项目搭建规范 一. 代码规范 1.1. 集成editorconfig配置 EditorConfig 有助于为不同 IDE 编辑器上处理同一项目的多个开发人员维护一致的编码风格。 # http://editorconfig.org root = true [*] # 表示所有文件适用 charset 阅读全文
posted @ 2022-07-03 11:48 xuelin 阅读(156) 评论(0) 推荐(0)
摘要: 原生的tring类型比较会进行隐式转换,如'100'>90 为true 阅读全文
posted @ 2022-05-25 23:32 xuelin 阅读(30) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-05-25 22:33 xuelin 阅读(20) 评论(0) 推荐(0)
摘要: ###HTML <template id="my-app"> <table> <thead> <th>序号</th> <th>书籍名称</th> <th>出版时间</th> <th>价格</th> <th>购买数量</th> <th>操作</th> </thead> <tbody> <tr v-fo 阅读全文
posted @ 2022-05-24 12:28 xuelin 阅读(38) 评论(0) 推荐(0)