|
@@ -125,6 +125,7 @@ export default {
|
|
|
},
|
|
|
],
|
|
|
FormData: {
|
|
|
+ waybillNo:"",//运单号
|
|
|
destination: "", // 目的站
|
|
|
agentCode: "", // 代理人ID
|
|
|
agentLevel: "", // 代理人信用等级 A\B\C\D
|
|
@@ -141,8 +142,9 @@ export default {
|
|
|
},
|
|
|
created(){
|
|
|
let queryData = this.$route.query;
|
|
|
- const { destination, agentCode,agentLevel,riskRating,startTime,endTime,openResult,riskClassification } = queryData;
|
|
|
+ const {waybillNo, destination, agentCode,agentLevel,riskRating,startTime,endTime,openResult,riskClassification } = queryData;
|
|
|
this.FormData = {
|
|
|
+ waybillNo:waybillNo,
|
|
|
destination:destination,
|
|
|
agentCode:agentCode,
|
|
|
agentLevel:agentLevel,
|
|
@@ -165,7 +167,8 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
searchHandler(arr) {
|
|
|
- console.log(arr);
|
|
|
+ this.FormData.waybillNo = arr[0]
|
|
|
+ this.getData()
|
|
|
},
|
|
|
setTableHeight() {
|
|
|
const topBarHeight = 80;
|