Commit 9ccd2f34 authored by 沈翠玲's avatar 沈翠玲

Merge branch 'dev' of http://git.local.topsunit.com/mes/mes-ui into dev

parents e36d2e6a d4b5fa99
...@@ -481,10 +481,10 @@ export default { ...@@ -481,10 +481,10 @@ export default {
}, },
methods: { methods: {
handlePrint(){ handlePrint(){
if(!this.ids || this.ids.length === 0) return this.$message.warning('请选择领料单') if(!this.applyno || this.applyno.length === 0) return this.$message.warning('请选择领料单')
this.printloading = true; this.printloading = true;
this.printTable = [] this.printTable = []
materialRequestPrintInfo({ids: this.ids.join(',')}).then(res=>{ materialRequestPrintInfo({applyNo: this.applyno.join(',')}).then(res=>{
if(!res.data || res.data.length === 0) { if(!res.data || res.data.length === 0) {
return this.$message.warning('没有数据') return this.$message.warning('没有数据')
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment