LAPTOP-FO2T5SIU\35838 4 kuukautta sitten
vanhempi
commit
4451313827

+ 1 - 1
src/views/paymentApplication/indexDetail.vue

@@ -258,7 +258,7 @@ export default {
             this.confirmForm.flowMainPushId = row.flowMainPushId
             const { data } = await this.baseRequest1('ApplyPaymentSettleController', 'getInfoByFlowMainId', { flowMainId: row.id })
             const { data: flowHistroy } = await this.baseRequest1('FlowMainController', 'getFlowHistroyByFlowMainId', { flowMainId: row.id })
-            this.tableData = flowHistroy
+            this.dtList = flowHistroy
             this.formData = data
             if (this.formData.isNoContract || this.formData.isNoContract == 0) {
                 this.formData.isNoContract = String(this.formData.isNoContract)

+ 2 - 2
src/views/saleManage/checkIn/checkIn.vue

@@ -170,7 +170,7 @@
                         placeholder="入住日期"
                         style="width: 100%"
                         type="date"
-                        value-format="yyyy-MM-dd HH:mm:ss"
+                        value-format="yyyy-MM-dd"
                       />
                     </el-form-item>
                   </el-col>
@@ -290,7 +290,7 @@ export default {
             }
             item.statusString = this.dc_map.RU_ZHU_STATUS[item.status]
             item.operateTime = this.$common.transDate(item.operateTime, this.$constant.DATE_PATTERN.DATE_TIME_h)
-            item.inDate = this.$common.transDate(item.inDate, this.$constant.DATE_PATTERN.DATE_TIME_h)
+            item.inDate = this.$common.transDate(item.inDate, this.$constant.DATE_PATTERN.DATE)
 
             return item
         },