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)
喜欢
for…in…
var obj = {'0':'a', '1':'b', '2':'c'};
for(let i in obj){
console.log(i,":",obj[i]);//{0:a,1:b,2:c}
}
Object.keys
var...
yekong
3年前 (2022-06-04)
喜欢
getName: function(next) {
return next.substr(0, 1) + '**'
},
getPhone: function(next) {
return next.substr(0, 3) + '******' + ...
yekong
3年前 (2022-06-01)
喜欢
window.location.reload();
...
yekong
3年前 (2022-05-29)
喜欢
使用
<tabLine :list="tablist" :active.sync="active"></tabLine>
tablist: [{
name: '全部',
id: -1
}, {
name: '...
yekong
3年前 (2022-05-23)
喜欢
uniapp uview u-checkbox复选二次封装
使用
<checkboxCom :value.sync="is_virtul"></checkboxCom>
代码封装
/**
* @Author: 858834013@qq...
yekong
3年前 (2022-05-23)
喜欢
登录页面有个要求,根据接口返回的数据依次判断类型,1-4,有1就先跳转到1,依次进行判断,一开始用的是if的判断形式,在做代码精简时,又想到了用循环的方式forEach。类型少的时候用if和forEach都可以,当类型多的时候,forEach代码要更精简一些。
if
if (th...
yekong
3年前 (2022-05-20)
喜欢
代码
<input confirm-type="search" @confirm="getdata" type="text" v-model="data.KeyWord" placeholde...
yekong
3年前 (2022-05-17)
喜欢
使用
<add @getdata="getlist"></add>
代码
/**
* @Author: 858834013@qq.com
* @Name: add
* @Date: 2022-05-17
* @Desc:
*/
<...
yekong
3年前 (2022-05-17)
喜欢