jiaxing.zhou

refactor(summaryDetail): 修改汇总时间字段名称

- 将字段名 startTime 改为 summaryTime
- 相应地修改了相关的 form item 和 input 元素的属性
...@@ -191,13 +191,13 @@ ...@@ -191,13 +191,13 @@
191 </el-col> 191 </el-col>
192 <!-- 汇总时间 --> 192 <!-- 汇总时间 -->
193 <el-col :span="3"> 193 <el-col :span="3">
194 - <Formitem label="汇总时间" prop="startTime"> 194 + <Formitem label="汇总时间" prop="summaryTime">
195 <el-input 195 <el-input
196 type="text" 196 type="text"
197 class="inputShadow" 197 class="inputShadow"
198 - id="inputInner--startTime" 198 + id="inputInner--summaryTime"
199 resize="none" 199 resize="none"
200 - v-model="formData.startTime" 200 + v-model="formData.summaryTime"
201 clearable 201 clearable
202 placeholder="" 202 placeholder=""
203 ></el-input> 203 ></el-input>
......