Commit e3c7b036 authored by wanglianghe's avatar wanglianghe

商品列表返回操作人

parent fc5ac9b9
......@@ -94,6 +94,22 @@
</template>
</el-table-column>
<el-table-column :label="$t('添加人')" align="center" prop="creatorName" />
<el-table-column :label="$t('添加时间')" align="center">
<template slot-scope="scope">
<span>{{parseTime(scope.row.createTime)}}</span>
</template>
</el-table-column>
<el-table-column :label="$t('修改人')" align="center" prop="updaterName" />
<el-table-column :label="$t('修改时间')" align="center">
<template slot-scope="scope">
<span>{{parseTime(scope.row.updateTime)}}</span>
</template>
</el-table-column>
<!-- <el-table-column prop="status" align="center" :label="$t('状态')" width="120">
<template slot-scope="scope">
<dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status"/>
......
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