Commit 57e39e5c by liuchenxi

update: 增加同步时间字段

parent b6edae8b
......@@ -14,8 +14,8 @@
<el-table-column label="标签分组" prop="">
<template slot-scope="{ row }"> {{ row.parentLevelGroupId ? groupName(row.parentLevelGroupId) : "--" }} </template>
</el-table-column>
<el-table-column label="添加时间" prop="createTime">
<template slot-scope="{ row }">{{ row.createTime ? dateformat(new Date(row.createTime), 'yyyy-MM-dd hh:mm:ss') : '--' }}</template>
<el-table-column label="添加时间" prop="flagUpdateTime">
<template slot-scope="{ row }">{{ row.flagUpdateTime ? dateformat(new Date(row.flagUpdateTime), 'yyyy-MM-dd hh:mm:ss') : '--' }}</template>
</el-table-column>
<el-table-column label="操作">
<template slot-scope="{ row }"><el-button type="text" @click="cancelSync(row)">取消同步</el-button></template>
......
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