摘要:
<template> <view class="page-demo"> <view class="demo" v-for="(item,index) in listArr" :key="index" :class="{'aa': item.type==1001, 'bb': item.type==1 阅读全文
摘要:
效果图 <template> <view class="page-demo"> <view class="srcool-box"> <scroll-view scroll-y="true" class="cont-scrool"> <view class="demo-height" v-for="( 阅读全文
摘要:
<template> <view class="page-demo"> <scroll-view class="scrool-more" scroll-x="true" scroll-with-animation="true"> <text class="label-name" v-for="(it 阅读全文
摘要:
onLoad(option){ console.log("onLoad",option); //主要用于上一个页面传递过来的参数 }, onShow(){ 切入前台触发,用我的话来讲就是这个页面出现一次, 他就被调用一次包括你【前进】和【后退】到这个页面。 }, onReady: (){ 首次显示页 阅读全文
摘要:
Vant 中的样式默认使用px作为单位,如果需要使用rem单位,推荐使用以下两个工具: postcss-pxtorem 是一款 postcss 插件,用于将单位转化为 rem; amfe-flexible 用于设置 rem 基准值 1==> 去下载amfe-flexible 和postcss-pxt 阅读全文
摘要:
vue日历自定义平铺组件 <sy-icon @click="preMon" class="copy-icon" iconClass="iconjiantou1"></sy-icon> 表示的是上一个月,是我自定的字体图标 <sy-icon @click="nextMon" class="copy-i 阅读全文
摘要:
小程序事件传递参数 在小程序中,给元素绑定事件不能直接传递参数,如果写成 bindtap='showDetail(item)' //不能写小括号,会报黄色警告 正解:通过data-进行属性值的绑定 给元素绑定 data-id='{{item.id}}' listArr:[ { "id":1, "na 阅读全文
摘要:
<van-field v-model="form.messageCont" rows="3" label="口号" autosize type="textarea" placeholder="请输入口号内容(最多输入64个字)" maxlength="64" show-word-limit @key 阅读全文
摘要:
里面加上: 我没有写也是可以的 <meta name="format-detection" content="telephone=yes"/> 该标签用于指定是否将网页内容中的手机号码显示为拨号的超链接。 需要拨打的电话: <a href="tel:168-1686-16888">168-1686- 阅读全文
摘要:
1 Dart中类的继承 1.子类使用extends关键字来继承父类 2.子类会继承父类里面可见的属性和方法,但是不会继承构造函数 3. 子类能够复写父类的方法 getter和setter方法 2Dart Web类继承Person这个类 class Person { String name = '张三 阅读全文