vue外包项目开发要求从接口获取ip并渲染在多行文本框内,且每行输入一个ip,保存时要对每行的ip进行校验。
保存时校验代码
ipVerification(e) {
var type = true
if (e) {
if (!/^(([1-9]?\d|1\d{2...
yekong
2年前 (2022-09-20)
喜欢
vue外包项目开发要求echarts柱状图重叠显示,通过文档查询,可以使用barGap字段来进行控制操作。
barGap: '-100%',
<template>
<div class="echartsBody">
&l...
yekong
2年前 (2022-09-19)
喜欢
vue element ui 实现表单邮件地址验证功能
var checkEmail = (rule, value, cb) => {
// 验证邮箱的正则表达式
const regEmail = /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])...
yekong
2年前 (2022-09-19)
喜欢
uniapp app外包开发要求接口地址是可以动态修改的,首先需要一个页面,用来配置接口地址和端口。
页面代码
<template>
<view class="set-page">
<view class="se...
yekong
2年前 (2022-09-18)
喜欢
uniapp项目开发时,使用data参数报错。
[Vue warn]: The data property "url" is already declared as a prop. Use prop default value instead.
这里意思是这...
yekong
2年前 (2022-09-18)
喜欢
使用dayjs 获取今天是星期几 周几
getWeek(num) {
var datas = dayjs().day()
var week = ['日', '一', '二', '三', '四', '五', '六']
return '星期' + week[datas]
},
...
yekong
2年前 (2022-09-16)
喜欢
element ui el-upload文件上传失败后,也进入到了文件列表,这里的逻辑是不对的,上传失败后,文件不应该存在在文件列表。
<el-upload
action="/rs/business/applyFile/uploadFile"
...
yekong
2年前 (2022-09-15)
喜欢
openLocation:fail parameter error: parameter.longitude should be Number instead of String
使用parseFloat将字符串转为数字
uni.getLocation({
type: 'gc...
yekong
2年前 (2022-09-14)
喜欢
微信小程序开发时,会报错,无法获取当前位置,增加对应的代码就可以解决了。
getLocation:fail the api need to be declared in the requiredPrivateInfos field in app.json/ext.json
增加...
yekong
2年前 (2022-09-14)
喜欢
echarts tooltip层级太高了,导致遮罩层都盖不住,于是查询研究了一下看看如何调整层级。通过extraCssText来实现层级控制。
tooltip: {
show: true,
trigger: 'axis',
extraCssText: 'z-index...
yekong
2年前 (2022-09-14)
喜欢