// 验证电子邮箱格式 export function email(value) { return /^\w+((-\w+)|(\.\w+))...
// 根据第一天获取整周的日期 export const getSeventDays = (firstDay) => { const curr...
// 根据当前日期获取上个月开始时间和结束时间 export const getPreDays = () => { const num2 = ...
/** * * 横向柱状图 * @param {number} id * @param {number} _this */ export fun...
开启节流 throttle="{{true}}" 关闭节流函数 throttle:{ type: Boolean. public: !0, ...
// 设备信息 const phoneSystemInfo = uni.getSystemInfoSync() // 判断是否为微信浏览器 co...
function throttle(func, wait = 500, immediate = true) { if (immediate) ...
1.首先必须是微信小程序所关联的公众号 2.需在小程序设置里开启关注公众号 3.使用微信小程序开发文档提供的组件<official-accoun...
小程序实现文本展开、收起 先在data中定义一个布尔值数据,根据他的false和true来判断是否展开收起 文本超出区域显示省略号 text-o...