wangchao 041172c0bd 添加计算粮款 | 1 年之前 | |
---|---|---|
patches | 1 年之前 | |
public | 1 年之前 | |
src | 1 年之前 | |
.editorconfig | 3 年之前 | |
.env | 2 年之前 | |
.env.development | 3 年之前 | |
.env.production | 1 年之前 | |
.env.productionShip | 3 年之前 | |
.env.staging | 3 年之前 | |
.env.test | 2 年之前 | |
.eslintignore | 3 年之前 | |
.eslintrc.js | 3 年之前 | |
.gitignore | 3 年之前 | |
.prettierrc | 3 年之前 | |
README.md | 1 年之前 | |
Sortable.min.js | 2 年之前 | |
axios.min.js | 2 年之前 | |
babel.config.js | 3 年之前 | |
echarts.min.js | 2 年之前 | |
index.js | 2 年之前 | |
jsdoc-conf.json | 3 年之前 | |
main.js | 1 年之前 | |
package-lock.json | 1 年之前 | |
package.json | 1 年之前 | |
postcss.config.js | 3 年之前 | |
print.js | 3 年之前 | |
sockjs.min.js | 2 年之前 | |
stomp.min.js | 2 年之前 | |
vue-router.min.js | 2 年之前 | |
vue.min.js | 2 年之前 | |
vuex.min.js | 2 年之前 |
git reset --soft HEAD^ git push origin master --force
2020-12-18 在使用 vue-pdf 打印的时候会出现打印乱码的问题需要 修改源码解决 ,解决方式
function createLoadingTask(src, options) {
let CMAP_URL = 'https://unpkg.com/pdfjs-dist@2.0.943/cmaps/'
var source
if (typeof src === 'string') source = { url: src }
else if (src instanceof Uint8Array) source = { data: src }
else if (typeof src === 'object' && src !== null)
source = Object.assign({}, src)
else
throw new TypeError('invalid src type')
// source.verbosity = PDFJS.VerbosityLevel.INFOS;
// source.pdfBug = true;
// source.stopAtErrors = true;
;(source.cMapUrl = CMAP_URL), (source.cMapPacked = true)
var loadingTask = PDFJS.getDocument(source)
loadingTask.__PDFDocumentLoadingTask = true // since PDFDocumentLoadingTask is not public
if (options && options.onPassword)
loadingTask.onPassword = options.onPassword
if (options && options.onProgress)
loadingTask.onProgress = options.onProgress
return loadingTask
}
注:临时解决