张雄 3 years ago
parent 25e6be8212
commit d9d9ce63d4

@ -28,7 +28,7 @@
</vue-scroll>
</div>
</a-select>
<a-select class="choose-series" v-model="chosenSeries" placeholder="请选择车型" @change="onSeries" allowClear>
<a-select class="choose-series" :disabled="isLoading" v-model="chosenSeries" placeholder="请选择车型" @change="onSeries" allowClear>
<a-select-option v-for="(item,index) in seriesList" :value="item.name" :key="index">
{{item.name}}
</a-select-option>
@ -99,6 +99,7 @@ export default {
},
data() {
return {
isLoading: false,
dd: false, //
form: {
token: '',

@ -38,12 +38,14 @@ export default {
},
//选择品牌
onBrand(val) {
this.isLoding = true;
this.chosenBrand = val;
let o = {token: this.getToken, sBrandName: this.chosenBrand};
getUserSeriesName(o).then(res => {
let data = res.data;
this.seriesList = data;
this.chosenSeries = undefined
this.chosenSeries = undefined;
this.isLoding = false
})
},
//选择车型

@ -236,7 +236,7 @@ export default {
sTimeType: this.form.sTimeType,
sStartTime: this.form.sStartTime,
sEndTime: this.form.sEndTime,
sQuDao: this.form.sTimeType,
sQuDao: this.form.sQuDao,
sQingGan: this.form.sQingGan,
sTitle: this.form.sTitle,
sTitleType: this.form.sTitleType,

Loading…
Cancel
Save