傅行帆 6 years ago
parent
commit
5c2ee7caf1

+ 1
- 1
VUECODE/smart-property-manage/src/router/index.js View File

280
     redirect: '/bill/index',
280
     redirect: '/bill/index',
281
     name: 'bill',
281
     name: 'bill',
282
     alwaysShow: true,
282
     alwaysShow: true,
283
-    meta: { title: '收费', icon: 'zip' },
283
+    meta: { title: '收费管理', icon: 'zip' },
284
     children: [
284
     children: [
285
       {
285
       {
286
         path: '/bill/management',
286
         path: '/bill/management',

+ 5
- 1
VUECODE/smart-property-manage/src/views/rental/rentalIndex.vue View File

300
       var year = value.getFullYear()
300
       var year = value.getFullYear()
301
       var month = value.getMonth() + 1
301
       var month = value.getMonth() + 1
302
       var day = value.getDate()
302
       var day = value.getDate()
303
-      return year + '-' + month + '-' + day
303
+      var hour = value.getHours()
304
+      var minutes = value.getMinutes()
305
+      var seconds = value.getSeconds()
306
+      // return year + '-' + month + '-' + day
307
+      return year + '-' + month + '-' + day + ' ' + hour + ':' + minutes + ':' + seconds
304
     }
308
     }
305
   }
309
   }
306
 }
310
 }

+ 5
- 1
VUECODE/smart-property-manage/src/views/shop/shopIndex.vue View File

274
       var year = value.getFullYear()
274
       var year = value.getFullYear()
275
       var month = value.getMonth() + 1
275
       var month = value.getMonth() + 1
276
       var day = value.getDate()
276
       var day = value.getDate()
277
-      return year + '-' + month + '-' + day
277
+      var hour = value.getHours()
278
+      var minutes = value.getMinutes()
279
+      var seconds = value.getSeconds()
280
+      // return year + '-' + month + '-' + day
281
+      return year + '-' + month + '-' + day + ' ' + hour + ':' + minutes + ':' + seconds
278
     }
282
     }
279
   }
283
   }
280
 }
284
 }

+ 5
- 1
VUECODE/smart-property-manage/src/views/shop/shopSetting.vue View File

169
       var year = value.getFullYear()
169
       var year = value.getFullYear()
170
       var month = value.getMonth() + 1
170
       var month = value.getMonth() + 1
171
       var day = value.getDate()
171
       var day = value.getDate()
172
-      return year + '-' + month + '-' + day
172
+      var hour = value.getHours()
173
+      var minutes = value.getMinutes()
174
+      var seconds = value.getSeconds()
175
+      // return year + '-' + month + '-' + day
176
+      return year + '-' + month + '-' + day + ' ' + hour + ':' + minutes + ':' + seconds
173
     }
177
     }
174
   }
178
   }
175
 }
179
 }