|
@@ -56,7 +56,7 @@ export default {
|
|
|
query: {
|
|
|
startTime: this.FormData.beginDate,
|
|
|
endTime: this.FormData.endDate,
|
|
|
- destination: row.flightLine,
|
|
|
+ destination: row.flightLine == '合计' ? '' : row.flightLine,
|
|
|
agentCode: this.FormData.proxyId,
|
|
|
riskRating: '',
|
|
|
openResult: '',
|
|
@@ -79,7 +79,7 @@ export default {
|
|
|
query: {
|
|
|
startTime: this.FormData.beginDate,
|
|
|
endTime: this.FormData.endDate,
|
|
|
- destination: row.flightLine,
|
|
|
+ destination: row.flightLine == '合计' ? '' : row.flightLine,
|
|
|
agentCode: this.FormData.proxyId,
|
|
|
openResult: '',
|
|
|
riskRating: '普通',
|
|
@@ -109,7 +109,7 @@ export default {
|
|
|
query: {
|
|
|
startTime: this.FormData.beginDate,
|
|
|
endTime: this.FormData.endDate,
|
|
|
- destination: row.flightLine,
|
|
|
+ destination: row.flightLine == '合计' ? '' : row.flightLine,
|
|
|
agentCode: this.FormData.proxyId,
|
|
|
openResult: '',
|
|
|
riskRating: '严控',
|
|
@@ -141,7 +141,7 @@ export default {
|
|
|
query: {
|
|
|
startTime: this.FormData.beginDate,
|
|
|
endTime: this.FormData.endDate,
|
|
|
- destination: row.flightLine,
|
|
|
+ destination: row.flightLine == '合计' ? '' : row.flightLine,
|
|
|
agentCode: this.FormData.proxyId,
|
|
|
openResult: '',
|
|
|
riskRating: '低风险',
|
|
@@ -174,7 +174,7 @@ export default {
|
|
|
query: {
|
|
|
startTime: this.FormData.beginDate,
|
|
|
endTime: this.FormData.endDate,
|
|
|
- destination: row.flightLine,
|
|
|
+ destination: row.flightLine == '合计' ? '' : row.flightLine,
|
|
|
agentCode: this.FormData.proxyId,
|
|
|
openResult: '',
|
|
|
riskRating: '优先',
|
|
@@ -207,7 +207,7 @@ export default {
|
|
|
query: {
|
|
|
startTime: this.FormData.beginDate,
|
|
|
endTime: this.FormData.endDate,
|
|
|
- destination: row.flightLine,
|
|
|
+ destination: row.flightLine == '合计' ? '' : row.flightLine,
|
|
|
agentCode: this.FormData.proxyId,
|
|
|
openResult: '',
|
|
|
riskRating: '高风险',
|