- 博客(9)
- 收藏
- 关注
原创 vue3警告:Failed to resolve component: SwitchDateComp If this is a native custom.....解决办法
Vue3提示警告Failed to resolve component:XXX If this is a native custom element… 的解决方法
2023-02-01 11:09:48 519
原创 星级评价(步长,半星 ,全星显示)
星级评价(步长,半星 ,全星显示)Html <div style="width:105px;margin:0 auto"> <div style="display:flex;"> <div class="star" sp:each="$value.yellow_star"><div class="icon icon_yellow">&
2021-05-06 16:00:06 392
原创 小程序 web-view进入空白
web-view进入空白小程序中的web-view点击进入空白,在域名配置完成的情况下,真机调试也可以的情况下,本地调试进入不了,可以试试以下方法:点击“终止”,连续点击好几次 就好了奇怪的知识又增长 了,第一次遇到这种,找了好多办法都不行,以此记录一波~~~...
2021-03-22 15:05:54 865 1
原创 小程序Tabs切换
小程序Tabs切换HTML<view class="top > <view class="li" bindtap="changeIndex" data-index="{{index}}" wx:for="{{topNav}}" style="color:{{activetop == index?'#000':''}}" wx:key="*this">{{item}} <view class="hr" wx:if="{{activetop == index
2020-10-13 10:57:00 386
原创 小程序,时间戳的获取,然后可根据拿到的时间戳进行判断
为了直观的描述,这里把开始时间和结束时间写死了,如果接口有对应的值,可以直接把start_time和end_time注释掉注意:因为ios端不支持 “2020-3-19“ 这种“ - ”格式的,所以利用***.replace(/-/g, ‘/’)*** 将 ‘-’ 转换成 ’ / ’let date1 = new Date().getTime(); //获取当前日期的...
2020-03-19 10:40:46 660
原创 小程序 获取接口里的某一个值,点击时获取当前对象,然后根据这个值来判断
比如获取接口中is_baoming这个字段,(点击事件)首先获取到点击时的这个下标,然后进行判断注意:这个里面的itemOne是你获取接口时的数组,[index]是你获取到的下标 baoming(e) { console.log(e) let index = e.currentTarget.dataset.index if (this.data.itemOne[i...
2020-03-16 19:29:22 640
原创 小程序 点击提交按钮时出现对应的提示框(手机号正则的判断)
JS中先集中写个弹框,后面直接引用就行啦 showToastFun(text, type) { wx.showToast({ title: text, icon: type, duration: 2000 }) },记得在填入手机号的时候加个正则的判断哦commit() { if (this.data.tel == '') {...
2020-03-13 18:06:25 505
原创 VUE 点击对应项变颜色
CSS .active{ color: red; }HTML <ul> <li v-for="(m,index) in movie" @click="h(index)" :class="count==index ? 'active' :''">{{m}}</li> </ul>...
2020-03-12 15:19:41 622
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人