from docx.shared import Pt,RGBColor from docx.oxml.ns import qn #word中字体的颜色、大小、字体def style(tt,tsize,color,rfont): for ii in tt: for run1 in ii.runs: f ...
分类:
其他好文 时间:
2020-12-16 12:37:51
阅读次数:
2
一、项目目录介绍 首先看看项目目录,简单了解一下项目结构。 dist:项目发布目录。 node_modules:项目依赖目录、 public:项目index.html所在目录,其他所有组件都挂载到这个页面。 src:项目文件目录 src\components:项目组件目录 src\router:路由 ...
分类:
其他好文 时间:
2020-12-16 12:30:06
阅读次数:
3
新建 Pagination <template> <div :class="{'hidden':hidden}" class="pagination-container"> <el-pagination :background="background" :current-page.sync="cur ...
分类:
其他好文 时间:
2020-12-15 12:05:58
阅读次数:
2
ST表的功能很简单 它是解决RMQ问题(区间最值问题)的一种强有力的工具 它可以做到O(nlogn)预处理,O(1)查询最值 ST表是利用的是倍增的思想 拿最大值来说 我们用Max[i][j]表示,从i位置开始的2j个数中的最大值,例如Max[i][1]表示的是ii位置和i+1位置中两个数的最大值 ...
分类:
其他好文 时间:
2020-12-14 13:48:47
阅读次数:
3
需求: 在做公司文件共享系统的项目的时候,遇到个单次上传最大个数10的需求。 过程: 去翻了文档,看到limit这个属性,美滋滋的加上了。自测了下,选择11个确实执行了on-exceed对应的方法,提示出来超出限制。 提测阶段: 测试突然说我这个限制有bug,最后测试确实是存在bug,原因是文档这个 ...
分类:
Web程序 时间:
2020-12-14 13:38:53
阅读次数:
7
vue-element-admin-master npm install 出错 一丶报错信息 二丶解决方案 输入 npm config set sass_binary_site=https://npm.taobao.org/mirrors/node-sass 再次 npm insatll 启动 np ...
分类:
其他好文 时间:
2020-12-14 12:52:35
阅读次数:
2
1、安装插件 npm install --save image-conversion 2、引入插件 import { compressAccurately } from 'image-conversion' //按需引入 3、在图片上传之前对图片进行压缩 /** 在图片上传前before-uploa ...
分类:
Web程序 时间:
2020-12-11 11:56:21
阅读次数:
7
html部分 <el-table :data="tableData" class='tabboxC'//更改外轮廓border或对整体字体样式进行更改 style="width: 100%;"> <el-table-column prop="date" label="日期" width="180"> ...
分类:
其他好文 时间:
2020-12-11 11:55:28
阅读次数:
7
Description A frightful matrix is a square matrix of order n where the first row and the first column are explicitly specified, while the other elemen ...
分类:
其他好文 时间:
2020-12-11 11:54:24
阅读次数:
4
在上一文中 通过IDEA集成Docker插件实现微服务的一键部署,但前后端分离的项目,除了后端微服务的部署之外,当然还少不了前端工程的部署。所以本篇讲述如何通过Docker安装Nginx实现前端Vue项目工程的部署。 ...
分类:
其他好文 时间:
2020-12-10 10:57:47
阅读次数:
4