|
|
@ -35,14 +35,14 @@ |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="车架号"> |
|
|
|
<el-input v-model="listQuery.params.certificationNo" placeholder="请输入车架号" clearable |
|
|
|
<el-input v-model="listQuery.params.vinNo" placeholder="请输入车架号" clearable |
|
|
|
class="filter-item"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="移交状态"> |
|
|
|
<el-select v-model="listQuery.params.certificateState" class="addinputw" clearable |
|
|
|
<el-select v-model="listQuery.params.transferStateKey" class="addinputw" clearable |
|
|
|
placeholder="请选择移交状态" |
|
|
|
style="width: 200px;"> |
|
|
|
<el-option v-for="item in Situation" :key="item.dictKey" :label="item.dictValue" |
|
|
|
<el-option v-for="item in transferState_list" :key="item.dictKey" :label="item.dictValue" |
|
|
|
:value="item.dictKey"/> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
@ -63,15 +63,20 @@ |
|
|
|
@selection-change="handleSelectionChange"> |
|
|
|
<el-table-column width="50px" type="selection" align="center"/> |
|
|
|
<el-table-column width="80px" fixed label="序号" type="index" :index="indexMethod" align="center"/> |
|
|
|
<el-table-column label="操作" fixed align="center" width="220px" class-name="small-padding fixed-width"> |
|
|
|
<template slot-scope="{row}"> |
|
|
|
<el-button size="mini" type="primary" @click="handleCheck(row)">查看</el-button> |
|
|
|
<el-button size="mini" type="primary" @click="cheLiangXiangXi(row)">车辆信息</el-button> |
|
|
|
<!-- <el-table-column label="操作" fixed align="center" width="220px" class-name="small-padding fixed-width">--> |
|
|
|
<!-- <template slot-scope="{row}">--> |
|
|
|
<!-- <el-button size="mini" type="primary" @click="handleCheck(row)">查看</el-button>--> |
|
|
|
<!-- <el-button size="mini" type="primary" @click="cheLiangXiangXi(row)">车辆信息</el-button>--> |
|
|
|
<!-- </template>--> |
|
|
|
<!-- </el-table-column>--> |
|
|
|
<el-table-column label="车架号" width="180px" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span class="bluezi" @click="cheLiangXiangXi(scope.row)">{{ scope.row.vinNo }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="合格证编号" width="180px" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.certificationNo }}</span> |
|
|
|
<span class="bluezi" @click="handleCheck(scope.row)">{{ scope.row.certificationNo }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="发证日期" width="140px" align="center"> |
|
|
@ -84,6 +89,11 @@ |
|
|
|
<span>{{ scope.row.certificateStateValue }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="移交状态" width="120px" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.transferStateValue }}</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="到证日期" width="140px" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ scope.row.toCardDate }}</span> |
|
|
@ -264,22 +274,25 @@ export default { |
|
|
|
certificateStartDate: '', |
|
|
|
certificateEndDate: '', |
|
|
|
certificateState: '', |
|
|
|
certificationNo: '' |
|
|
|
certificationNo: '', |
|
|
|
vinNo:'', |
|
|
|
transferStateKey:'' |
|
|
|
}, |
|
|
|
current: 1, |
|
|
|
size: 20 |
|
|
|
}, |
|
|
|
Situation: [], |
|
|
|
selectDate: undefined, |
|
|
|
temp: {}, // 添加和修改 |
|
|
|
templook: {}, // 查看实体 |
|
|
|
textMap: { |
|
|
|
update: '编辑', |
|
|
|
create: '创建' |
|
|
|
}, |
|
|
|
dialogFormVisible: false, // 添加修改对话框状态 |
|
|
|
dialogFormShowVisible: false, // 查看对话框默认关闭状态 |
|
|
|
dialogStatus: '', // 对话框状态 |
|
|
|
Situation: [], |
|
|
|
transferState_list: [], |
|
|
|
selectDate: undefined, |
|
|
|
temp: {}, // 添加和修改 |
|
|
|
templook: {}, // 查看实体 |
|
|
|
textMap: { |
|
|
|
update: '编辑', |
|
|
|
create: '创建' |
|
|
|
}, |
|
|
|
dialogFormVisible: false, // 添加修改对话框状态 |
|
|
|
dialogFormShowVisible: false, // 查看对话框默认关闭状态 |
|
|
|
dialogStatus: '', // 对话框状态 |
|
|
|
typeOptions: [], |
|
|
|
|
|
|
|
rules: { |
|
|
@ -382,6 +395,14 @@ export default { |
|
|
|
this.Situation = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
typeValues({ |
|
|
|
type: 'transferState' |
|
|
|
}).then((res) => { |
|
|
|
console.log(res) |
|
|
|
if (res.code === '200') { |
|
|
|
this.transferState_list = res.data |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
// 查询列表信息 |
|
|
|
getList() { |
|
|
@ -414,7 +435,9 @@ export default { |
|
|
|
certificateStartDate: '', |
|
|
|
certificateEndDate: '', |
|
|
|
certificateState: '', |
|
|
|
certificationNo: '' |
|
|
|
certificationNo: '', |
|
|
|
vinNo:'', |
|
|
|
transferStateKey:'' |
|
|
|
}, |
|
|
|
current: 1, |
|
|
|
size: 20 |
|
|
|