张雄 3 years ago
parent 0de76e2404
commit 0ffd5117f3

@ -5,10 +5,10 @@
</v-label-div> </v-label-div>
<div class="d2"> <div class="d2">
<v-tab-group :value="tValue" :style="{ background: 'transparent' }" :btns="btnTimes" @change="handlerTime"></v-tab-group> <v-tab-group :value="tValue" :style="{ background: 'transparent' }" :btns="btnTimes" @change="handlerTime"></v-tab-group>
<a-select class="choose-brand" v-model="form.sBrand" placeholder="请选择品牌" @dropdownVisibleChange="brandDrawer" :dropdownMatchSelectWidth="false" allowClear> <a-select class="choose-series" v-model="form.sBrand" placeholder="请选择品牌" @dropdownVisibleChange="brandDrawer" :dropdownMatchSelectWidth="false" allowClear>
<div slot="dropdownRender"></div> <div slot="dropdownRender"></div>
</a-select> </a-select>
<a-select class="choose-brand" v-model="form.sSeriesName" placeholder="请选择车型" allowClear> <a-select class="choose-series" v-model="form.sSeriesName" placeholder="请选择车型" 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>
@ -19,7 +19,7 @@
</a-select-option> </a-select-option>
</a-select> </a-select>
<a-month-picker style="width: 160px;margin-left:20px" v-model="selTime[0]" :disabled-date="disabledDate" valueFormat="YYYY-MM" placeholder="请选择开始日期"></a-month-picker> <a-month-picker style="width: 160px;margin-left:20px" v-model="selTime[0]" :disabled-date="disabledDate" valueFormat="YYYY-MM" placeholder="请选择开始日期"></a-month-picker>
<a-month-picker style="width: 160px;margin-left:40px" v-model="selTime[1]" :disabled-date="disabledDate" valueFormat="YYYY-MM" placeholder="请选择结束日期"></a-month-picker> <a-month-picker style="width: 160px;margin-left:20px" v-model="selTime[1]" :disabled-date="disabledDate" valueFormat="YYYY-MM" placeholder="请选择结束日期"></a-month-picker>
<a-button @click="onSearch" style="margin-left: 40px" type="primary">查询</a-button> <a-button @click="onSearch" style="margin-left: 40px" type="primary">查询</a-button>
</div> </div>
<div class="d3"> <div class="d3">
@ -197,9 +197,9 @@ export default {
.choose-brand { .choose-brand {
width: 150px; width: 150px;
margin-left: 16px;
} }
.choose-series { .choose-series {
width: 150px; width: 150px;
margin-right: 16px;
} }
</style> </style>

@ -63,6 +63,21 @@ export default {
//切换类型 //切换类型
handlerTime(activeIndex) { handlerTime(activeIndex) {
this.activeIndex = activeIndex this.activeIndex = activeIndex
if(this.activeIndex == 0) {
getSalesType1(this.form).then(res => {
let data = res.data;
this.pagination.total = res.totalNum
this.tbData = data
this.tableLoad = false;
});
} else {
getSalesType0(this.form).then(res => {
let data = res.data;
this.pagination2.total = res.totalNum
this.tbData2 = data;
this.tableLoad = false;
})
}
}, },
//返回 //返回
goBack() { goBack() {
@ -76,18 +91,20 @@ export default {
this.tableLoad = true; this.tableLoad = true;
this.form.sStartTime = this.selTime[0]; this.form.sStartTime = this.selTime[0];
this.form.sEndTime = this.selTime[1]; this.form.sEndTime = this.selTime[1];
getSalesType1(this.form).then(res => { if(this.activeIndex == 0) {
let data = res.data; getSalesType1(this.form).then(res => {
this.pagination.total = res.totalNum let data = res.data;
this.tbData = data this.pagination.total = res.totalNum
this.tableLoad = false; this.tbData = data
}); });
getSalesType0(this.form).then(res => { } else {
let data = res.data; getSalesType0(this.form).then(res => {
this.pagination2.total = res.totalNum let data = res.data;
this.tbData2 = data; this.pagination2.total = res.totalNum
this.tableLoad = false; this.tbData2 = data;
}) })
}
this.tableLoad = false;
}, },
//点击明细 //点击明细
onSalePro(record) { onSalePro(record) {
@ -98,7 +115,8 @@ export default {
sEndTime: this.form.sEndTime, sEndTime: this.form.sEndTime,
sBrandType: this.form.sBrandType, sBrandType: this.form.sBrandType,
iPageIndex: 1, iPageIndex: 1,
sProv: record.key sProv: record.key,
sBrand: this.form.sBrand
} }
let o = { let o = {
sBrand: this.form.sBrand, sBrand: this.form.sBrand,
@ -126,7 +144,8 @@ export default {
sEndTime: this.form.sEndTime, sEndTime: this.form.sEndTime,
sBrandType: this.form.sBrandType, sBrandType: this.form.sBrandType,
iPageIndex: 1, iPageIndex: 1,
sCity: record.key sCity: record.key,
sBrand: this.form.sBrand
} }
getSalesType6(obj).then(res => { getSalesType6(obj).then(res => {
let data = res.data; let data = res.data;

Loading…
Cancel
Save