分类:学习笔记

note

uniapp 微信小程序同意协议封装

uniapp 微信小程序同意协议封装
微信小程序涉及到用户信息收集的地方,都需要同意协议,每次都要手动写一遍,好麻烦,干脆封装成一个小组件,直接复用好了。 使用 <agreement :select.sync="select"></agreement> 验证 if (!...

3年前 (2022-05-18) 喜欢

uniapp 滑动实现删除

uniapp 滑动实现删除
使用到的组件 uniapp uview 滑动显示删除按钮 html <u-swipe-action> <u-swipe-action-item @click="getDelete($event,item)" :key='inde...

3年前 (2022-05-18) 喜欢

js vue base64文件转file

js vue base64文件转file
方法封装 export default function base64ToBlob(base64Data) { var byteString if (base64Data.split(',')[0].indexOf('base64') >= 0) { byt...

3年前 (2022-05-17) 喜欢