03 2022 档案
摘要:1、首先检查下自己的电脑有无java环境,打开CMD 输入java -version,如果有安装会跟下图一样: 2、在cmd命令行中执行keytool -genkey -alias mhhk -keyalg RSA -keysize 2048 -validity 36500 -keystore mh
阅读全文
摘要:formateSeconds(endTime){ let secondTime = parseInt(endTime)//将传入的秒的值转化为Number let min = 0// 初始化分 let h =0// 初始化小时 let result='' if(secondTime>=60){//如
阅读全文
摘要:.el-input__inner{ height:30px !important; .el-input__icon{ line-height: 24px !important; } .el-range-separator{ line-height:24px !important; }}
阅读全文
摘要:修改选中页码的样式: .el-pager .active{ color:red !important;//选中 } .el-pager .number:hover{ color:red !important;//移动 } 使用: <template> <div class="block"> <el-
阅读全文
摘要:vue资源库中有个插件很好用vue-cookies 安装 npm install vue-cookies --save import VueCookies from 'vue-cookies' Vue.use(VueCookies) $cookies.config() 设置默认值 this.$coo
阅读全文
摘要:在导航守卫加上window.scrollTo(0,0);
阅读全文
摘要:get: axios.get('/user', { params: { ID: 12345 } }) .then(res=>{ console.log(res)}) .catch(rej=>{ console.log(rej)}) 或: axios({ method: 'get', url: '/u
阅读全文