Переглянути джерело

change: 处理商品详情页控制台报错.

peter 6 місяців тому
батько
коміт
cba1fda287
2 змінених файлів з 4 додано та 4 видалено
  1. 2 2
      components/FormDialog.vue
  2. 2 2
      components/product/ProductRight.vue

+ 2 - 2
components/FormDialog.vue

@@ -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>

+ 2 - 2
components/product/ProductRight.vue

@@ -334,8 +334,8 @@
           title="网页产品问题反馈"
           sendbtnCext="提交"
           cancelbtnCext="取消"
-          labelWidth=90
-          marginBottom=0
+          :labelWidth="90"
+          :marginBottom="0"
           :emailForm="ticketForm"
           :enquiryConfig="ticketConfig"
           :visible.sync="ticketFormVisible"