
前端
跟着小何学编程
2019-7-8
展开
-
001 若依管理系统前端vue3讲解 - 项目创建与加载页
001 若依管理系统前端vue3讲解 - 项目创建与加载页原创 2024-04-12 16:34:25 · 1968 阅读 · 0 评论 -
解决uniapp 点击有底色问题
在标签上加入这个属性hover-class="none"原创 2021-11-29 09:22:00 · 1174 阅读 · 0 评论 -
uni.request发送json格式
必须将对象转json字符串发请求 uni.request({ url: URL, method: 'POST', // dataType: 'json', data: { json:JSON.stringify(json) }, header: { 'content-type': 'application/x-www-form-urlencoded' },原创 2021-05-26 14:40:41 · 7013 阅读 · 1 评论 -
导航栏下标线实现动画效果
css样式 .administration { position: relative; display: block; line-height: 80px; text-align: center; width: 80px; height: 80px; } a:hover:after { width: 100%; transition: all 300ms ease; -原创 2021-05-25 20:26:50 · 227 阅读 · 0 评论 -
uniapp获取状态栏高度
uni.getSystemInfo({ success: function(e) { // #ifndef MP Vue.prototype.StatusBar = e.statusBarHeight; if (e.platform == 'android') { Vue.prototype.CustomBar = e.statusBarHeight + 50; } else { Vue.prototype.CustomBar = e.原创 2021-05-25 14:31:54 · 2990 阅读 · 0 评论 -
vscode下载及安装
vscode下载及安装、官网地址https://code.visualstudio.com/Download下载同意协议选择自己经常放软件的文件夹里下一步效果:选择附加任务第一个选项的效果:第二选项的效果:第三选项的效果:第四选项的效果:准备安装完成安装...原创 2021-04-03 09:33:15 · 353 阅读 · 1 评论 -
vscode代码提示工具
vscode代码提示工具1、Auto Rename Tag2、Axios Snippets3、Bracket Pair Colorizer4、Chinese (Simplified) Language Pack for Visual Studio Code5、CSS Peek6、CSS Tree7、Easy LESS8、Element UI Snippets9、GitLens — Git supercharged10、HTML CSS Support11、HTML原创 2021-04-03 09:08:10 · 2666 阅读 · 0 评论 -
格式化时间
function formateDate(datetime, type) {var year = datetime.getFullYear(),month = (“0” + (datetime.getMonth() + 1)).slice(-2),date = (“0” + datetime.getDate()).slice(-2),hour = (“0” + datetime.getHours()).slice(-2),minute = (“0” + datetime.getMinutes())原创 2021-03-31 10:03:08 · 138 阅读 · 0 评论