uniapp 微信小程序逻辑处理时会出现多个showModal弹出,但是客户要求只弹出一个而非多个,微信小程序并没有关闭showModal的api所以改用uview u-modal的自定义方式的弹出。
uni.showModal({
title: '车辆已被其它司机登录,请重新...
3年前 (2022-09-26)
喜欢
vue element table将选择的过滤器值现在在table的head内。
<el-table
ref="filterTable"
@filter-change="filterChange"
:data="...
3年前 (2022-09-26)
喜欢
element ui table 过滤器默认是多选的,现在需要的功能是单选,所以需要设置一下。这里是通过filter-multiple来控制多选还是单选。filter-multiple为false则是单选,如果是true是多选。
<el-table-column
prop...
3年前 (2022-09-26)
喜欢
##api
// 发送短信
smsApi.post('/sendSmsKsd', async ctx => {
console.log(ctx.request.body)
const tel = ctx.request.body.tel;
var d...
3年前 (2022-09-25)
喜欢
koa2实现验证码发送,需要对验证码进行校验,于是找了一个插件来实现验证码的生成以及校验
安装依赖
npm i sms-code
使用
// nodejs 运行环境
const smsCode = require('sms-code')
// es6
...
3年前 (2022-09-25)
喜欢
mac系统环境变量配置文件列表按优先级排列
/etc/profile
/etc/paths
~/.bash_profile
~/.bash_login
~/.profile
~/.bashrc
1)/etc/paths (全局建议修改这个文件 )
编辑 paths,将...
3年前 (2022-09-24)
喜欢
vue要求点击div时,获取div距离顶部的距离。实现代码记录一下
<template>
<div ref="searchBody"></div>
<template/>
<script>...
3年前 (2022-09-24)
喜欢
vue外包项目要求页面滚动的时候,顶部导航跟随滚动,但是顶部导航的背景是透明的,这就需要根据距离顶部的距离给一个背景色,背景色随着页面往下滚动逐渐加深,网上滚动逐渐透明
<div class="pageHeader" :style="'back...
3年前 (2022-09-23)
喜欢
vue外包项目要求页面滚动的时候,顶部导航跟随滚动,但是顶部导航的背景是透明的,这就需要根据距离顶部的距离给一个背景色,首先需要获取距离顶部的距离
mounted() {
window.addEventListener('scroll', this.getScrollIn...
3年前 (2022-09-23)
喜欢
找到网络修改dns后,重启一下虚拟机就可以了
8.8.8.8
114.114.114.114
ipv6改为仅本地
...
3年前 (2022-09-22)
喜欢