页面1
onShow() {
uni.$on('address', function(data) {
that.data.address = data.address
that.data.coordinate = data.latitude + ','...
yekong
3年前 (2022-06-06)
喜欢
<template>
<view class="home">
<u-sticky>
<view>
<div class="topbg">
<u...
yekong
3年前 (2022-06-06)
喜欢
if (!uni.$u.test.rangeLength(this.CustomerName, [2, 50])) {
uni.showToast({
title: '请输入企业名称,长度不能超过50字符',
icon: 'none'
})
retur...
yekong
3年前 (2022-06-04)
喜欢
数据格式
接口校验数据的时候,有时候会返回一组数据,这就需要遍历处理一下,然后返回其中一条错误。
errors: {,…}
DeductionRate: [,…]
DeliveryTimeout: [,…]
Price: ["Error converting value...
yekong
3年前 (2022-06-04)
喜欢
uniapp app开发只选择图片,获取图片文件列表,并不上传图片。
<template>
<div class="fileListMain">
<u-cell-group>
<u-cell title=...
yekong
3年前 (2022-06-03)
喜欢
html
<u-cell title="录像" @click="saveVideo()" :isLink="true" value="开始录像">
<view slot=&...
yekong
3年前 (2022-06-03)
喜欢
getName: function(next) {
return next.substr(0, 1) + '**'
},
getPhone: function(next) {
return next.substr(0, 3) + '******' + ...
yekong
3年前 (2022-06-01)
喜欢
SwipeAction 滑动单元格
通过slot传入内部内容即可,可以将v-for的"index"索引值传递给index参数,用于点击时,在回调方法中对某一个数据进行操作(点击回调时第一个参数会返回此索引值)
内部的按钮通过options参数配置,此参数为一个...
yekong
3年前 (2022-05-31)
喜欢
uniapp 开发app时,需要用到评论功能,当我们评论是,需要评论内容滚动到最新的地方,比如滚动到最底部。
<scroll-view id="scrollview" class="list" :scroll-top="sc...
yekong
3年前 (2022-05-27)
喜欢
微信小程序,要求页面根据后台返回的权限列表进行显示
切换鉴权
底部tab是自定义的进行切换前,判断是否有权限,没有权限则禁止切换
changeActive(name) {
if (!this.getMenu(name)) {
uni.$u.toast('您的权...
yekong
3年前 (2022-05-24)
喜欢