傅行帆 6 years ago
parent
commit
5c2ee7caf1

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

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

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

@@ -300,7 +300,11 @@ export default {
300 300
       var year = value.getFullYear()
301 301
       var month = value.getMonth() + 1
302 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,7 +274,11 @@ export default {
274 274
       var year = value.getFullYear()
275 275
       var month = value.getMonth() + 1
276 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,7 +169,11 @@ export default {
169 169
       var year = value.getFullYear()
170 170
       var month = value.getMonth() + 1
171 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
 }