2021年11月16日

git push origin master 出现 everything up -to-date

摘要: 今天用git将本地代码传到github上去,一步步的代码如下: 提交git本地有数据gitee上无数据是缺少了commit 1.登陆账号密码: git config --global user.email "you@example.com"git config --global user.name 阅读全文

posted @ 2021-11-16 14:55 执着的烙印 阅读(416) 评论(0) 推荐(0) 编辑

2021年11月3日

测试初学

摘要: 一个新的开始,愿有个一个好的坚持! 阅读全文

posted @ 2021-11-03 20:13 执着的烙印 阅读(6) 评论(0) 推荐(0) 编辑

2021年10月21日

gitee简单命令使用

摘要: git clone + 地址 git status 查看当前状态 git add -A 暂存 git commit -m‘提交的描述’ 提交 git push 推送到远程分支 git pull 从远程分支拉取npm install 安装依赖npm run serve 运行项目npm run buil 阅读全文

posted @ 2021-10-21 15:10 执着的烙印 阅读(34) 评论(0) 推荐(0) 编辑

2021年9月16日

获取dom元素的属性

摘要: getStyleHeight(ele,property){ let elem = document.querySelector(ele) if(elem) { return document.defaultView.getComputedStyle ? document.defaultView.ge 阅读全文

posted @ 2021-09-16 17:20 执着的烙印 阅读(272) 评论(0) 推荐(0) 编辑

2021年6月21日

var let const 变量声明学习

摘要: ES6【ES2015】之前 : var 函数作用域 作用域提升 重复声明不报错 全局声明的变量成为window对象的属性 ES6【ES2015】之后 : let 块级作用域 没有提升,有TDZ【temporal dead zone】=【暂时性死区】 不能重复声明 混用var 和let ,重复声明会报 阅读全文

posted @ 2021-06-21 16:58 执着的烙印 阅读(30) 评论(0) 推荐(0) 编辑

script元素学习

摘要: script 使用不同属性的代码示例。 》 parser 》html引擎的解析,解析html文本的解析器 fetch 》获取脚本资源 execution==》执行 runtime==》执行的时间线 1. 解析html文本,碰到script标签,停止html解析,获取script引用外部文件, 获取后 阅读全文

posted @ 2021-06-21 16:09 执着的烙印 阅读(50) 评论(0) 推荐(0) 编辑

2021年6月17日

基本的linux命令学习-git会用哦

摘要: cd 改变目录 ,例如到a文件,则 cd a cd .. 回退到上一目录, 直接进入cd进入默认目录 pwd 显示当前所在的目录路径 clear 清屏 ls(ll)==列出当前目录中的所有文件, 只不过ll(两个ll)列出的内容更为详细 rm 删除一个文件,rm index.js 就会把index. 阅读全文

posted @ 2021-06-17 18:30 执着的烙印 阅读(27) 评论(0) 推荐(0) 编辑

2021年4月25日

render函数- table表格- el-popover-select-option

摘要: render:(h,params)=>{ return ( <div>{ <div> <el-popover ref="popover" placement="right" width="170" trigger="click"> <el-select v-model={params.row.cha 阅读全文

posted @ 2021-04-25 17:09 执着的烙印 阅读(617) 评论(0) 推荐(0) 编辑

2021年4月16日

element ui 时间控件

摘要: pickerOptions: { shortcuts: [ { text: "昨天", onClick(picker) { const end = new Date(); const start = new Date(); start.setTime(start.getTime() - 3600 * 阅读全文

posted @ 2021-04-16 16:42 执着的烙印 阅读(341) 评论(0) 推荐(0) 编辑

2021年4月13日

导出-点击导出,导出文件

摘要: exportList() { const token = getStore("Token"); let options = ""; // const options = `mStartTime=${this.search.mStartTime}&mEndTime=${this.search.mEnd 阅读全文

posted @ 2021-04-13 16:04 执着的烙印 阅读(133) 评论(0) 推荐(0) 编辑

导航