|
|
@ -35,19 +35,42 @@ |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row class="yancheAdd-bor"> |
|
|
|
<el-col :span="12" class="yancheAdd-bor"> |
|
|
|
<el-col :span="24" class="yancheAdd-bor"> |
|
|
|
<el-form-item prop="config" label="配置:"> |
|
|
|
<el-input |
|
|
|
v-model="temp.config" |
|
|
|
type="textarea" |
|
|
|
autosize |
|
|
|
placeholder="请输入配置" |
|
|
|
class="addinputw" |
|
|
|
class="addinputw addinputw_copy" |
|
|
|
readonly/> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row class="yancheAdd-bor"> |
|
|
|
<el-col :span="24" class="yancheAdd-bor"> |
|
|
|
<el-form-item prop="modelDifferenceExplain" label="车型配置差异说明:"> |
|
|
|
<el-input |
|
|
|
v-model="temp.modelDifferenceExplain" |
|
|
|
type="textarea" |
|
|
|
autosize |
|
|
|
placeholder="请输入车型配置差异说明" |
|
|
|
class="addinputw addinputw_copy"/> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
<el-row> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item prop="guaranteeCardNo" label="保修卡号:"> |
|
|
|
<el-input |
|
|
|
v-model="temp.guaranteeCardNo" |
|
|
|
placeholder="请输入保修卡号" |
|
|
|
class="addinputw" |
|
|
|
clearable |
|
|
|
@keyup.native="temp.guaranteeCardNo = oninput(temp.guaranteeCardNo,2)" |
|
|
|
/> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12"> |
|
|
|
<el-form-item prop="price" label="洗车费:"> |
|
|
|
<el-input |
|
|
@ -122,7 +145,9 @@ export default { |
|
|
|
vin: '', |
|
|
|
config: '', |
|
|
|
model: '', |
|
|
|
inspectedSid: '' |
|
|
|
inspectedSid: '', |
|
|
|
modelDifferenceExplain:'', |
|
|
|
guaranteeCardNo:'' |
|
|
|
}, // 添加和修改 |
|
|
|
dialogFormVisible: false, // 添加修改对话框状态 |
|
|
|
dialogFormShowVisible: false, // 查看对话框默认关闭状态 |
|
|
@ -276,7 +301,9 @@ export default { |
|
|
|
vin: '', |
|
|
|
config: '', |
|
|
|
model: '', |
|
|
|
inspectedSid: '' |
|
|
|
inspectedSid: '', |
|
|
|
modelDifferenceExplain:'', |
|
|
|
guaranteeCardNo:'' |
|
|
|
} |
|
|
|
this.imgList01 = [] |
|
|
|
this.imgList02 = [] |
|
|
@ -407,4 +434,7 @@ export default { |
|
|
|
line-height: 40px !important; |
|
|
|
font-weight: 600; |
|
|
|
} |
|
|
|
.addinputw_copy{ |
|
|
|
width: 92% !important; |
|
|
|
} |
|
|
|
</style> |
|
|
|