- 博客(13)
- 收藏
- 关注
原创 input只能输入一个0或者正整数
input只能输入一个0或者正整数<input type="number" v-model="form.goods_num" @input="handleZeorNumberInput(form,'goods_num')">handleZeorNumberInput(item, key) { setTimeout(() => { item[key] = item[key] + ''; item[key] = item[key].replace(/[^\d]/g, '');
2021-12-28 10:04:31 1242
原创 input只能输入正整数
input只能输入正整数在这里插入代码片<input type="number" v-model="form.shop_number" @input="handleNumberInput(form,'shop_number')" maxlength="4">handleNumberInput(item, key) { setTimeout(() => { item[key] = item[key] + ''; item[key] = item[key].replace(/
2021-12-28 09:54:06 506
原创 router.addRoutes 清空之前添加的路由
router.addRoutes 清空之前添加的路由// router.js 文件// 不需要权限的路由export const constantRouterMap = [ { path: '/login', component: () => import('@/views/login/index'), hidden: true }, { path: '/404', component: () => import('@/views/404'), hidden
2020-10-19 17:17:16 4138 4
原创 uniapp中iconfont彩色图标
uniapp中iconfont彩色图标1、进入iconfont-阿里巴巴矢量图标库:https://www.iconfont.cn/,将项目图标下载至本地2、解压下载的图标文件,然后进入文件夹3、下载 iconfont-toolsnpm install -g iconfont-tools或者:cnpm install -g iconfont-tools4、执行命令,可以自己定义输出文件名字,(或者一直enter,默认文件名字为:iconfont-weapp-icon)iconfont-to
2020-06-30 16:51:43 2227
原创 toFixed的问题
// toFixed 修复export function toFixedModify(num,s) { let times = Math.pow(10,s); let des = num * times + 0.5; return parseInt(des,10)/times;}// 或者export function toFixedModify(num,s) {...
2020-04-09 09:59:18 175
原创 js中加减乘除的精度计算
// js 精度计算export let floatObj = function() { function isInteger(obj) { return Math.floor(obj) === obj } function toInteger(floatNum) { var ret = {times: 1, num: 0} ...
2020-04-09 09:48:26 604
原创 select2 使用(4.0.3+版本)
远程搜索<div class="col-sm-9" id="select2-chanceOwner"> <select id="chanceOwner" name="chanceOwner" style="width: 100%;"></select></div>$('#chanceOwner').select2({ ...
2020-01-10 18:05:35 760
原创 基于JQ封装的输入远程搜索下拉
需求:实现输入框输入,然后搜索出数据用于下拉效果图js代码;(function ($) { //这里放入插件代码 "use strict"; var RemoteSearch = function (element, options) { this.$element = $(element); this.options = ...
2019-11-15 14:48:45 849 1
原创 基于layui封装的步骤条
HTML调用<!DOCTYPE html><html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta charset="utf-8" /> <title>步骤条</title> <...
2019-08-30 11:23:27 5796 1
原创 转换为树状数组的方法
普通数据转换成树状数组树状数组(最后一级children为 [ ] )let arr = toTreeData(data);function toTreeData(data) { let resData = data; let tree = []; for (let i = 0; i < resData.length; i++) { if (...
2019-04-25 17:46:27 506
原创 jq chosen下拉列表被遮挡
在layui中使用 jq chosen 下拉列表被遮挡住的问题在layui弹框中的情况,下拉列表被遮挡了解决办法:.layui-layer-page .layui-layer-content{ overflow: auto;}改为:.layui-layer-page .layui-layer-content{ overflow: visible;}注:加一个clas...
2019-04-25 17:01:06 1545 1
原创 关于jq chosen的使用心得
jQuery Chosen 使用html代码单选<select class="width-100 nochosen" data-placeholder="请选择" id="enterpriseId"></select>多选<select class="width-100 nochosen" data-placeholder="请选择" multipl...
2019-04-25 16:42:53 809
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人