wangchao 041172c0bd 添加计算粮款 | il y a 1 an | |
---|---|---|
patches | il y a 1 an | |
public | il y a 1 an | |
src | il y a 1 an | |
.editorconfig | il y a 3 ans | |
.env | il y a 2 ans | |
.env.development | il y a 3 ans | |
.env.production | il y a 1 an | |
.env.productionShip | il y a 3 ans | |
.env.staging | il y a 3 ans | |
.env.test | il y a 2 ans | |
.eslintignore | il y a 3 ans | |
.eslintrc.js | il y a 3 ans | |
.gitignore | il y a 3 ans | |
.prettierrc | il y a 3 ans | |
README.md | il y a 1 an | |
Sortable.min.js | il y a 2 ans | |
axios.min.js | il y a 2 ans | |
babel.config.js | il y a 3 ans | |
echarts.min.js | il y a 2 ans | |
index.js | il y a 2 ans | |
jsdoc-conf.json | il y a 3 ans | |
main.js | il y a 1 an | |
package-lock.json | il y a 1 an | |
package.json | il y a 1 an | |
postcss.config.js | il y a 3 ans | |
print.js | il y a 3 ans | |
sockjs.min.js | il y a 2 ans | |
stomp.min.js | il y a 2 ans | |
vue-router.min.js | il y a 2 ans | |
vue.min.js | il y a 2 ans | |
vuex.min.js | il y a 2 ans |
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
}
注:临时解决