上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 19 下一页
摘要: console.log眼见不一定为实 阅读全文
posted @ 2020-11-01 18:38 Kobe_bk 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 播放器: video: H5原生标签 使用: js-video: ailplayer: 官网:https://player.alicdn.com/aliplayer/presentation/index.html?type=cover 使用: 注意事项: flv.js: 区别与联系: 阅读全文
posted @ 2020-10-30 17:03 Kobe_bk 阅读(93) 评论(0) 推荐(0) 编辑
摘要: js变量: 在js中,变量是存储数据值的容器(内存中一块存储数据的额空间) 定义变量: 通过var关键字,var a = 7; console.log(a)//7 定义一个名为a的变量7,打印出来 阅读全文
posted @ 2020-10-23 17:57 Kobe_bk 阅读(69) 评论(0) 推荐(0) 编辑
摘要: js函数 阅读全文
posted @ 2020-10-22 18:42 Kobe_bk 阅读(87) 评论(0) 推荐(0) 编辑
摘要: js数组的作用,或者说为什么要有数组? 作用:使用单一的变量名来存储 多个值 创建 数组的方式: 1.通过字面量:最常用,重要 var arr1 = [ ]; //创建空数组 var arr2 = [1,2,3]; //创建数组元素为1 2 3 的 数组 arr2 2. 通过 new 关键字 var 阅读全文
posted @ 2020-10-22 18:41 Kobe_bk 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 设置方法: 打开电脑的设置/搜索 默认应用设置/ 选择 web浏览器为谷歌浏览器即可 阅读全文
posted @ 2020-10-17 14:30 Kobe_bk 阅读(286) 评论(0) 推荐(0) 编辑
摘要: this.$nextTick()将回调延迟到下次 DOM 更新循环之后执行 使用场景: 阅读全文
posted @ 2020-10-13 16:42 Kobe_bk 阅读(94) 评论(0) 推荐(0) 编辑
摘要: // list loadData: parameter => { return Post(api.findPage, { funcName: 'ZHRFM_PA_DD_DIS_LIST', //调动列表 index: parameter.pageNo, size: parameter.pageSiz 阅读全文
posted @ 2020-10-11 09:38 Kobe_bk 阅读(108) 评论(0) 推荐(0) 编辑
摘要: created() { let q = this.$route.query if (this.$user.ORG_CODE == 830) { this.is830 = true } //查询操作 if (q.act == 'query') { this.isDisabled = true this 阅读全文
posted @ 2020-10-10 14:46 Kobe_bk 阅读(125) 评论(0) 推荐(0) 编辑
摘要: //删除 delClick() { const _that = this let keys = this.selectedRowKeys let tabs = [] keys.map(key => { tabs.push({ GUID: key }) }) this.$confirm({ title 阅读全文
posted @ 2020-10-10 10:57 Kobe_bk 阅读(72) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 19 下一页