|
@@ -759,6 +759,10 @@ export default {
|
|
|
{
|
|
|
value: '车牌号',
|
|
|
lable: '车牌号'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ value: '分录ID',
|
|
|
+ lable: '分录ID'
|
|
|
}
|
|
|
],
|
|
|
options1: [
|
|
@@ -1777,6 +1781,7 @@ export default {
|
|
|
let capacityNo = null
|
|
|
let remark = null
|
|
|
let saler = null
|
|
|
+ let easPrimaryId = null
|
|
|
if (this.startTime && this.endTime) {
|
|
|
startTime = sjTime(this.startTime)
|
|
|
endTime = sjTime(this.endTime)
|
|
@@ -1793,6 +1798,8 @@ export default {
|
|
|
carrierName = this.input
|
|
|
} else if (this.screen == '车牌号') {
|
|
|
capacityNo = this.input
|
|
|
+ } else if (this.screen == '分录ID') {
|
|
|
+ easPrimaryId = this.input
|
|
|
} else {
|
|
|
remark = this.input
|
|
|
}
|
|
@@ -1824,7 +1831,9 @@ export default {
|
|
|
'&capacityNo=' +
|
|
|
capacityNo +
|
|
|
'&saler=' +
|
|
|
- saler
|
|
|
+ saler +
|
|
|
+ '&easPrimaryId=' +
|
|
|
+ easPrimaryId
|
|
|
)
|
|
|
.then(res => {
|
|
|
this.tableData = res.data.data
|