张雄 3 years ago
parent 25e6be8212
commit d9d9ce63d4

@ -28,7 +28,7 @@
</vue-scroll> </vue-scroll>
</div> </div>
</a-select> </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"> <a-select-option v-for="(item,index) in seriesList" :value="item.name" :key="index">
{{item.name}} {{item.name}}
</a-select-option> </a-select-option>
@ -99,6 +99,7 @@ export default {
}, },
data() { data() {
return { return {
isLoading: false,
dd: false, // dd: false, //
form: { form: {
token: '', token: '',

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

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

Loading…
Cancel
Save