|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<el-dialog :lock-scroll="false" :title="title" :visible.sync="visible" width="700px" :before-close="handleClose" :top="top" :show-close=false>
|
|
|
<el-form :model="emailForm" :rules="rules" ref="ruleForm">
|
|
|
- <el-form-item v-for="(item) in comEnquiryConfig" :key="item.prop" :label="item.prop" :label-width="labelWidth+'px'" :prop="item.prop"
|
|
|
+ <el-form-item v-for="(item) in comEnquiryConfig" :key="item.prop" :label="item.prop" :label-width="labelWidth" :prop="item.prop"
|
|
|
:style="{ marginBottom: marginBottom+'px' }">
|
|
|
<span v-if="item.type === 'text'">{{ emailForm[item.prop] }}</span>
|
|
|
<el-input v-if="item.type === 'input'" v-model="emailForm[item.prop]" :type="item.type" clearable ></el-input>
|
|
@@ -142,4 +142,4 @@ button {
|
|
|
background-color: #013269;
|
|
|
}
|
|
|
}
|
|
|
-</style>
|
|
|
+</style>
|