摘要: 1. # 使用axios发送ajaxcnpm install axios --save# 使用mockjs产生随机数据cnpm install mockjs --save-dev 2. 报错BREAKING CHANGE: webpack < 5 used to include polyfills 阅读全文
posted @ 2022-05-31 15:20 jqynr 阅读(166) 评论(0) 推荐(0)
摘要: 参考:https://www.javanx.cn/20190318/vue-elementui-admin/ 1.vue create testadmin 选择vue2 2.npm run dev package.js serve改成dev 3.设置自动打开,vue.config.js devSer 阅读全文
posted @ 2022-05-30 15:12 jqynr 阅读(1164) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/jiuyisir/article/details/122695801 控制面板 用户账户 管理你的凭据 windows凭据 普通凭据 git:https://gitee.com 阅读全文
posted @ 2022-05-30 11:03 jqynr 阅读(636) 评论(0) 推荐(0)
摘要: <el-table-column prop="syncFlag" label="name" :align="tableLeft" min-width="140" show-overflow-tooltip :formatter="syncFlagFormat" /> syncFlagFormat(r 阅读全文
posted @ 2022-05-28 12:08 jqynr 阅读(188) 评论(0) 推荐(0)
摘要: html <el-form ref="information" :model="information" :rules="rules"> <el-table :data="information.slicingProcessList" > <el-table-column width="200" l 阅读全文
posted @ 2022-05-28 11:29 jqynr 阅读(569) 评论(0) 推荐(0)
摘要: store/modules/dict.js import { getDicts } from '@/api/index' const dict = { state: { dicts: [], }, mutations: { SET_DICT: (state, data) => { state.dic 阅读全文
posted @ 2022-05-28 08:55 jqynr 阅读(646) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/qyl_0316/article/details/108583481 table <el-table :data="slicingProcessList" class="table-box table1" height="250" ref="tabl 阅读全文
posted @ 2022-05-27 18:18 jqynr 阅读(1509) 评论(0) 推荐(0)
摘要: 参考:https://juejin.cn/post/6844903481224986638 //赋值对象是一个obj,只有一层,不能克隆二维 this.objData=Object.assign({}, row) //这样就不会共用同一个对象 //数组我们也有一个巧妙的防范,也是只有一层 newAr 阅读全文
posted @ 2022-05-26 11:10 jqynr 阅读(238) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/qq_42730111/article/details/123050220 data // 多个表单验证 resultArr: [], formArr: ["form", "form1"], formvalidnum:0, 验证方法 // 验证数组 阅读全文
posted @ 2022-05-25 11:28 jqynr 阅读(385) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/sonichenn/article/details/124552540 正整数 var validatorPositiveInteger = (rule, value, callback) => { if (Number.isInteger(Numb 阅读全文
posted @ 2022-05-25 10:52 jqynr 阅读(89) 评论(0) 推荐(0)
摘要: this.$set(item, "processlist", response.data); 阅读全文
posted @ 2022-05-24 16:02 jqynr 阅读(57) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/bright_memory/article/details/124030699 右键,选择 formate Document With... 然后选择 Vetur over 阅读全文
posted @ 2022-05-23 16:48 jqynr 阅读(98) 评论(0) 推荐(0)
摘要: 参考:http://t.zoukankan.com/studycc-p-8387385.html <div id="formStr" v-html="form_str">{{ form_str }}</div> 阅读全文
posted @ 2022-05-20 18:23 jqynr 阅读(698) 评论(0) 推荐(0)
摘要: 参考:https://m.php.cn/article/476022.html background-image: -webkit-linear-gradient(bottom, red, #fd8403, yellow); -webkit-background-clip: text; -webki 阅读全文
posted @ 2022-05-19 18:41 jqynr 阅读(181) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/qq_32848943/article/details/119750677 tooltip: { trigger: 'item', formatter:'{c}%' }, 或 yAxis: { axisLabel: { color: "#ccc", 阅读全文
posted @ 2022-05-19 17:09 jqynr 阅读(116) 评论(0) 推荐(0)
摘要: placeholder-style 或者 placeholder-class 阅读全文
posted @ 2022-05-18 14:12 jqynr 阅读(170) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/weixin_42681295/article/details/107668844 .title:before { content: ""; display: block; margin-right: 14rpx; width: 0; height: 阅读全文
posted @ 2022-05-18 10:44 jqynr 阅读(146) 评论(0) 推荐(0)
摘要: router/index.vue { path: '/order', component: Layout, name: 'optimize', hidden: true, redirect: '/order', children: [{ path: 'optimizeDetail/:orderId/ 阅读全文
posted @ 2022-05-18 08:52 jqynr 阅读(418) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/weixin_57607714/article/details/123735494 <template> <div class="login"> <div class="login_box"> <div class="img"> <img :src= 阅读全文
posted @ 2022-05-17 14:22 jqynr 阅读(256) 评论(0) 推荐(0)
摘要: 参考网页:https://segmentfault.com/a/1190000020349903 //定义两个http请求方法 const getList1 = ()=>{ return new Promise((res,rej) =>{ //省去get方法获取过程 .then((json) => 阅读全文
posted @ 2022-05-16 13:58 jqynr 阅读(402) 评论(0) 推荐(0)
摘要: 参考地址:https://cloud.tencent.com/developer/ask/sof/242833 使用默认播放 <video id="examresult-video" width="100%" height="100%" controls> <source :src="videour 阅读全文
posted @ 2022-05-15 13:33 jqynr 阅读(654) 评论(0) 推荐(0)
摘要: 参考:https://www.csdn.net/tags/NtzaMg3sMzAzMTYtYmxvZwO0O0OO0O0O.html 在.eslintrc.js中,找到rules,加上如下代码中的—最后一行。 rules: { 'vue/comment-directive':'off' //加这行就 阅读全文
posted @ 2022-05-14 15:54 jqynr 阅读(124) 评论(0) 推荐(0)
摘要: 人造表格 代码 <div class="exam-table"> <div class="exam-tr"> <div class="exam-th num">序号</div> <div class="exam-th wnum">f</div> <div class="exam-th uname"> 阅读全文
posted @ 2022-05-14 09:51 jqynr 阅读(494) 评论(0) 推荐(0)
摘要: 参考地址:https://www.cnblogs.com/yuezhimou/p/12809182.html 1.安装 npm install vue-video-player -S 这里改一下,现在插件更新了,是支持vue3的,本文是vue2的,引入方式换成这样就可以 cnpm install v 阅读全文
posted @ 2022-05-10 11:17 jqynr 阅读(1284) 评论(4) 推荐(0)
摘要: 参考链接:https://product.pconline.com.cn/itbk/software/os/1380/13805191.html 对于台式机来说,如果我们将耳机或者音箱插入台式机前置面板上,我们尝试将耳机插到主机后面的音频接口上,即主板上的音频接口上,如果有声音了,那么说明就是音频设 阅读全文
posted @ 2022-05-10 10:07 jqynr 阅读(4209) 评论(0) 推荐(0)
摘要: # 告诉EditorConfig插件,这是根文件,不用继续往上查找 root = true # 匹配全部文件 [*] # 设置字符集 charset = utf-8 # 缩进风格,可选space、tab indent_style = space # 缩进的空格数 indent_size = 2 # 阅读全文
posted @ 2022-05-07 11:21 jqynr 阅读(26) 评论(0) 推荐(0)
摘要: 常规 EditorConfig for VS Code vue ESLint Vetur vueVue 3 Support - All In One <vue格式化组件> vue3 禁用 VeturVue Language FeaturesTypeScript Vue Plugin (Volar) 阅读全文
posted @ 2022-05-07 11:19 jqynr 阅读(37) 评论(0) 推荐(0)
摘要: sudo dpkg -i baidunetdisk_4.3.0_amd64.deb 阅读全文
posted @ 2022-05-05 22:57 jqynr 阅读(419) 评论(0) 推荐(0)
摘要: 方法 //未执行 function tes(params) { return new Promise((resolve, reject) => { console.log(444); setTimeout(() => { resolve('fffh'); }, 1000); }) } tes().t 阅读全文
posted @ 2022-05-05 18:26 jqynr 阅读(157) 评论(0) 推荐(0)
摘要: cnpm install core-js@3 --save 或者 cnpm install core-js@2 --save 阅读全文
posted @ 2022-04-30 15:36 jqynr 阅读(290) 评论(0) 推荐(0)
摘要: 表单格式化数据 <el-table-column label="审核状态" :align="tableCenter" prop="authStatus" :formatter="statusFormat" /> //审核状态--获取名称 statusFormat(row, column) { let 阅读全文
posted @ 2022-04-29 18:16 jqynr 阅读(327) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/u014602228/article/details/122629438 二进制安装 1.官网下载或者 wget https://nodejs.org/dist/v12.18.4/node-v12.18.4-linux-x64.tar.xz 2.解压 阅读全文
posted @ 2022-04-29 12:55 jqynr 阅读(475) 评论(0) 推荐(0)
摘要: 1.fcitx apt install fcitx fcitx-googlepinyin 2.ibus apt-get install ibus ibus-pinyin im-config 搜索设置 添加中文pinyin输入法,设置切换按键 阅读全文
posted @ 2022-04-29 12:48 jqynr 阅读(50) 评论(0) 推荐(0)
摘要: 参考网址 https://blog.csdn.net/qq_45860349/article/details/122480113 vim /etc/apt/sources.list 添加 #清华大学deb http://mirrors.tuna.tsinghua.edu.cn/kali kali-r 阅读全文
posted @ 2022-04-29 12:43 jqynr 阅读(153) 评论(0) 推荐(0)
摘要: 参考链接https://blog.csdn.net/qq_54780911/article/details/121723987 1.下载 https://www.kali.org/get-kali/ 2.找到Live Boot下载 3.找到种子链接,不要直接下 4.下载U盘启动工具 https:// 阅读全文
posted @ 2022-04-29 11:43 jqynr 阅读(296) 评论(0) 推荐(0)
摘要: 1、准备好一张图片(*.ico)将其复制到u盘里,改名为“only.ico” 2、在u盘上新建一个记事本,并改命为Autorun.inf,切记是inf格式。 3、在Autorun.inf文件内输入以下内容 [Autorun] icon=only.ico 4、将Autorun.inf和only.ico 阅读全文
posted @ 2022-04-27 15:37 jqynr 阅读(177) 评论(0) 推荐(0)
摘要: <div id="chart1" :style="{ width: '49%', height: '360px' }"></div> mounted() { window.addEventListener("resize", this.resizeCharts); }, resizeCharts() 阅读全文
posted @ 2022-04-24 16:08 jqynr 阅读(200) 评论(0) 推荐(0)
摘要: this.$confirm("您确认要审核吗?", "警告", { confirmButtonText: "确定", cancelButtonText: "取消", type: "warning", }) .then(function () { return auditors({ id: id, a 阅读全文
posted @ 2022-04-21 10:53 jqynr 阅读(395) 评论(0) 推荐(0)
摘要: elementui 验证 pressure: [ { required: true, message: "请输入密码", trigger: "blur" }, { pattern: /^[1-9]{1}[0-9]{0,7}$/, message: "只能输入1-8位数字", trigger: "bl 阅读全文
posted @ 2022-04-20 14:46 jqynr 阅读(30) 评论(0) 推荐(0)
摘要: 匹配数字1-8位 /^[1-9]{1}[0-9]{0,7}$/ 非空 /^[\s\S]*.*[^\s][\s\S]*$/ 密码数字和大小写 /^(?![0-9a-z]+$)(?![a-zA-Z]+$)(?![A-Za-z]+$)[0-9A-Za-z]{8,50}$/ 密码数字,大小写和特殊字符 /^ 阅读全文
posted @ 2022-04-20 14:42 jqynr 阅读(27) 评论(0) 推荐(0)