Commit abfb5fa1 by crushh

Merge branch 'bugfix/时间排序' into dev

parents 865d6f7f ad008465
......@@ -54,6 +54,16 @@
<p>{{ scope.row.itemList.length ? scope.row.itemList[0].authorName || '--' : '' }}</p>
</template>
</el-table-column>
<el-table-column label="创建时间" prop="createTime" align="left">
<template slot-scope="scope">
<p class="cell-time">
<template v-if="scope.row.createTime">
{{ formatDateTimeByType(scope.row.createTime, 'yyyy-MM-dd-HH-mm', true).y }}<br /><span>{{ formatDateTimeByType(scope.row.createTime, 'yyyy-MM-dd-HH-mm', true).h }}</span>
</template>
<template v-else>--</template>
</p>
</template>
</el-table-column>
<el-table-column label="修改时间" prop="updateTimeStr" align="left">
<template slot-scope="scope">
<p class="cell-time">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment