|
|
@ -7,10 +7,13 @@ |
|
|
|
<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-form ref="listQueryform" :inline="true" :model="listQuery" class="tab-header"> |
|
|
|
<el-form-item label="车架号"> |
|
|
|
<el-input v-model="listQuery.params.vinNo" placeholder="请输入车架号" clearable/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="车型(简述配置)"> |
|
|
|
<el-input v-model="listQuery.params.modelName" placeholder="" clearable/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="销售类型"> |
|
|
|
<el-select v-model="listQuery.params.typeKey" placeholder="" filterable> |
|
|
|
<el-option v-for="item in payType_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey"/> |
|
|
@ -49,6 +52,11 @@ |
|
|
|
<el-form-item label="内部编码"> |
|
|
|
<el-input v-model="listQuery.params.insideCode" placeholder="" clearable/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="业务状态"> |
|
|
|
<el-select v-model="listQuery.params.isDelete" filterable class="addinputw" placeholder=""> |
|
|
|
<el-option v-for="item in state_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey"/> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
<div class="btn" style="text-align: center;"> |
|
|
|
<el-button type="primary" icon="el-icon-search" @click="handleFilter" size="small">查询</el-button> |
|
|
@ -105,6 +113,11 @@ |
|
|
|
<span>{{ scope.row.vinNo }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="业务状态" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.isDelete }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="销售部门" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.orgName }}</span> |
|
|
@ -255,7 +268,7 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import {listPage, createPdfNew, exportExcelNew, ctxsckd } from '@/api/cheliang/cheliangxiaoshou' |
|
|
|
import { listPage, createPdfNew, exportExcelNew, ctxsckd } from '@/api/cheliang/cheliangxiaoshou' |
|
|
|
import Pagination from '@/components/pagination' |
|
|
|
import pageye from '@/components/pagination/pageye' |
|
|
|
import ButtonBar from '@/components/ButtonBar' |
|
|
@ -310,6 +323,16 @@ export default { |
|
|
|
tableKey: 0, |
|
|
|
sids: [], |
|
|
|
list: [], |
|
|
|
state_list: [ |
|
|
|
{ |
|
|
|
dictKey: '0', |
|
|
|
dictValue: '正常' |
|
|
|
}, |
|
|
|
{ |
|
|
|
dictKey: '1', |
|
|
|
dictValue: '作废' |
|
|
|
} |
|
|
|
], |
|
|
|
org_list: [], |
|
|
|
userOrg_list: [], |
|
|
|
staff_list: [], |
|
|
@ -329,7 +352,9 @@ export default { |
|
|
|
staffSid: '', |
|
|
|
orgSidPath: '', |
|
|
|
orgSid: '', |
|
|
|
insideCode: '' |
|
|
|
insideCode: '', |
|
|
|
isDelete: '', |
|
|
|
modelName: '' |
|
|
|
}, |
|
|
|
current: 1, |
|
|
|
size: 5, |
|
|
@ -453,7 +478,9 @@ export default { |
|
|
|
staffSid: '', |
|
|
|
orgSidPath: '', |
|
|
|
orgSid: '', |
|
|
|
insideCode: '' |
|
|
|
insideCode: '', |
|
|
|
isDelete: '', |
|
|
|
modelName: '' |
|
|
|
}, |
|
|
|
current: 1, |
|
|
|
size: 5, |
|
|
|