|
|
@ -61,6 +61,19 @@ |
|
|
|
<el-form-item label="车型:" class="searchlist"> |
|
|
|
<el-input v-model="listQuery.params.vehicleAlias" placeholder="" clearable style="width: 150px"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="车架号:" class="searchlist"> |
|
|
|
<el-input v-model="listQuery.params.vinNo" placeholder="" clearable style="width: 150px"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="销售日期"> |
|
|
|
<el-date-picker v-model="listQuery.params.salesDateStart" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/> |
|
|
|
<span style="padding: 0 8px">至</span> |
|
|
|
<el-date-picker v-model="listQuery.params.salesDateEnd" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="买断日期"> |
|
|
|
<el-date-picker v-model="listQuery.params.solidDateStart" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/> |
|
|
|
<span style="padding: 0 8px">至</span> |
|
|
|
<el-date-picker v-model="listQuery.params.solidDateEnd" type="date" clearable value-format="yyyy-MM-dd" placeholder="选择日期"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="快捷检索:" class="searchlist"> |
|
|
|
<el-input v-model="listQuery.params.modelName" placeholder="" clearable style="width: 150px"/> |
|
|
|
</el-form-item> |
|
|
@ -154,6 +167,11 @@ export default { |
|
|
|
vehicleVersion: '', |
|
|
|
userSid: '', |
|
|
|
buyerOrgSid: '', |
|
|
|
vinNo: '', |
|
|
|
salesDateStart: '', |
|
|
|
salesDateEnd: '', |
|
|
|
solidDateStart: '', |
|
|
|
solidDateEnd: '', |
|
|
|
vinNoList: [] |
|
|
|
}, |
|
|
|
total: 1 |
|
|
@ -196,37 +214,37 @@ export default { |
|
|
|
} |
|
|
|
}) |
|
|
|
typeValues({ type: 'productLine' }).then((res) => { |
|
|
|
if (res.code === '200') { |
|
|
|
if (res.success) { |
|
|
|
this.productLine_list = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
typeValues({ type: 'driver' }).then((res) => { |
|
|
|
if (res.code === '200') { |
|
|
|
if (res.success) { |
|
|
|
this.driveForm_list = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
typeValues({ type: 'horsepower' }).then((res) => { |
|
|
|
if (res.code === '200') { |
|
|
|
if (res.success) { |
|
|
|
this.power_list = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
typeValues({ type: 'vehicleVersion' }).then((res) => { |
|
|
|
if (res.code === '200') { |
|
|
|
if (res.success) { |
|
|
|
this.vehicleVersion_list = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
typeValues({ type: 'fuelType' }).then((res) => { |
|
|
|
if (res.code === '200') { |
|
|
|
if (res.success) { |
|
|
|
this.fuelType_list = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
typeValues({ type: 'gearbox' }).then((res) => { |
|
|
|
if (res.code === '200') { |
|
|
|
if (res.success) { |
|
|
|
this.gearboxType_list = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
typeValues({ type: 'emissionStandard' }).then((res) => { |
|
|
|
if (res.code === '200') { |
|
|
|
if (res.success) { |
|
|
|
this.emissionStandard_list = res.data |
|
|
|
} |
|
|
|
}) |
|
|
@ -276,6 +294,11 @@ export default { |
|
|
|
vehicleType: '', |
|
|
|
vehicleVersion: '', |
|
|
|
userSid: '', |
|
|
|
vinNo: '', |
|
|
|
salesDateStart: '', |
|
|
|
salesDateEnd: '', |
|
|
|
solidDateStart: '', |
|
|
|
solidDateEnd: '', |
|
|
|
vinNoList: [] |
|
|
|
}, |
|
|
|
total: 0 |
|
|
|