摘要:
1、先看这个(必看):https://www.cnblogs.com/lyt520/p/16545806.html 2、安装移动端log(如不需要可跳过此步骤) npm install vconsole main.js中引入: import VConsole from 'vconsole' cons 阅读全文
摘要:
location / { root html; index index.html index.htm; try_files $uri $uri/ /index.html; } location /mobile { # 多层目录时不能用root,要用alias alias html/mobile; i 阅读全文
摘要:
// 前端分页 const tableFrontEndPaging = { data() { return { currpage: 1, page_size: 10, page_list: [10, 20, 50], currentPage: null, header_cell_style: { b 阅读全文
摘要:
echo off :: 设置utf-8编码 chcp 65001 :: 先删除web_out目录下的所有文件及子目录 cd ../web_out del /Q /F /S * & rd /S /Q . :: 进入源代码路径中 cd ../source_code :: 执行打包命令 call npm 阅读全文
摘要:
REM 快速删除当前目录中所有的.rar后缀文件 echo off REM 检查是否存在以 .rar 为后缀的文件 dir /B *.rar > nul 2>&1 if %errorlevel% equ 0 ( REM 存在以 .rar 为后缀的文件,删除它们 del /Q *.rar echo d 阅读全文
摘要:
import Vue from 'vue' /** * 按钮防抖,300毫秒内只触发一次请求 * 区分了一下传参和不传参的情况 */ // 不传参数,用法:v-debounce="test_debounce" Vue.directive('debounce', { inserted: functio 阅读全文
摘要:
echo off REM 检查是否存在以 .rar 为后缀的文件 dir /B *.rar > nul 2>&1 if %errorlevel% equ 0 ( REM 存在以 .rar 为后缀的文件,删除它们 del /Q *.rar echo delete all rar file succes 阅读全文
摘要:
echo off REM 使用 WMIC 获取当前日期和时间for /F "skip=1 tokens=2 delims==" %%G in ('wmic OS Get localdatetime /value') do ( set "datetime=%%G") REM 提取日期和时间的各个部分s 阅读全文
摘要:
父组件中: provide: function() { return { reload: this.reload // 父组件中的方法 } } 子组件中: inject: ['reload'] 使用:this.reload() // 也可传入参数 阅读全文
摘要:
1、api.js文件 import axios from 'axios' import { Message } from 'element-ui' const timeout = 5000 // 默认超时 const api = axios.create({ baseURL: '', // 设置AP 阅读全文