微信小程序
歌齽雪默萧
这个作者很懒,什么都没留下…
展开
-
config
<?php// +----------------------------------------------------------------------// | OneThink [ WE CAN DO IT JUST THINK IT ]// +----------------------------------------------------------------------// | Copyright (c) 2013 http://www.onethink.cn All .原创 2021-12-22 14:24:47 · 7159 阅读 · 0 评论 -
扇形统计图————微信小程序
const agePie = function (data) { const age = data; const query = wx.createSelectorQuery(""); query.select("#agePie").fields({ node: true, size: true }); query.exec(function (res) { const canvas = res[0].node; .原创 2021-12-22 13:46:22 · 783 阅读 · 0 评论 -
details
1111原创 2021-12-17 09:34:53 · 307 阅读 · 0 评论 -
huodong
wxxvx原创 2021-12-17 09:22:11 · 120 阅读 · 0 评论 -
微信小程序map
1.map组件的高度如果想要铺满屏幕,要是使用height:100vh样式2.获取位置要在app.json中标明权限3.先使用wx.getLocation获取自己的位置,然后再回调中使用setData方法,赋予数据给前台页面展示标注点index.js//index.js//获取应用实例constapp=getApp()Page({data:{},onLoad:function(){varself=this;thi...原创 2021-11-16 09:43:49 · 503 阅读 · 0 评论 -
微信小程序————搜索框获取本地缓存搜索记录
微信小程序获取本地缓存的搜索记录html<!--index.wxml-->//这里是搜索框<view class="box_search"> <image src="/images/ic_search.png" class="ic_search"></image> <input type="text" value="{{keywords}}" bindinput="get_keyword" placeholder="搜索..原创 2021-10-27 12:01:38 · 749 阅读 · 0 评论 -
微信小程序,倒计时(本日倒计时,不给结束时间的)
首先是外部(和getApp写在一起)var e = getApp();var timer;其次是page里面的data data: { //设置初始的类型和数值 time1: '', time2: '', time3: '', myTimer:null, },其次是onlond onLoad: function () { //里面的timer主要是和用setIntercal原创 2021-08-31 14:59:10 · 194 阅读 · 1 评论