上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 33 下一页

2020年4月3日

摘要: 弄了一晚上太坑了!!!! 1.在阿里图标库下载图标 2.下载的解压后,选取四个字体文件 3.在src/assets文件夹下新建一个叫iconfont的文件夹,把这个四个字体文件放进去 4.在src/assets/文件夹下新建一个叫styles的文件夹,把iconfont.css放进去 5.在main 阅读全文

posted @ 2020-04-03 22:31 猫头唔食鱼 阅读(1518) 评论(0) 推荐(0) 编辑

摘要: 1.安装lib-flexible插件 npm i --save-dev lib-flexible 2.在main.js里引入 import 'lib-flexible' 3.安装postcss-px2rem插件 npm i --save-dev postcss-px2rem 4.新建vue.conf 阅读全文

posted @ 2020-04-03 17:04 猫头唔食鱼 阅读(1009) 评论(0) 推荐(0) 编辑

摘要: var str = "/1/2/3/4/6666666666"; var index = str .lastIndexOf("\/"); str = str .substring(index + 1, str .length); console.log(str) 封装成方法: // 封装成方法 le 阅读全文

posted @ 2020-04-03 08:24 猫头唔食鱼 阅读(3120) 评论(0) 推荐(0) 编辑

2020年4月1日

摘要: 1.table上加上 @row-click="handleClickTableRow" 2.单选框的checkbox那列加上 @selection-change="handleSelectionChange" 3.table加上ref 4.实现1,2的方法 methods: { handleClic 阅读全文

posted @ 2020-04-01 21:30 猫头唔食鱼 阅读(3384) 评论(0) 推荐(1) 编辑

摘要: <style> .upgrade-popup >>> .el-table__row current-row .el-table td { padding: 6px 0 !important; } </style> 阅读全文

posted @ 2020-04-01 21:01 猫头唔食鱼 阅读(3555) 评论(0) 推荐(0) 编辑

2020年3月31日

摘要: res.setHeader('Content-Type','text/plain;charset="utf-8"') Content-Type的类型 text/plain 文本 text/html 包含html标签的文本 例子: var http = require('http') var serv 阅读全文

posted @ 2020-03-31 13:23 猫头唔食鱼 阅读(719) 评论(0) 推荐(0) 编辑

摘要: node.js用require()导入模块 用exports.xx 导出内容 例如: 导入 var test = require('./test'); 导出 exports.add = function(a,b){ return a + b } 其他js文件可以在引入该js后,使用其导出的模块 一个 阅读全文

posted @ 2020-03-31 00:51 猫头唔食鱼 阅读(658) 评论(0) 推荐(0) 编辑

2020年3月30日

摘要: elementUI树形控件实现隔行变色?别想了,elementUI没有这个属性。 只能通过原生js写了。 找到 el-tree-node__content 这个类进行dom操作 定义一个方法在updated里调用,一定要在updated里,其他生命周期是不行的。 // 隔行变色 changeColo 阅读全文

posted @ 2020-03-30 14:38 猫头唔食鱼 阅读(1687) 评论(0) 推荐(0) 编辑

2020年3月29日

摘要: 1.引入http模块 var http = require('http'); 2.创建服务 var server = http.createServer(); 3.绑定request事件 server.on('request',function(req,res){ // req.url 是访问的地址 阅读全文

posted @ 2020-03-29 20:44 猫头唔食鱼 阅读(1014) 评论(0) 推荐(0) 编辑

2020年3月28日

摘要: 引入fs 模块,使用fs.writeFile方法, fs.writeFile('路径','文本',function(err){}) // 引入 fs模块 var fs = require('fs') // fs.writeFile('路径','文本',err=>{}) fs.writeFile('. 阅读全文

posted @ 2020-03-28 04:13 猫头唔食鱼 阅读(363) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 33 下一页