11 2017 档案

摘要:本地 // wx.login({ // success: res => { // var code = res.code; //返回code // // console.log(code) // // 小程序appid // // wxd751fc845c90fbd8 // // 3df95e167 阅读全文
posted @ 2017-11-30 08:45 ThisCall 阅读(436) 评论(0) 推荐(0) 编辑
摘要:<!-- 点击立即抢拼弹出框 --> <view class='add-rob' bindtap="setModalStatus" data-status="0" wx:if="{{showModalStatus}}"></view> <view class='rob-box' wx:if="{{s 阅读全文
posted @ 2017-11-29 16:05 ThisCall 阅读(1183) 评论(0) 推荐(0) 编辑
摘要:JS // pages/classify/swiper.js Page({ /** * 页面的初始数据 */ data: { current:0 }, titleBtn:function(e){ var acIndex = e.currentTarget.dataset.current; this. 阅读全文
posted @ 2017-11-29 10:36 ThisCall 阅读(1262) 评论(0) 推荐(0) 编辑
摘要://滚动触底事件 <scroll-view scroll-y lower-threshold="0" bindscrolltolower="scrollBottom" style="height: 200rpx;"> </scroll-view> 阅读全文
posted @ 2017-11-29 09:59 ThisCall 阅读(615) 评论(0) 推荐(0) 编辑
摘要:JS // pages/search/search.js var app = getApp(); Page({ /** * 页面的初始数据 */ data: { inputValue:'', // 焦点默认数据 keyListId: 1, keyselecte: true, // keylist:{ 阅读全文
posted @ 2017-11-28 11:44 ThisCall 阅读(898) 评论(0) 推荐(0) 编辑
摘要:JS // pages/shop/shop.js Page({ /** * 页面的初始数据 */ data: { //判断购物车是否为空时的页面 hasList: false, carts:[], }, // 实现bindSelectAll事件,改变全选状态 selectedAllStatus: t 阅读全文
posted @ 2017-11-28 11:40 ThisCall 阅读(597) 评论(0) 推荐(0) 编辑
摘要:js文件 'use strict'; let choose_year = null, choose_month = null; const conf = { data: { hasEmptyGrid: false, showPicker: false }, onLoad() { const date 阅读全文
posted @ 2017-11-28 11:20 ThisCall 阅读(6519) 评论(0) 推荐(0) 编辑
摘要:position: absolute; display:flex; justify-content:center;align-items:center; justify-content:center;align-items:center; 阅读全文
posted @ 2017-11-24 15:50 ThisCall 阅读(586) 评论(0) 推荐(0) 编辑
摘要:<script> function GetRandomNum(Min,Max){ var Range = Max - Min; var Rand = Math.random(); return(Min + Math.round(Rand * Range)); } var num = GetRando 阅读全文
posted @ 2017-11-23 18:04 ThisCall 阅读(1069) 评论(0) 推荐(0) 编辑
摘要:// 订单生成返回数据,弹出是否支付模态 wx.showModal({ title: '微信支付', content: '确定支付吗?', success: function (res) { if (res.confirm) { self.pay(bianhao); } else if (res.c 阅读全文
posted @ 2017-11-23 17:45 ThisCall 阅读(241) 评论(0) 推荐(0) 编辑
摘要:验证数字的正则表达式集 验证数字:^[0-9]*$ 验证n位的数字:^\d{n}$ 验证至少n位数字:^\d{n,}$ 验证m-n位的数字:^\d{m,n}$ 验证零和非零开头的数字:^(0|[1-9][0-9]*)$ 验证有两位小数的正实数:^[0-9]+(.[0-9]{2})?$ 验证有1-3位 阅读全文
posted @ 2017-11-22 21:03 ThisCall 阅读(134) 评论(0) 推荐(0) 编辑
摘要:var myDate = new Date(); var myN = myDate.getFullYear(); var myY = myDate.getMonth(); var myR = myDate.getDate(); var myh = myDate.getHours(); var mym 阅读全文
posted @ 2017-11-22 14:45 ThisCall 阅读(504) 评论(0) 推荐(0) 编辑
摘要:string str="123abc456";int i=3;1 取字符串的前i个字符 str=str.Substring(0,i); // or str=str.Remove(i,str.Length-i); 2 去掉字符串的前i个字符: str=str.Remove(0,i); // or st 阅读全文
posted @ 2017-11-22 14:16 ThisCall 阅读(483) 评论(0) 推荐(0) 编辑
摘要:var cheLin = "字*符*串" // console.log(cheLin) var array = cheLin.split("*"); array=[ "字",,,,] var cheLin = "字*符*串" // console.log(cheLin) var array = ch 阅读全文
posted @ 2017-11-22 10:20 ThisCall 阅读(5845) 评论(0) 推荐(0) 编辑
摘要:var achearr=[1,2,3,4]; var bchearr=[]; //方法1: for (var i = 0; i <=achearr.length;i++) { bchearr.push(achearr.pop()); } bchearr.push(achearr[0]); conso 阅读全文
posted @ 2017-11-22 10:16 ThisCall 阅读(12752) 评论(0) 推荐(0) 编辑
摘要:wxml 页面 <import src="/pages/lianxi/lianxi.wxml" /> //引入文件 <view style='position:fixed;left:0;top:0;'> <template is="showToastMyTan"> <text>haha</text> 阅读全文
posted @ 2017-11-21 11:17 ThisCall 阅读(603) 评论(0) 推荐(0) 编辑
摘要://JS data: { navNum:0, navList: [ { id: 1, name: '已预约' }, { id: 2, name: '已消费' }, { id: 3, name: '已取消' }, ], shopList0: [ { id: 1, image: '/imgs/news/ 阅读全文
posted @ 2017-11-20 09:38 ThisCall 阅读(1489) 评论(0) 推荐(0) 编辑
摘要://wxml <view class='nav-right' bindtap='tobackShop'> <button open-type="share" class='nav-right' style='background:#fff'> <view> <image src='../../img 阅读全文
posted @ 2017-11-16 09:47 ThisCall 阅读(672) 评论(0) 推荐(0) 编辑
摘要:<view> <view class='btn-img'> <image class='image-full' src='../../imgs/index/tab6.png'></image> <contact-button class='section-tel' size="27" session 阅读全文
posted @ 2017-11-16 09:43 ThisCall 阅读(289) 评论(0) 推荐(0) 编辑
摘要:<form action="${pageContext.servletContext.contextPath}/XXX/###" method="post" id="messageForm"> 姓名:<input name = "name" type="text" /> <button type=" 阅读全文
posted @ 2017-11-12 16:39 ThisCall 阅读(240) 评论(0) 推荐(0) 编辑
摘要:Page( { data: { // text:"这是一个页面" storageContent: '', storageSyncContent: '' }, onLoad: function (options) { // 页面初始化 options为页面跳转所带来的参数 }, /** * 异步存储 阅读全文
posted @ 2017-11-08 11:40 ThisCall 阅读(1596) 评论(0) 推荐(0) 编辑
摘要:wx.login({ success: res => { var code = res.code; //返回code // 小程序appid var appId = 'wxd751fc845c90fbd8'; // 小程序密钥 var secret = '6af97b8d384a4c6d7028b7 阅读全文
posted @ 2017-11-07 10:16 ThisCall 阅读(301) 评论(0) 推荐(0) 编辑
摘要:var that=this; wx.request({ url: 'http://www.didu86.com/Clothes-manager-web/queryiShopping', data: { appkey: '5e5ju20na345sdf4nw361qb9789asdf', key: " 阅读全文
posted @ 2017-11-06 14:48 ThisCall 阅读(180) 评论(0) 推荐(0) 编辑
摘要:"enablePullDownRefresh": "true" /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { 阅读全文
posted @ 2017-11-06 10:01 ThisCall 阅读(550) 评论(0) 推荐(0) 编辑
摘要:// 将对象的键添加到数组 var arr = Object.keys(site); //英文 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/keys 中文 https: 阅读全文
posted @ 2017-11-04 18:04 ThisCall 阅读(1034) 评论(0) 推荐(0) 编辑
摘要:// 商品详情页跳转函数 detailInto: function (e) { // console.log() var change = e.currentTarget.dataset.id; wx.navigateTo({ url: '../detail/detail?id=' + change 阅读全文
posted @ 2017-11-04 17:13 ThisCall 阅读(2150) 评论(0) 推荐(0) 编辑
摘要:// 购物车删除 deleteList(e) { const index = e.currentTarget.dataset.index; let carts = this.data.carts; carts.splice(index, 1); // 删除购物车列表里这个商品 this.setDat 阅读全文
posted @ 2017-11-04 15:28 ThisCall 阅读(5347) 评论(0) 推荐(0) 编辑
摘要:<view class="container"> <!-- menue --> <view class="aside flex"> <block wx:key="navList" wx:for="{{navList}}"> <view class="type-nav flexca" bindtap= 阅读全文
posted @ 2017-11-04 11:31 ThisCall 阅读(1019) 评论(0) 推荐(0) 编辑
摘要:// "2017/10/1 00:00" kaiShi: function (a) { var that = this; function nowTime() { var dateTime = new Date(); var timestamp = Date.parse(new Date()); v 阅读全文
posted @ 2017-11-04 10:26 ThisCall 阅读(2109) 评论(0) 推荐(1) 编辑
摘要:js中获取时间new date()的用法 获取时间: 1 var myDate = new Date();//获取系统当前时间 获取特定格式的时间: 1 myDate.getYear(); //获取当前年份(2位) 2 myDate.getFullYear(); //获取完整的年份(4位,1970- 阅读全文
posted @ 2017-11-04 10:24 ThisCall 阅读(32143) 评论(0) 推荐(0) 编辑
摘要:flex-align:默认是设置垂直方向的对齐方式,值: start、end、center、stretch、baseline。flex-pack:设置子元素之间如何分配多余空间,值:start、end、center、justify。flex-direction:设置子元素的排列方式, row、row 阅读全文
posted @ 2017-11-04 10:22 ThisCall 阅读(551) 评论(0) 推荐(0) 编辑
摘要:传数据 wx.navigateTo({ url: '/pages/newsdetail/newsdetail?tea=' + JSON.stringify(this.data.newlist[id-1]) }) 接数据 onLoad: function (options) { // 传过来的数据在此 阅读全文
posted @ 2017-11-03 11:25 ThisCall 阅读(379) 评论(0) 推荐(0) 编辑