Browse Source

修改 采购通知书的下载预览打印方式

dev
long 2 years ago
parent
commit
fe37b4e455
  1. 2
      .env.development
  2. 1
      package.json
  3. 167
      src/views/accessrecords/statement/ProcessMaterialsPlanStatement.vue
  4. 22661
      yarn.lock

2
.env.development

@ -1,4 +1,4 @@
NODE_ENV=development NODE_ENV=development
VUE_APP_API_BASE_URL=http://localhost:9566/hy-boot VUE_APP_API_BASE_URL=http://localhost:9566/hy-boot
VUE_APP_CAS_BASE_URL=http://cas.example.org:8443/cas VUE_APP_CAS_BASE_URL=http://cas.example.org:8443/cas
VUE_APP_ONLINE_BASE_URL=http://fileview.jeecg.com/onlinePreview VUE_APP_ONLINE_BASE_URL=http://182.92.73.21:8012/onlinePreview?url=

1
package.json

@ -42,6 +42,7 @@
"vue-loader": "^15.7.0", "vue-loader": "^15.7.0",
"vue-ls": "^3.2.0", "vue-ls": "^3.2.0",
"vue-pdf": "^4.2.0", "vue-pdf": "^4.2.0",
"vue-pdf-signature": "^4.2.7",
"vue-photo-preview": "^1.1.3", "vue-photo-preview": "^1.1.3",
"vue-print-nb-jeecg": "^1.0.9", "vue-print-nb-jeecg": "^1.0.9",
"vue-router": "^3.0.1", "vue-router": "^3.0.1",

167
src/views/accessrecords/statement/ProcessMaterialsPlanStatement.vue

@ -1,24 +1,10 @@
<template> <template>
<div > <div>
<a-button type="primary" icon="download" @click="downWord">下载</a-button>
<a-button type="primary" style="left: 10px" @click="previewWord">预览并打印</a-button>
<!-- <div style="width: 100%;height: 100%"> <div style="width: 100%;height: 100%;">
<pdf ref="pdfWord" :src="pdfSrc" class="pdf" style=""></pdf>
<iframe class="iframe"
:src="srcHtml"
frameborder="0"
ref="iframes"
style="width: 100%;height: 100%"
>
</iframe>
</div>-->
<button @click="goPreview">点击预览word文件</button>
<div class="docWrap">
<!-- 预览文件的地方用于渲染 -->
<div ref="file"></div>
</div> </div>
</div> </div>
@ -29,14 +15,17 @@
import pick from 'lodash.pick' import pick from 'lodash.pick'
import { mixinDevice } from '@/utils/mixin' import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin' import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import { getAction,downFile} from '@/api/manage'; import { getAction, downFile } from '@/api/manage'
let docx = require("docx-preview"); import pdf from 'vue-pdf-signature'
import CMapReaderFactory from 'vue-pdf-signature/src/CMapReaderFactory'
export default { export default {
name: "ProcessMaterialPlan", name: 'ProcessMaterialPlan',
mixins:[JeecgListMixin,mixinDevice], mixins: [JeecgListMixin, mixinDevice],
props:{ components: { pdf, CMapReaderFactory },
materWared:{ props: {
type: String, materWared: {
type: String
}, },
/**/ /**/
procInstId: { procInstId: {
@ -55,24 +44,30 @@
} }
}, },
data(){ data() {
return{ return {
showSessionId : '', showSessionId: '',
srcHtml : '', srcHtml: '',
url:{ modalLsVisible: false,
list: "/hy/processUdgetPlan/getPlanTable", pdfWord: '',
queryPlanApply:'/word/queryPlanApply' pdfSrc: '',
url: {
list: '/hy/processUdgetPlan/getPlanTable',
queryPlandDownWord: '/word/queryPlandDownWord',
queryPlanPrevie: '/word/queryPlanPrevie'
}, },
Wslist: null, Wslist: null
} }
}, },
mounted() { mounted() {
this.showSessionId = window.location.search; this.showSessionId = window.location.search
this.srcHtml = '../static/采购申请表.html';
// this.sendMesFroIframe();
}, },
created() { created() {
this.goPreview(); /* downFile(this.url.queryPlanPrevie, { id: this.queryParam.id }).then((data) => {
console.log(data)
const blob = new Blob([data], { type: 'application/pdf' })
this.pdfWord = window.URL.createObjectURL(blob)
})*/
// this.loadData(); // this.loadData();
}, },
activated() { activated() {
@ -82,85 +77,43 @@
}, },
computed: { computed: {
importExcelUrl: function(){ importExcelUrl: function() {
return `${window._CONFIG['domianURL']}/${this.url.queryPlanApply}`; return `${window._CONFIG['domianURL']}/${this.url.queryPlanApply}`
} }
}, },
methods:{ methods: {
// // //
// async sendMesFroIframe() { downWord() {
// await this.loadData(); downFile(this.url.queryPlandDownWord, { id: this.queryParam.id }).then((data) => {
// let a = this.Wslist const blob = new Blob([data]) //
// console.log(">>>>>>>>>>>>>>>>>>>>>>>",this.queryParam); var a = document.createElement('a') //<a></a>
// a.href = URL.createObjectURL(blob) // ahref
// a.download = '采购通知书.docx' //
// const mapFrame = this.$refs['iframes'] a.style.display = 'none' // a
// if (mapFrame.attachEvent) { // document.body.appendChild(a) // a
// mapFrame.attachEvent('onload', function() { a.click() // aahref
// const iframeWin = mapFrame.contentWindow a.remove()
// iframeWin.postMessage(a, '*') })
// // data *ip
// }) },
// } else { previewWord() {
// mapFrame.onload = function() { downFile(this.url.queryPlanPrevie, { id: this.queryParam.id }).then((data) => {
// const iframeWin = mapFrame.contentWindow
// iframeWin.postMessage(a, '*')
// }
// }
//
// },
//
goPreview() {
downFile('/word/queryPlanApply', {id:this.queryParam.id }).then((data) => {
console.log(data) console.log(data)
docx.renderAsync(data,this.$refs.file) const blob = new Blob([data], { type: 'application/pdf' })
this.pdfSrc = window.URL.createObjectURL(blob)
console.log(this.pdfSrc)
window.open(this.pdfSrc)//
}) })
}, },
loadData() { loadData() {
return new Promise((resolve, reject) => { this.queryParam.id = this.materWared
if(!this.url.list){
this.$message.error("请设置url.list属性!")
return
}
console.log("KLJKLJKLJKLJKL",this.materWared);
this.queryParam.id = this.materWared;
getAction(this.url.list, this.queryParam).then((res) => {
console.log(res);
if (res.success) {
this.Wslist = res.result;
console.log("this.Wslist>>>>>>>>>>>>>>>>>>>>>>>>>>>>", res.result)
}
if(res.code===510){
this.$message.warning(res.message)
}
this.loading = false;
resolve( this.Wslist );
})
})
}, },
} }
} }
</script> </script>
<style scoped> <style lang="less" scoped>
.docWrap {
width: 100%;
height: 100%;
overflow-x: auto;
}
.iframe {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
background: #fff;
overflow-y: hidden;
}
</style> </style>

22661
yarn.lock

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save