|
|
@ -47,29 +47,29 @@ |
|
|
|
</el-button> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="整车外观尺寸" align="center"> |
|
|
|
<el-table-column label="整车外观尺寸(长*宽*高(mm))" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input v-model="scope.row.vehAppeSize" clearable placeholder="" class="addinputw"></el-input> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="准牵引总质量" align="center"> |
|
|
|
<el-table-column label="准牵引总质量(Kg)" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input v-model="scope.row.accTowTotalMass" clearable placeholder="" class="addinputw"></el-input> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="整备质量" align="center"> |
|
|
|
<el-table-column label="整备质量(Kg)" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input v-model="scope.row.preparationMass" clearable placeholder="" class="addinputw"></el-input> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="悬架" align="center"> |
|
|
|
<el-table-column label="悬架" align="center" width="200"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-select v-model="scope.row.plateReedNumValue" placeholder="请选择" class="addinputw" @change="changePlateReedNum($event, scope.row)"> |
|
|
|
<el-option v-for="item in plateReedNum_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictValue"/> |
|
|
|
</el-select> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="轮胎" align="center"> |
|
|
|
<el-table-column label="轮胎" align="center" width="200"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-select v-model="scope.row.tyreValue" placeholder="请选择" class="addinputw" @change="changeTyre($event, scope.row)"> |
|
|
|
<el-option v-for="item in tyre_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictValue"/> |
|
|
@ -139,6 +139,7 @@ export default { |
|
|
|
this.viewTitle = '【新增】公告型号' |
|
|
|
}, |
|
|
|
showEdit(row) { |
|
|
|
this.init() |
|
|
|
this.$nextTick(() => { |
|
|
|
this.$refs['form_obj'].clearValidate() |
|
|
|
}) |
|
|
|