route(Object)
此为一个路由跳转方法,内部是对uni多个路由跳转api的封装,更方便使用
export default{
onLoad() {
setTimeout(() => {
uni.$u.route({
url: 'pages/co...
yekong
3年前 (2022-04-28)
喜欢
guid(length = 32, firstU = true, radix = 62)
该函数可以生产一个全局唯一、随机的guid,默认首字母为u,可以用于当做元素的id或者class名等需要唯一,随机字符串的地方,因为id或者class不能以数字开头。
length <...
yekong
3年前 (2022-04-28)
喜欢
Property or method "$u" is not defined on the instance but referenced during render. Make sure that this property is reactive, eit...
yekong
3年前 (2022-04-28)
喜欢
uniapp开发 使用uview http请求显示加载状态。
加载状态
uni.showLoading({
title: 'loading'
})
代码封装
// 此vm参数为页面的实例,可以通过它引用vuex中的变量
import configs from './con...
yekong
3年前 (2022-04-12)
喜欢
uniapp开发一个微信小程序,需要用到一个日历排班功能。
但是遇到一个问题就是,点击更新了内容后,日历上的自定义内容没有更新。排查发现组件只会在show变化时才会更新。修改了一下源文件搞定。
找到 uview/uni_modules/uview-ui/components/u...
yekong
3年前 (2022-02-15)
喜欢
uniapp 开发app时,需要上传图片后,将图片拼接成一个字符串。穿给接口。
<template>
<u-upload :width='width+"rpx"' :height='height+"rpx"' :file...
yekong
3年前 (2022-02-15)
喜欢
uniapp开发,图片处理交给图片组件
<template>
<u--image lazyLoad="true" :fade="true" duration="450" :width="wi...
yekong
3年前 (2022-02-13)
喜欢
<template>
<div class="comprehensive">
<div class="comprehensive-num">
{{data.average}}<text...
yekong
3年前 (2022-02-13)
喜欢
uniapp 微信小程序使用腾讯云存储cos上传图片组件二次封装,实现图片上传,此组件是基于腾讯云存储cos上传,使用前,需要安装对应的组件和依赖。uniapp 微信小程序使用腾讯云对象存储cos 文档地址
<template>
<div class=&qu...
yekong
3年前 (2022-02-09)
喜欢
uniapp 开发 需要一些模板以便于快速实现,避免重复工作
<template>
<view class="flex-col page">
<view class="flex-col group_5"&...
yekong
3年前 (2022-02-09)
喜欢