微信小程序外包项目中,经常会遇到要求的要求是页面中要可以点击大图预览。
html
<view class="attachments">
<image @click="previewImg([imgSrc],0)" cla...
yekong
4年前 (2020-12-07)
喜欢
css 代码
.blur {
-webkit-filter: blur(10px); /* Chrome, Opera */
-moz-filter: blur(10px);
-ms-filter: blur(10px);
...
yekong
4年前 (2020-12-06)
喜欢
<input ref="huifu" v-model="context" @blur="focusState2" :focus="focusState" type="text&quo...
yekong
4年前 (2020-12-05)
喜欢
js格式化后输出的值
Mon Nov 30 2020 11:00:00 GMT+0800 (中国标准时间)
但是传值给对象后的日期和原值对不上
serviceStartTime: "2020-11-30T3:00:00Z"
解决办法使用moment
...
yekong
4年前 (2020-11-25)
喜欢
在苹果端使用js字符串日期格式化无效,这时候可以将字符串日期中的-替换为/就可以正常格式化了。
this.riqi='2020-12-25 20:17:24'
this.riqi.replace(new RegExp("-","gm"),...
yekong
4年前 (2020-11-23)
喜欢
微信头像
<open-data type="userAvatarUrl"></open-data>
微信昵称
<open-data type="userNickName"></open-dat...
yekong
4年前 (2020-11-16)
喜欢
<button open-type="contact" session-from="">
<div class="item">
...
yekong
4年前 (2020-11-16)
喜欢
在项目中需要获取小程序的版本号,但是版本号只能在正式环境中获取,开发版和体验版是不能获取到的
const accountInfo = wx.getAccountInfoSync();
this.version_number = accountInfo.miniProgram.v...
yekong
4年前 (2020-11-03)
喜欢
mp.weixin.qq.com 登录微信小程序开发后台
找到版本管理
找到开发版本 选择体验版弹出二维码 扫码就可以看到了
如果没有设置体验版 可以找到右侧的菜单 根据提示设置体验版
...
yekong
4年前 (2020-10-30)
喜欢
js用方法将数据过滤一次进行渲染
formatRichText(html) {
//控制小程序中图片大小
let newContent = html.replace(/<img[^>]*>/gi, functio...
yekong
4年前 (2020-10-21)
喜欢