Browse Source

添加领料单

dev
long 2 years ago
parent
commit
d838e1f04a
  1. 197
      src/views/accessrecords/statement/ProcessMaterialsDeliveryStatement.vue

197
src/views/accessrecords/statement/ProcessMaterialsDeliveryStatement.vue

@ -1,129 +1,140 @@
<template> <template>
<div > <div>
<a-card :bordered="false" style="width: 100%;height: 730px"> <a-button type="primary" icon="download" @click="downWord">下载</a-button>
<a-button type="primary" style="left: 10px" @click="previewWord">预览并打印</a-button>
<div class="table-operator" style="width: 18%">
<!-- <a-button type="primary">-->
<!-- 预览-->
<!-- </a-button>-->
<div style="width: 100%;height: 100%;">
<pdf v-show="false" ref="pdfWord" :src="pdfSrc" class="pdf" style=""></pdf>
</div> </div>
<div style="width: 100%;height: 80%">
<iframe class="iframe"
:src="srcHtml"
frameborder="0"
ref="iframes"
style="width: 100%;height: 100%"
>
</iframe>
</div> </div>
</a-card>
</div>
</template> </template>
<script> <script>
import { JeecgListMixin } from '@/mixins/JeecgListMixin' const VALIDATE_NO_PASSED = Symbol()
import { mixinDevice } from '@/utils/mixin' import pick from 'lodash.pick'
import { getAction } from '@api/manage' import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
export default { import { getAction, downFile } from '@/api/manage'
name: "ProcessMaterialsDeliveryStatement", import pdf from 'vue-pdf-signature'
mixins:[JeecgListMixin,mixinDevice], import CMapReaderFactory from 'vue-pdf-signature/src/CMapReaderFactory'
props:{
materWared:{ export default {
name: 'ProcessMaterialsDeliveryStatement',
mixins: [JeecgListMixin, mixinDevice],
components: { pdf, CMapReaderFactory },
props: {
materWared: {
type: String
},
/**/
procInstId: {
type: String,
default: '',
required: false
},
pictureId: {
type: String, type: String,
default: '',
required: false
},
lcModa: {
type: Object,
required: false
} }
}, },
data(){
return{ data() {
showSessionId : '', return {
srcHtml : '', showSessionId: '',
url:{ srcHtml: '',
list: "/hy/processMaterialsDelivery/stockRemovalDetails", modalLsVisible: false,
pdfWord: '',
pdfSrc: '',
queryParam:{
id:''
}, },
Wslist:[] url: {
list: '/hy/processUdgetPlan/getPlanTable',
queryDeliveryDownWord: '/word/queryDeliveryDownWord',
queryDeliveryPrevie: '/word/queryDeliveryPrevie'
},
Wslist: null
}
},
mounted() {
this.showSessionId = window.location.search
},
watch:{
materWared:function (newData, oldData) {
// newData
// oldData
if(newData !== oldData){
this.loadData();
console.log("数据已经更新")
}
} }
}, },
created() { created() {
this.sendMesFroIframe(); // 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() {
this.sendMesFroIframe();
},
mounted() {
this.showSessionId = window.location.search;
this.srcHtml = '../static/内部领物单.html';
this.sendMesFroIframe();
}, },
beforeMount() { beforeMount() {
}, },
methods:{ computed: {
// importExcelUrl: function() {
async sendMesFroIframe() { return `${window._CONFIG['domianURL']}/${this.url.queryPlanApply}`
let a = await this.loadData();
console.log("执行了>>>>>>>>>>>>>>>>>>",a);
const mapFrame = this.$refs['iframes']
if (mapFrame.attachEvent) { //
mapFrame.attachEvent('onload', function() {
const iframeWin = mapFrame.contentWindow
iframeWin.postMessage(a, '*')
// data *ip
})
} else {
mapFrame.onload = function() {
const iframeWin = mapFrame.contentWindow
iframeWin.postMessage(a, '*')
} }
},
methods: {
//
downWord() {
downFile(this.url.queryDeliveryDownWord, { id: this.queryParam.id }).then((data) => {
if (!data.size>0) {
this.$message.warning("文件下载失败")
return
} }
const blob = new Blob([data]) //
var a = document.createElement('a') //<a></a>
a.href = URL.createObjectURL(blob) // ahref
a.download = '领料单.docx' //
a.style.display = 'none' // a
document.body.appendChild(a) // a
a.click() // aahref
a.remove()
})
}, },
previewWord() {
loadData() { downFile(this.url.queryDeliveryPrevie, { id: this.queryParam.id }).then((data) => {
return new Promise((resolve, reject) => { if (!data.size>0) {
if(!this.url.list){ this.$message.warning("文件预览失败")
this.$message.error("请设置url.list属性!")
return return
} }
console.log("this.materWared>>>>>>>>>>>>>>>>>>>>>",this.materWared); const blob = new Blob([data], { type: 'application/pdf' })
this.queryParam.processMaterialsDeliveryId = this.materWared; this.pdfSrc = window.URL.createObjectURL(blob)
getAction(this.url.list, this.queryParam).then((res) => { console.log(this.pdfSrc)
console.log(res); window.open(this.pdfSrc)//
if (res.success) {
this.Wslist = res.result.records;
}
if(res.code===510){
this.$message.warning(res.message)
}
this.loading = false;
resolve( this.Wslist );
}) })
},
loadData() {
this.queryParam.id = this.materWared
},
})
},
} }
} }
</script> </script>
<style scoped> <style lang="less" scoped>
.iframe {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
background: #fff;
overflow-y: hidden;
}
</style> </style>
Loading…
Cancel
Save