摘要: 第一种方法:(这种方法只精确到秒) var timestamp = Date.parse(new Date()); 结果:1545816450000 第二种方法: var timestamp=(new Date()).valueOf(); 结果:1545816456780 第三种方法: var ti 阅读全文
posted @ 2020-07-01 16:04 小那 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 报错: 解决:选择上不合法验域名 阅读全文
posted @ 2020-07-01 14:44 小那 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 需求:从A页面跳转到B,点击A页面得编辑时携带每条得数据到B页面进行展示。 》 A页面 wxml <view class="content"> <view class="listli" wx:for="{{ addressList }}" wx:key="index" > <view class=" 阅读全文
posted @ 2020-07-01 10:20 小那 阅读(1009) 评论(0) 推荐(0) 编辑
摘要: wxml <!-- 生成海报二维码并保存到相册 --> <view class='cont' id='canvas-container'> <canvas canvas-id="myCanvas" style="width:100%;height:100%;" bindlongtap='saveSh 阅读全文
posted @ 2020-06-29 15:38 小那 阅读(288) 评论(0) 推荐(0) 编辑
摘要: wxml <image src='../../images/agoproduct/totop.png' class='goTop' hidden='{{!floorstatus}}' bindtap="goTop"></image> wxss /* 返回顶部 */ .goTop{ height: 7 阅读全文
posted @ 2020-06-29 10:29 小那 阅读(190) 评论(0) 推荐(0) 编辑
摘要: git pull origin master 将master分支上的内容拉到本地上 git add . 添加文件 git commit -m 'add page' 提交添加的文件并备注 git push -u origin master 将本地仓库文件推送到远程仓库 常用命令: git init 新 阅读全文
posted @ 2020-06-28 13:52 小那 阅读(113) 评论(0) 推荐(0) 编辑
摘要: overflow: hidden; //超出的内容进行隐藏 white-space: nowrap; //设置内容不换行 text-overflow: ellipsis; //设置超出内容为省略号 阅读全文
posted @ 2020-06-24 14:56 小那 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 1、安装vue-editor-wrap npm i vue-ueditor-wrap 2、下载UEditor文件夹 (https://github.com/HaoChuan9421/vue-ueditor-wrap) (1)、压缩包在vue-ueditor-wrap >> assets >> dow 阅读全文
posted @ 2020-06-23 14:37 小那 阅读(3178) 评论(0) 推荐(0) 编辑
摘要: 1、rpx: 微信小程序中的尺寸单位rpx(responsive pixel) 可以根据屏幕宽度进行自适应。规定屏幕宽度为750rpx. 注:微信官方建议视觉稿以iphone6为标准。 2、个人示例测试: 假设我们需要一个宽为200px,高为200px这样的A元素模块;我们分别在iphone5和ip 阅读全文
posted @ 2020-06-22 17:54 小那 阅读(4756) 评论(0) 推荐(0) 编辑
摘要: wxml <input class="name" type="text" placeholder="姓名" placeholder-class="phClass"/> wxss .phClass{ font-size: 16rpx; color:red; } 阅读全文
posted @ 2020-06-22 17:45 小那 阅读(2068) 评论(0) 推荐(0) 编辑