|
|
@ -304,6 +304,16 @@ |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="5"> |
|
|
|
<div class="span-sty"> |
|
|
|
<span>货箱内部长度</span> |
|
|
|
</div> |
|
|
|
<el-form-item prop="packingCase"> |
|
|
|
<el-select v-model="temp.packingCase" placeholder="请选择" filterable clearable class="addinputw" @change="changePackingCase"> |
|
|
|
<el-option v-for="item in packingCase_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictValue"/> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4"> |
|
|
|
<div class="span-sty"> |
|
|
|
<span>蓄电池</span> |
|
|
|
</div> |
|
|
@ -313,8 +323,6 @@ |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4"> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row> |
|
|
|
<el-col :span="24"> |
|
|
@ -326,6 +334,11 @@ |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row> |
|
|
|
<el-col :span="24"> |
|
|
|
<span style="margin-left: 10px;font-weight: bold" class="icon">注:因涉及报表数据推送,自卸、载货的配置请必选货箱内部长度。</span> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
</el-form> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -412,7 +425,6 @@ export default { |
|
|
|
isDel: '', // 是否可以删除(1是,0否) |
|
|
|
multimedia: '', // 多媒体(陕汽) |
|
|
|
otherConfig: '', // 其他配置 |
|
|
|
packingCase: '', // 货箱(重汽、欧曼) |
|
|
|
rearAxleRatio: '', // 后桥速比 |
|
|
|
rearAxleRatioKey: '', // 后桥速比key |
|
|
|
rearAxleKey: '', // 后桥key |
|
|
@ -456,7 +468,9 @@ export default { |
|
|
|
steerWheelKey: '', // 方向盘key |
|
|
|
steerWheelValue: '', // 方向盘value |
|
|
|
storagBatteryKey: '', // 蓄电池key |
|
|
|
storagBatteryValue: '' // 蓄电池value |
|
|
|
storagBatteryValue: '', // 蓄电池value |
|
|
|
packingCaseKey: '', // 货箱内部长度key |
|
|
|
packingCase: '' // 货箱内部长度value |
|
|
|
}, // 添加和修改 |
|
|
|
textMap: { |
|
|
|
update: '修改', |
|
|
@ -1232,14 +1246,16 @@ export default { |
|
|
|
.formaddcopy02 .el-row /deep/ .el-col { |
|
|
|
padding: 0 8px; |
|
|
|
} |
|
|
|
|
|
|
|
.span-sty { |
|
|
|
width: 90px !important; |
|
|
|
} |
|
|
|
.formaddcopy02 .el-row .el-col /deep/ .el-form-item .addinputw { |
|
|
|
margin-left: 65px; |
|
|
|
width: calc(100% - 70px); |
|
|
|
margin-left: 85px; |
|
|
|
width: calc(100% - 90px); |
|
|
|
} |
|
|
|
|
|
|
|
.formaddcopy02 .el-row .el-col /deep/ .el-form-item .addinputwTwo { |
|
|
|
width: calc(100% - 70px); |
|
|
|
width: calc(100% - 90px); |
|
|
|
} |
|
|
|
</style> |
|
|
|
|
|
|
|