|
@@ -67,7 +67,11 @@
|
|
|
</template>
|
|
|
<template v-if="withSelect">
|
|
|
<a-form-item prop="selection" style="margin-right: 16px">
|
|
|
- <a-select :placeholder="selectPlaceholder" @change="handleChange">
|
|
|
+ <a-select
|
|
|
+ :placeholder="selectPlaceholder"
|
|
|
+ :value="formData.selection ? formData.selection : undefined"
|
|
|
+ @change="handleChange"
|
|
|
+ >
|
|
|
<a-select-option
|
|
|
v-for="item in optionLists"
|
|
|
:key="item.name"
|
|
@@ -339,16 +343,27 @@ export default {
|
|
|
if (Object.keys(this.$route.query).length == 0) {
|
|
|
this.formData.dateRangeRadio = "当日";
|
|
|
} else {
|
|
|
+ console.log(this.$route.query);
|
|
|
this.formData.beginDate = this.$route.query.startTime;
|
|
|
this.formData.endDate = this.$route.query.endTime;
|
|
|
- this.formData.selection = this.$route.query.levelId;
|
|
|
- this.formData.searchText = this.$route.query.proxyId;
|
|
|
- this.formData.agentLevel = this.$route.query.agentLevel;
|
|
|
- this.formData.agentCode = this.$route.query.agentCode;
|
|
|
+ // this.formData.selection = this.$route.query.levelId
|
|
|
+ // ? this.$route.query.levelId
|
|
|
+ // : this.$route.query.agentLevel;
|
|
|
+ this.formData.selection = this.$route.query.destination
|
|
|
+ ? this.$route.query.destination
|
|
|
+ : this.$route.query.levelId
|
|
|
+ ? this.$route.query.levelId
|
|
|
+ : this.$route.query.agentLevel;
|
|
|
+ this.formData.searchText = this.$route.query.proxyId
|
|
|
+ ? this.$route.query.proxyId
|
|
|
+ : this.$route.query.agentCode;
|
|
|
+ // this.formData.agentLevel = this.$route.query.agentLevel;
|
|
|
+ // this.formData.agentCode = this.$route.query.agentCode;
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
handleChange(data) {
|
|
|
+ console.log(data);
|
|
|
this.formData.selection = data;
|
|
|
},
|
|
|
change() {
|