04 2024 档案

摘要:国密 npm install --save sm-crypto 公钥 // 方法一 import {sm2} from 'sm-crypto' const public_key = '04' + '公钥' let passwordd= sm2.doEncrypt('登陆密码', public_key 阅读全文
posted @ 2024-04-25 09:35 ThisCall 阅读(447) 评论(0) 推荐(0) 编辑
摘要:<van-dialog v-model="showDialog" @confirm="confirmFn" @cancel="showDialog = false" title="添加故障现象" show-cancel-button :before-close="onBeforeClose" > < 阅读全文
posted @ 2024-04-24 09:48 ThisCall 阅读(1299) 评论(0) 推荐(0) 编辑
摘要:alt+2 阅读全文
posted @ 2024-04-23 14:39 ThisCall 阅读(17) 评论(0) 推荐(0) 编辑
摘要:// 引入axios const axios = require('axios'); // 添加响应拦截器 axios.interceptors.response.use( response => { // 删除所有的Set-Cookie头 if (response.headers['set-coo 阅读全文
posted @ 2024-04-18 10:14 ThisCall 阅读(197) 评论(0) 推荐(0) 编辑
摘要:博客 import JSEncrypt from 'jsencrypt/bin/jsencrypt.min' // 密钥对生成 http://web.chacuo.net/netrsakeypair; 把下面生成的公钥、私钥换成自己生成的即可 const publicKey = '',//生成的公钥 阅读全文
posted @ 2024-04-17 10:34 ThisCall 阅读(306) 评论(0) 推荐(0) 编辑
摘要:// van-popup 遮罩白底 .page-van-overlay-f .van-overlay { background: #fff !important; } 阅读全文
posted @ 2024-04-11 10:55 ThisCall 阅读(41) 评论(0) 推荐(0) 编辑
摘要:对象属性监听 props: { baseFormObj: Object, }, watch: { 'baseFormObj.measuresItems': { immediate: true, // 如果需要组件创建时立即监听,设置为true handler(newVal, oldVal) { // 阅读全文
posted @ 2024-04-02 14:14 ThisCall 阅读(538) 评论(0) 推荐(0) 编辑