|
|
|
@ -412,6 +412,7 @@ |
|
|
|
issueEndDate: this.dayjs().format("YYYY-MM-DD")+" 23:59:59", |
|
|
|
sql: "", |
|
|
|
orderNo: "", |
|
|
|
orderType: 'shoporder', // rqrq - 默认查询shoporder类型 |
|
|
|
}, |
|
|
|
notifyData:{ |
|
|
|
site: '', |
|
|
|
@ -1066,10 +1067,15 @@ |
|
|
|
}, |
|
|
|
refreshCurrentTabTable(){ |
|
|
|
if(this.currentRow===''||this.currentRow===null){ |
|
|
|
this.currentRow={site:'',notifyNo:''} |
|
|
|
this.currentRow={site:'',notifyNo:'',orderType:'shoporder'} |
|
|
|
} |
|
|
|
// rqrq - 添加orderType参数 |
|
|
|
let queryData = { |
|
|
|
...this.currentRow, |
|
|
|
orderType: 'shoporder' |
|
|
|
} |
|
|
|
if(this.activeName==='detail'){ |
|
|
|
searchNotifyOrderListNew(this.currentRow).then(({data}) => { |
|
|
|
searchNotifyOrderListNew(queryData).then(({data}) => { |
|
|
|
//区分请求成功和失败的状况 |
|
|
|
if (data && data.code == 0) { |
|
|
|
this.dataList2 = data.rows |
|
|
|
@ -1079,7 +1085,7 @@ |
|
|
|
} |
|
|
|
}); |
|
|
|
}else if(this.activeName==='sub'){ |
|
|
|
searchNotifyMaterialListNew(this.currentRow).then(({data}) => { |
|
|
|
searchNotifyMaterialListNew(queryData).then(({data}) => { |
|
|
|
//区分请求成功和失败的状况 |
|
|
|
if (data && data.code == 0) { |
|
|
|
this.dataList3 = data.rows |
|
|
|
@ -1089,7 +1095,7 @@ |
|
|
|
} |
|
|
|
}); |
|
|
|
}else if(this.activeName==='change'){ |
|
|
|
searchNotifyLogNew(this.currentRow).then(({data}) => { |
|
|
|
searchNotifyLogNew(queryData).then(({data}) => { |
|
|
|
//区分请求成功和失败的状况 |
|
|
|
if (data && data.code == 0) { |
|
|
|
this.dataList5 = data.rows |
|
|
|
@ -1099,7 +1105,7 @@ |
|
|
|
} |
|
|
|
}); |
|
|
|
}else if(this.activeName==='close'){ |
|
|
|
searchNotifyLogCloseNew(this.currentRow).then(({data}) => { |
|
|
|
searchNotifyLogCloseNew(queryData).then(({data}) => { |
|
|
|
//区分请求成功和失败的状况 |
|
|
|
if (data && data.code == 0) { |
|
|
|
this.dataList6 = data.rows |
|
|
|
@ -1109,7 +1115,7 @@ |
|
|
|
} |
|
|
|
}); |
|
|
|
}else { |
|
|
|
searchSumNotifyMaterialListNew(this.currentRow).then(({data}) => { |
|
|
|
searchSumNotifyMaterialListNew(queryData).then(({data}) => { |
|
|
|
//区分请求成功和失败的状况 |
|
|
|
if (data && data.code == 0) { |
|
|
|
this.dataList4 = data.rows |
|
|
|
|