|
|
@ -1,17 +1,22 @@ |
|
|
|
<template> |
|
|
|
<div class="app-container"> |
|
|
|
<div v-show="viewState == 1"> |
|
|
|
<div class="tab-header webtop"> |
|
|
|
<div style="text-align: right; width: 100%"> |
|
|
|
<el-button type="info" size="small" @click="handleReturn()">返回上一级</el-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="webcon"> |
|
|
|
<div class="searchcon"> |
|
|
|
<el-button size="small" class="searchbtn" @click="clicksearchShow">{{ searchxianshitit }}</el-button> |
|
|
|
<div v-show="isSearchShow" class="search"> |
|
|
|
<el-form ref="listQueryform" :inline="true" :model="listQuery" label-width="100px" class="tab-header"> |
|
|
|
<el-row> |
|
|
|
<el-form-item label="品牌:" class="searchlist"> |
|
|
|
<!-- <el-form-item label="品牌:" class="searchlist"> |
|
|
|
<el-select v-model="listQuery.params.carBrand" placeholder="请选择" filterable clearable> |
|
|
|
<el-option v-for="item in carBrand_list" :key="item.sid" :label="item.brandName" :value="item.brandName"/> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-form-item>--> |
|
|
|
<el-form-item label="功能:" class="searchlist"> |
|
|
|
<el-select v-model="listQuery.params.vehicleType" placeholder="请选择" filterable clearable> |
|
|
|
<el-option v-for="item in vehicleType_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey"/> |
|
|
@ -233,6 +238,9 @@ export default { |
|
|
|
// 加载列表 |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
handleReturn() { |
|
|
|
this.$emit('doback') |
|
|
|
}, |
|
|
|
showChexing(){ |
|
|
|
this.init() |
|
|
|
this.Dictionary() |
|
|
@ -262,11 +270,11 @@ export default { |
|
|
|
// ----------功能打开结束-------- |
|
|
|
// 数组字典加载 |
|
|
|
Dictionary() { |
|
|
|
brandDown().then((res) => { |
|
|
|
/* brandDown().then((res) => { |
|
|
|
if (res.code === '200') { |
|
|
|
this.carBrand_list = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
})*/ |
|
|
|
dataDictionary({ type: 'vehicleFunction' }).then((res) => { |
|
|
|
if (res.code === '200') { |
|
|
|
this.vehicleType_list = res.data |
|
|
|