|
|
@ -8,20 +8,19 @@ |
|
|
|
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="webcon"> |
|
|
|
<div class="main-content"> |
|
|
|
<div class="searchcon"> |
|
|
|
<div v-show="isSearchShow" class="search"> |
|
|
|
<el-form ref="listQueryform" :inline="true" :model="listQuery" label-width="130px" class="tab-header"> |
|
|
|
<el-form-item label="客户姓名"> |
|
|
|
<el-input v-model="listQuery.params.name" placeholder="请输入" clearable class="filter-item"/> |
|
|
|
</el-form-item> |
|
|
|
<div class="searchbtns"> |
|
|
|
<el-button type="primary" @click="handleFilter">查询</el-button> |
|
|
|
</div> |
|
|
|
</el-form> |
|
|
|
<div class="btn" style="text-align: center;"> |
|
|
|
<el-button type="primary" icon="el-icon-search" size="small" @click="handleFilter">查询</el-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<!-- <pageye v-show="list.length > 0" :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size" class="pagination" @pagination="getList"/>--> |
|
|
|
<div class=""> |
|
|
|
<el-table :key="tableKey" v-loading="listLoading" :data="list" border style="width: 100%" @selection-change="handleSelectionChange"> |
|
|
|
<el-table-column width="80px" label="序号" type="index" :index="indexMethod" align="center"/> |
|
|
@ -96,15 +95,13 @@ |
|
|
|
|
|
|
|
<script> |
|
|
|
import Pagination from '@/components/pagination' |
|
|
|
import pageye from '@/components/pagination/pageye' |
|
|
|
import { pagerList, typeValues } from '@/api/jichuxinxi/busdepositvehicle' |
|
|
|
import xuanzekehuAdd from './xuanzekehuAdd.vue' |
|
|
|
|
|
|
|
export default { |
|
|
|
name: 'xuanzekehu', |
|
|
|
name: 'XuanZeKeHu', |
|
|
|
components: { |
|
|
|
Pagination, |
|
|
|
pageye, |
|
|
|
xuanzekehuAdd |
|
|
|
}, |
|
|
|
data() { |
|
|
@ -192,7 +189,7 @@ export default { |
|
|
|
let bb = null |
|
|
|
this.customertype_list.forEach((e) => { |
|
|
|
if (e.dictValue === value) { |
|
|
|
bb= { |
|
|
|
bb = { |
|
|
|
value: e.dictValue, |
|
|
|
key: e.dictKey, |
|
|
|
sid: e.sid |
|
|
@ -263,7 +260,4 @@ export default { |
|
|
|
</script> |
|
|
|
|
|
|
|
<style scoped> |
|
|
|
.searchcon { |
|
|
|
margin-top: 8px; |
|
|
|
} |
|
|
|
</style> |
|
|
|