当前位置:首页
> 第6页
vue 滑入滑出效果动画
{{errorMessage}} .v-enter-active{ animation: slidein .3s linear; } .v-leave-active{ animation: slidein .3s linear reverse; } @ke...
vue3的使用
从0开始搭建项目 1,npm init @vitejs/app yarn create @vitejs/app 2,npm install 安装依赖 3,npm run dev 启动项目...
vue 用当前对象获取坐标距离
selectMeeting(day, jsEvent) { //jsEvent 这个传进来就是$event this.selectDay = day; this.showMore=false; this.meetingShowMore = true; this.morePos = this.comp...
小程序授权
export function isAuthLocation() { return new Promise((resolve, reject) => { wx.getSetting({ success(res) { if (!res.authSetti...
主动打开手机定位功能
```export function getLocationListener(){ return new Promise((resolve, reject) => { var that = this wx.openSetting({ success(res){...
小程序分享功能
小程序分享功能 /** * 用户点击右上角分享 */ onShareAppMessage: function () { return { title: this.data.goodsInfo.goods_name, path: `/pages/g...
小程序接地图
longitude latitude是中心经纬度 markers 是所有打点的经纬度,微信地图也是包了高德地图 <map wx:if="{{mapShow}}" class="map" id="map" scale="{{scale}}" bindregionchange="moveM...
小程序 a到b到c ,从c直接回到a
1A页面跳转到B wx.navigateTo({ url: `/pages/signUp/A` }) 2,B页面到C wx.navigateTo({ url: `/pages/signUp/C` }) 从c加到A页面 在c页面写 onUnload: function () {...
小程序验证插件的使用 WxValidate
整个文件可以到git下载 import WxValidate from ‘../../utils/WxValidate’;地址自己根据目录正确引入 我的需求是所有数据都是动态后台返回的以下是使用```onload:function(){ this.initValidate()//验证规则函...