|
|
@ -114,6 +114,11 @@ |
|
|
|
<el-form-item label="常用配置名称"> |
|
|
|
<el-input v-model="listQuery.params.configName" maxlength="125" placeholder="请输入常用配置名称" class="addinputw" clearable/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="所属分公司"> |
|
|
|
<el-select v-model="listQuery.params.orgSid" class="addinputw" clearable placeholder=""> |
|
|
|
<el-option v-for="item in org_list" :key="item.sid" :label="item.name" :value="item.sid"/> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
<div class="btn" style="text-align: center;"> |
|
|
|
<el-button type="primary" icon="el-icon-search" size="small" @click="handleFilter">查询</el-button> |
|
|
@ -264,6 +269,7 @@ import Pagination from '@/components/pagination' |
|
|
|
import pageye from '@/components/pagination/pageye' |
|
|
|
import changyongpeizhiAdd from '../../chexingpeizhi/changyongpeizhiAdd' |
|
|
|
import ChangyongpeizhiInfo from '@/views/cheliang/chexingpeizhi/changyongpeizhiInfo' |
|
|
|
import { getListOrg } from '@/api/cheliang/dictcommons' |
|
|
|
|
|
|
|
export default { |
|
|
|
name: 'changyongpeizhiguanlian', |
|
|
@ -307,7 +313,8 @@ export default { |
|
|
|
tireCoverKey: '', |
|
|
|
tireSizeKey: '', |
|
|
|
useOrgSid: '', |
|
|
|
wheelbaseKey: '' |
|
|
|
wheelbaseKey: '', |
|
|
|
orgSid: '' |
|
|
|
}, |
|
|
|
current: 1, |
|
|
|
size: 10, |
|
|
@ -320,6 +327,7 @@ export default { |
|
|
|
configurationItemsSids: [], |
|
|
|
sids: [], |
|
|
|
chesid: '', |
|
|
|
org_list: [], |
|
|
|
carColor_list: [], // 车身颜色 |
|
|
|
slowMachine_list: [], // 缓速器 |
|
|
|
rearViewMirror_list: [], // 后视镜 |
|
|
@ -353,6 +361,11 @@ export default { |
|
|
|
} |
|
|
|
}, |
|
|
|
getType() { |
|
|
|
getListOrg().then((res) => { |
|
|
|
if (res.success) { |
|
|
|
this.org_list = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
// 下拉框-车身颜色 |
|
|
|
pullDown({ |
|
|
|
type: 'bodyColor' |
|
|
@ -622,7 +635,8 @@ export default { |
|
|
|
tireCoverKey: '', |
|
|
|
tireSizeKey: '', |
|
|
|
useOrgSid: '', |
|
|
|
wheelbaseKey: '' |
|
|
|
wheelbaseKey: '', |
|
|
|
orgSid: '' |
|
|
|
}, |
|
|
|
current: 1, |
|
|
|
size: 10, |
|
|
|