摘要: betterScroll.vue 官网: https://better-scroll.github.io/docs/zh-CN/guide/#%E8%B5%B7%E6%AD%A5 <template> <div ref="wrapper" class="list-wrapper"> <div cla 阅读全文
posted @ 2020-08-26 17:47 日升月恒 阅读(332) 评论(0) 推荐(0)
摘要: catchtap :点击不会冒泡bindtap : 点击冒泡data-ndnumType : 传递参数e.currentTarget.dataset : 获取参数 <view class="tab_item" bindtap='toMyNode' data-current="1"> <view cl 阅读全文
posted @ 2020-08-26 17:17 日升月恒 阅读(177) 评论(0) 推荐(0)
摘要: calendar.wxml <view class="flex box box-tb box-align-center"> <view class="calendar pink-color box box-tb"> <view class="top-handle fs28 box box-lr bo 阅读全文
posted @ 2020-08-26 09:29 日升月恒 阅读(224) 评论(0) 推荐(0)
摘要: 需要安装 vant-weapp<view> <view class="inp-box"> <van-search value="{{ inpVal }}" placeholder="请输入名称" use-action-slot bind:change="searchInp"> <view style 阅读全文
posted @ 2020-08-21 14:04 日升月恒 阅读(1166) 评论(0) 推荐(0)
摘要: <template> <div class="box-circle-map"> <baidu-map ref="bCircleMap" class="map" :center="mapCenter" :zoom="15" :scroll-wheel-zoom="true" :inertial-dra 阅读全文
posted @ 2020-06-01 10:30 日升月恒 阅读(2865) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2020-05-25 10:13 日升月恒 阅读(2410) 评论(0) 推荐(0)
摘要: <view> <button catchtouchmove="buttonMove" bindtouchstart="buttonStart" bindtouchend="buttonEnd" catchtap="evaluateEvt" style="top:{{buttonTop}}px;lef 阅读全文
posted @ 2020-05-21 12:26 日升月恒 阅读(1869) 评论(0) 推荐(1)
摘要: 封装在公用的js文件里 // resList.js const app = getApp() module.exports = Behavior({ behaviors: [], properties: {}, data: { list: [], //列表数据 recordCount: 0, //列 阅读全文
posted @ 2020-05-21 12:15 日升月恒 阅读(977) 评论(0) 推荐(0)
摘要: config.js里引入封装接口 /** * 小程序配置文件 */ // 此处主机域名是腾讯云解决方案分配的域名 // var HOST_TEST1 = "https://icpmotes/mobile"//测试环境: var HOST_TEST1 = "https://wxwx.com:443/a 阅读全文
posted @ 2020-05-19 17:13 日升月恒 阅读(591) 评论(0) 推荐(0)
摘要: /* 改变数组/对象里的某一个值 */ data:{ questionList: [{ id: 1, questionName: '1、课程内容丰富、详实', questionValue: 0 } ], obj: { text: 123 } }, qValueEvt(e){ //修改对象中的属性值 阅读全文
posted @ 2020-05-19 14:22 日升月恒 阅读(296) 评论(0) 推荐(0)