03 2018 档案

摘要: 阅读全文
posted @ 2018-03-30 22:32 ThisCall 阅读(111) 评论(0) 推荐(0) 编辑
摘要:this.addMinutes(new Date(Date.parse("2018-03-29 11:55")),5) //计算后n分钟的时间 addMinutes:function (date, minutes){ minutes=parseInt(minutes); var interTimes 阅读全文
posted @ 2018-03-29 13:09 ThisCall 阅读(248) 评论(0) 推荐(0) 编辑
摘要:var curTime = new Date(); //2把字符串格式转换为日期类 var startTime = new Date(Date.parse("2018-3-28 16:44")); var endTime = new Date(Date.parse("2018-3-28 16:45" 阅读全文
posted @ 2018-03-28 16:51 ThisCall 阅读(1298) 评论(0) 推荐(0) 编辑
摘要:接口对接 上传项目准备 阅读全文
posted @ 2018-03-28 09:31 ThisCall 阅读(121) 评论(0) 推荐(0) 编辑
摘要:data: { weekdays:['','','','','','',''] }, onLoad: function (options) { let that = this; let now = new Date(); let today = now.getFullYear() + '-' + ( 阅读全文
posted @ 2018-03-27 16:59 ThisCall 阅读(590) 评论(0) 推荐(0) 编辑
摘要:var now = new Date(); let today = now.getFullYear() + '-' + (now.getMonth() + 1) + '-' + now.getDate();//2018-3-27 var nowDayOfWeek = now.getDay(); co 阅读全文
posted @ 2018-03-27 16:12 ThisCall 阅读(437) 评论(0) 推荐(0) 编辑
摘要:npm install vue-router --save //安装 传参 阅读全文
posted @ 2018-03-26 23:11 ThisCall 阅读(461) 评论(0) 推荐(0) 编辑
摘要:import Vue from 'vue'import App from './App'import VRouter from 'vue-router'import Apple from './components/apple'import World from './components/worl 阅读全文
posted @ 2018-03-26 23:11 ThisCall 阅读(102) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/violetjack0808/article/details/72620859 https://blog.csdn.net/hsl0530hsl/article/details/78594973 Vue.js学习系列五 —— 从VUE-CLI来聊聊ESLi 阅读全文
posted @ 2018-03-23 22:09 ThisCall 阅读(1744) 评论(0) 推荐(0) 编辑
摘要:打开左侧菜单栏 阅读全文
posted @ 2018-03-23 21:08 ThisCall 阅读(229) 评论(0) 推荐(0) 编辑
摘要:前提概要: sublime的下载地址:http://www.sublimetext.com/ notepad++下载地址:https://notepad-plus-plus.org/ .vue的文件在sublime编辑器下默认是不被识别的,要想识别,我们就必须安装必要的插件。并且,要想高亮显示就必须 阅读全文
posted @ 2018-03-23 09:00 ThisCall 阅读(282) 评论(0) 推荐(0) 编辑
摘要:先下git(?)https://download.tortoisegit.org/tgit/2.6.0.0/ 小乌龟下载 http://gitlab.didu86.com:9090/wxcode/fankang-medical-patient 新建库 阅读全文
posted @ 2018-03-22 14:54 ThisCall 阅读(618) 评论(0) 推荐(0) 编辑
摘要:git是什么? git是当前最受欢迎,使用最多的分布式版本控制系统。 下载地址: http://rogerdudler.github.io/git-guide/index.zh.html 这个地址包含了对git的一些基本介绍,图文并茂,非常奈斯! windows安装2.16.2版本 1.首先下载gi 阅读全文
posted @ 2018-03-21 09:53 ThisCall 阅读(167) 评论(0) 推荐(0) 编辑
摘要:var app=new Vue({ el: '#app', data:{ link:'这是一个连接' },}) 阅读全文
posted @ 2018-03-20 22:49 ThisCall 阅读(155) 评论(0) 推荐(0) 编辑
摘要:有闪现<div id="app"> {{date}}</div> 无闪现<div id="app" v-text:date="date"></div> var app=new Vue({ el: '#app', data:{ date:new Date() }, mounted:function() 阅读全文
posted @ 2018-03-20 22:32 ThisCall 阅读(164) 评论(0) 推荐(0) 编辑
摘要:<comA></comA>此时可用在模板里//a为vue文件,里面定义了模板import comA from './components/a' export default ({ components: {comA}, }) 阅读全文
posted @ 2018-03-20 22:12 ThisCall 阅读(374) 评论(0) 推荐(0) 编辑
摘要:<view class='back'></view> <view class="container"> <!-- 睡眠记录 --> <view class='sp-list'> <view class='sp-item acl255 flexba f30'> <view class='item-lf 阅读全文
posted @ 2018-03-19 16:31 ThisCall 阅读(4739) 评论(0) 推荐(0) 编辑
摘要:ffn: function () { let nnn = this.data.nnn nnn += 1; this.setData({ nnn: nnn }); if (nnn > 10) { wx.vibrateLong() } }, var timer = setInterval(this.ff 阅读全文
posted @ 2018-03-19 08:34 ThisCall 阅读(496) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-03-14 23:29 ThisCall 阅读(467) 评论(0) 推荐(0) 编辑
摘要:cd 指定好安装目录 vue init webpack 项目名称 执行 vue vue list 查看可应用模板 vue init webpack +名字 项目已启动 阅读全文
posted @ 2018-03-14 22:48 ThisCall 阅读(102) 评论(0) 推荐(0) 编辑
摘要:判断变量是不是数组 Array.isArray(object) 深度拷贝 ES6 var arr1 = [1, 2, 3]; var arr2 = Array.from(arr1); var ary1=[1,2]; es5: 方法一: var ary1= [1, 2, 3]; var ary2 = 阅读全文
posted @ 2018-03-14 15:09 ThisCall 阅读(148) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/wisewrong/p/6255817.html(copy:web) https://zhuanlan.zhihu.com/p/26183652(也很好) vue-cli 是一个官方发布 vue.js 项目脚手架,使用 vue-cli 可以快速创建 vu 阅读全文
posted @ 2018-03-14 09:32 ThisCall 阅读(350) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/ainyi/p/8537027.html(new copy) https://blog.csdn.net/qq_36709020/article/details/80045500(new copy)( (1)交换变量的值 ) [x, y] = [y, 阅读全文
posted @ 2018-03-11 09:18 ThisCall 阅读(216) 评论(0) 推荐(0) 编辑
摘要:复制文本 <text selectable='true'>我的积分:</text> 阅读全文
posted @ 2018-03-09 14:57 ThisCall 阅读(354) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/287e0bb867ae 1,let表示变量、const表示常量。let和const都是块级作用域。一个在函数内部,一个在代码块内部; const name = 'lux' name = 'joe' //再次赋值此时会报错 ,2, 不需要funct 阅读全文
posted @ 2018-03-08 20:39 ThisCall 阅读(151) 评论(0) 推荐(0) 编辑
摘要:random() 方法可返回介于 0 ~ 1 之间的一个随机数。 阅读全文
posted @ 2018-03-08 15:23 ThisCall 阅读(293) 评论(0) 推荐(0) 编辑
摘要:>>是无符号移位运算符 举例: 100>>>2 相当于 先将100转换成二进制01100100,向右移两位后得00011001,再转换回十进制,得25 console.log('true'==1) //输出false console.log(true==1) //输出true console.log 阅读全文
posted @ 2018-03-08 15:20 ThisCall 阅读(147) 评论(0) 推荐(0) 编辑
摘要:下载安装 安装完node,环境变量配置自动会配置,查看一下就行了 #下载安装好node > https://nodejs.org/en/ # 打开cmd 调整好执行路径 。 1.js是JS文件名,cd调招路径,‘node’+空格 +JS文件名(带上扩展名) 然后回车执行指定的JS文件; packag 阅读全文
posted @ 2018-03-07 08:54 ThisCall 阅读(117) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="exss"> <input v-focus> </div> </body><script 阅读全文
posted @ 2018-03-04 16:42 ThisCall 阅读(120) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> <style type="text/css"> /* 可以设置不同的进入和离开动画 */ /* 设置持续时间和动画函数 */ .slide 阅读全文
posted @ 2018-03-04 15:18 ThisCall 阅读(3685) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/dihuiqin/article/details/52127458 初学vue.js——学习笔记一 阅读全文
posted @ 2018-03-04 13:40 ThisCall 阅读(101) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <input v-model="parentsg"> <br> <ch 阅读全文
posted @ 2018-03-04 13:04 ThisCall 阅读(232) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <input v-model="parentsg"> <br> <ch 阅读全文
posted @ 2018-03-04 11:24 ThisCall 阅读(167) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <input v-model="parentMsg"> <br> <c 阅读全文
posted @ 2018-03-04 11:05 ThisCall 阅读(205) 评论(0) 推荐(0) 编辑
摘要:<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>Title of page</title> </head> <body> <div id="example"> <my-component></my-component> </div 阅读全文
posted @ 2018-03-04 10:49 ThisCall 阅读(128) 评论(0) 推荐(0) 编辑
摘要:Vue.component('todo-item', { template: '\ \ {{ title }}\ X\ \ ', props: ['title']})new Vue({ el: '#todo-list-example', data: { newTodoText: '', todos: [ {... 阅读全文
posted @ 2018-03-03 13:58 ThisCall 阅读(425) 评论(0) 推荐(0) 编辑