组批次修改导出参数判空
This commit is contained in:
parent
6fb53f6d7b
commit
ce9680f69a
@ -714,6 +714,9 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
initBatchBillRel(batchNo){
|
initBatchBillRel(batchNo){
|
||||||
|
if(!batchNo){
|
||||||
|
return;
|
||||||
|
}
|
||||||
this.waitBatchDtlList=[];
|
this.waitBatchDtlList=[];
|
||||||
listEmisTmsSiteBatchDtl({batchNo: batchNo}).then(response => {
|
listEmisTmsSiteBatchDtl({batchNo: batchNo}).then(response => {
|
||||||
let rows=response.rows;
|
let rows=response.rows;
|
||||||
@ -1316,6 +1319,9 @@ export default {
|
|||||||
},
|
},
|
||||||
/** 导出按钮操作 */
|
/** 导出按钮操作 */
|
||||||
handleExport() {
|
handleExport() {
|
||||||
|
if (!this.form.batchNo) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
const loadingInstance = this.$loading({
|
const loadingInstance = this.$loading({
|
||||||
text: '正在导出...'
|
text: '正在导出...'
|
||||||
})
|
})
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user