|
|
|
@ -51,8 +51,8 @@
|
|
|
|
|
modalLsVisible: false, |
|
|
|
|
pdfWord: '', |
|
|
|
|
pdfSrc: '', |
|
|
|
|
queryParam:{ |
|
|
|
|
id:'' |
|
|
|
|
queryParam: { |
|
|
|
|
id: '' |
|
|
|
|
}, |
|
|
|
|
url: { |
|
|
|
|
list: '/hy/processUdgetPlan/getPlanTable', |
|
|
|
@ -65,12 +65,12 @@
|
|
|
|
|
mounted() { |
|
|
|
|
this.showSessionId = window.location.search |
|
|
|
|
}, |
|
|
|
|
watch:{ |
|
|
|
|
materWared:function (newData, oldData) { |
|
|
|
|
watch: { |
|
|
|
|
materWared: function(newData, oldData) { |
|
|
|
|
//newData是更新后的数据 |
|
|
|
|
//oldData是旧数据 |
|
|
|
|
if(newData !== oldData){ |
|
|
|
|
this.loadData(); |
|
|
|
|
if (newData !== oldData) { |
|
|
|
|
this.loadData() |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -99,8 +99,8 @@
|
|
|
|
|
// 下载 |
|
|
|
|
downWord() { |
|
|
|
|
downFile(this.url.queryInspectionFormDownWord, { id: this.queryParam.id }).then((data) => { |
|
|
|
|
if (!data.size>0) { |
|
|
|
|
this.$message.warning("文件下载失败") |
|
|
|
|
if (!data.size > 0) { |
|
|
|
|
this.$message.warning('文件下载失败') |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
const blob = new Blob([data]) // 把得到的结果用流对象转一下 |
|
|
|
@ -115,9 +115,10 @@
|
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
previewWord() { |
|
|
|
|
this.$message.loading('加载中请稍后......') |
|
|
|
|
downFile(this.url.queryInspectionFormPrevie, { id: this.queryParam.id }).then((data) => { |
|
|
|
|
if (!data.size>0) { |
|
|
|
|
this.$message.warning("文件预览失败") |
|
|
|
|
if (!data.size > 0) { |
|
|
|
|
this.$message.warning('文件预览失败') |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
const blob = new Blob([data], { type: 'application/pdf' }) |
|
|
|
@ -128,8 +129,7 @@
|
|
|
|
|
}, |
|
|
|
|
loadData() { |
|
|
|
|
this.queryParam.id = this.materWared |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|