|
|
@ -50,7 +50,9 @@ |
|
|
|
<el-input v-model="listQuery.params.loanName" placeholder="" clearable/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="是否带挂车"> |
|
|
|
<el-input v-model="listQuery.params.tralier" placeholder="" clearable/> |
|
|
|
<el-select v-model="listQuery.params.tralier" placeholder="请选择" clearable filterable> |
|
|
|
<el-option v-for="item in tralier_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictValue"></el-option> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
<div class="btn" style="text-align: center;"> |
|
|
@ -171,7 +173,7 @@ |
|
|
|
<iframe frameborder="0" id="iframe" style="width:100%;" scrolling="no" :src="this.centerDialogVisible === true ? url :''"></iframe> |
|
|
|
</el-dialog> |
|
|
|
<!-- 选择车辆 --> |
|
|
|
<el-dialog title="可处置车辆列表" :visible.sync="carVisible" width="80%"> |
|
|
|
<el-dialog title="可入库车辆列表" :visible.sync="carVisible" width="80%"> |
|
|
|
<div> |
|
|
|
<el-form ref="multipleTable" :inline="true" :model="carList" class="vinNoForm" label-width="100px"> |
|
|
|
<el-form-item label="车架号"> |
|
|
@ -261,6 +263,16 @@ export default { |
|
|
|
tableKey: 0, |
|
|
|
list: [], |
|
|
|
sids: [], // 用于导出的时候保存已选择的SIDs |
|
|
|
tralier_list: [ |
|
|
|
{ |
|
|
|
dictKey: '0', |
|
|
|
dictValue: '是' |
|
|
|
}, |
|
|
|
{ |
|
|
|
dictKey: '1', |
|
|
|
dictValue: '否' |
|
|
|
} |
|
|
|
], |
|
|
|
FormLoading: false, |
|
|
|
listLoading: false, |
|
|
|
// 翻页 |
|
|
@ -420,8 +432,6 @@ export default { |
|
|
|
createByName: '', |
|
|
|
createEndTime: '', |
|
|
|
createStartTime: '', |
|
|
|
createDateEnd: '', |
|
|
|
createDateStart: '', |
|
|
|
deptName: '', |
|
|
|
menuUrl: '', |
|
|
|
orgPath: '', |
|
|
|