Browse Source

完善选择客户页面

zhanglei
yunuo970428 2 years ago
parent
commit
a9bf4beeba
  1. 18
      anrui-buscenter/anrui-buscenter-ui/src/views/chexingchaxun/modelinquire/relation/xuanzekehu.vue

18
anrui-buscenter/anrui-buscenter-ui/src/views/chexingchaxun/modelinquire/relation/xuanzekehu.vue

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

Loading…
Cancel
Save