2019年11月12日

摘要: function randomData() { return Math.round(Math.random()*500); } var mydata = [ { name: '北京', value: '100' , itemStyle: { "areaColor": 'red', "emphasis 阅读全文
posted @ 2019-11-12 15:11 heshujun223 阅读(525) 评论(0) 推荐(0) 编辑
 

2019年10月25日

摘要: 一:写个指令可以调转路由 1.pageLink.js: export default { install (Vue) { // 一个指令定义对象可以提供如下几个钩子函数(bind,inserted,update,componentUpdated,unbind) Vue.directive('link 阅读全文
posted @ 2019-10-25 10:57 heshujun223 阅读(194) 评论(0) 推荐(0) 编辑
 

2019年10月21日

摘要: 效果如下: <!DOCTYPE html> <html> <head> <title></title> <style type="text/css"> body{position:relative;} *{padding:0;margin:0;} .dialog{width:400px;height 阅读全文
posted @ 2019-10-21 17:34 heshujun223 阅读(244) 评论(0) 推荐(0) 编辑
 

2019年10月15日

摘要: Demo 左侧 右侧 阅读全文
posted @ 2019-10-15 18:02 heshujun223 阅读(1183) 评论(0) 推荐(0) 编辑
 

2019年9月20日

摘要: 描述: 公司需要将中国划分成八个区域,华北,东北,华东,华中,华南,西南,西北,境外,鼠标指上区域显示每个区域库存与供货,先上效果图: 阅读全文
posted @ 2019-09-20 15:46 heshujun223 阅读(864) 评论(0) 推荐(0) 编辑
 

2019年9月5日

摘要: 先贴上效果图: 显示的是当前页的前四个以及后四个,第一个和最后一个 pagination.vue: 选择以下三种调用方式中的任意一种: 阅读全文
posted @ 2019-09-05 18:51 heshujun223 阅读(227) 评论(2) 推荐(0) 编辑
 
摘要: 效果如下: 阅读全文
posted @ 2019-09-05 14:29 heshujun223 阅读(323) 评论(0) 推荐(0) 编辑
 

2019年7月29日

摘要: 1.判断数据类型时,我们最经常用typeof判断某一数据类型,缺点不能很好判断null,数组,正则,函数,因为这几个都是返回object,而Object.prototype.toString().call(value)很好解决了这个问题 2.函数绑定 例子2.1: 上面例子2.1中,this指向DO 阅读全文
posted @ 2019-07-29 15:39 heshujun223 阅读(1078) 评论(0) 推荐(0) 编辑
 

2019年7月22日

摘要: 效果如下: 步骤: 1.css样式如下 2.html 3.js 阅读全文
posted @ 2019-07-22 11:22 heshujun223 阅读(3432) 评论(0) 推荐(1) 编辑
 

2019年3月20日

摘要: 子向父方式1:通过props,如例子中子组件test1.vue向父组件App.vue传值 App.vue代码 test1.vue代码 效果图 子向父方式2:通过$parent App.vue代码: test1.vue代码: 效果图: 子向父方式3:通过emit App.vue代码 test1.vue 阅读全文
posted @ 2019-03-20 23:25 heshujun223 阅读(728) 评论(0) 推荐(0) 编辑