<el-input v-model="value" onKeypress="return(/[\d]/.test(String.fromCharCode(event.keyCode)))" type="number"></el-input> el-input只能输入数字以及数字范围问题 el-input只能输入数字 oninpu…
创建一个editCell.vue页面用来封装 <template> <div class="editCell"> <div class="canEdit" v-if="CanEdit" @click="beginEdit"> <label v-show="!editStatus"> <span v-if=" this.…
前言 最近在做一个非常小的项目,使用的是uni-app的前端框架,在使用过程中遇到了一个问题,就是如何是scorll-view自动填满屏幕上剩下的高度,在网上找了很多教程,但是详细的并不太多。此次就当是在学习过程中的一个记录吧!有需要的朋友可以拿走看看。 思路: 1.使用uni.getSystemInfo(OBJECT)API接口获取设备屏幕高度2…
新建文件 directives.js import Vue from 'vue'; // v-dialogDrag: 弹窗拖拽属性 Vue.directive('dialogDrag', { bind(el, binding, vnode, oldVnode) { const dialogHeaderEl = el.querySelector('.…