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/menu/index.vue | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ruoyi-ui/src/views/system/menu/index.vue b/ruoyi-ui/src/views/system/menu/index.vue index 090a232..440cdc3 100644 --- a/ruoyi-ui/src/views/system/menu/index.vue +++ b/ruoyi-ui/src/views/system/menu/index.vue @@ -44,7 +44,7 @@ <el-table-column prop="visible" label=" 可见" :formatter="visibleFormat" width="80px"></el-table-column> <el-table-column label="创建时间" align="center" prop="createTime" width="180"> <template slot-scope="scope"> - <span>{{ dateFormat(scope.row.createTime) }}</span> + <span>{{ parseTime(scope.row.createTime) }}</span> </template> </el-table-column> <el-table-column label="操作" align="center" width="180" class-name="small-padding fixed-width"> -- Gitblit v1.9.2