From 85c17f4563d37cd94c4f5b6b7b4e39e33bd78368 Mon Sep 17 00:00:00 2001 From: RuoYi <yzz_ivy@163.com> Date: 星期五, 01 十一月 2019 09:33:27 +0800 Subject: [PATCH] 修复文件上传多级目录识别问题 --- ruoyi-ui/src/views/system/notice/index.vue | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ruoyi-ui/src/views/system/notice/index.vue b/ruoyi-ui/src/views/system/notice/index.vue index 6aa32bd..f65e8ea 100644 --- a/ruoyi-ui/src/views/system/notice/index.vue +++ b/ruoyi-ui/src/views/system/notice/index.vue @@ -60,7 +60,7 @@ <el-table-column label="创建者" align="center" prop="createBy" width="100" /> <el-table-column label="创建时间" align="center" prop="createTime" width="100"> <template slot-scope="scope"> - <span>{{ dateFormat(scope.row.createTime, 'yyyy-MM-dd') }}</span> + <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span> </template> </el-table-column> <el-table-column label="操作" align="center" class-name="small-padding fixed-width"> -- Gitblit v1.9.2